WP-Matomo (WP-Piwik) - Version 1.0.19

Version Description

  • Security fix: Escape request var
  • Language updates
Download this release

Release Info

Developer Braekling
Plugin Icon 128x128 WP-Matomo (WP-Piwik)
Version 1.0.19
Comparing to
See all releases

Code changes from version 0.9.9.13 to 1.0.19

Files changed (122) hide show
  1. LICENSE +675 -0
  2. README.md +9 -0
  3. bitcoin.png +0 -0
  4. cache/.htaccess +0 -1
  5. classes/.htaccess +0 -0
  6. classes/WP_Piwik.php +1322 -1463
  7. classes/WP_Piwik/Admin.php +26 -0
  8. classes/WP_Piwik/Admin/Network.php +25 -0
  9. classes/WP_Piwik/Admin/Settings.php +716 -0
  10. classes/WP_Piwik/Admin/Sitebrowser.php +112 -0
  11. classes/WP_Piwik/Admin/Statistics.php +54 -0
  12. classes/{WP_Piwik_Logger.php → WP_Piwik/Logger.php} +3 -1
  13. classes/WP_Piwik/Logger/Dummy.php +9 -0
  14. classes/{WP_Piwik_Logger_File.php → WP_Piwik/Logger/File.php} +4 -4
  15. classes/WP_Piwik/Logger/Screen.php +27 -0
  16. classes/WP_Piwik/Request.php +95 -0
  17. classes/WP_Piwik/Request/Php.php +53 -0
  18. classes/WP_Piwik/Request/Rest.php +77 -0
  19. classes/WP_Piwik/Settings.php +406 -0
  20. classes/WP_Piwik/Shortcode.php +28 -0
  21. classes/{WP_Piwik_Template.php → WP_Piwik/Template.php} +6 -7
  22. classes/WP_Piwik/Template/MetaBoxCustomVars.php +63 -0
  23. classes/WP_Piwik/TrackingCode.php +150 -0
  24. classes/WP_Piwik/Widget.php +375 -0
  25. classes/WP_Piwik/Widget/BrowserDetails.php +76 -0
  26. classes/WP_Piwik/Widget/Browsers.php +79 -0
  27. classes/WP_Piwik/Widget/Chart.php +78 -0
  28. classes/WP_Piwik/Widget/Country.php +79 -0
  29. classes/WP_Piwik/Widget/Ecommerce.php +45 -0
  30. classes/WP_Piwik/Widget/Items.php +52 -0
  31. classes/WP_Piwik/Widget/ItemsCategory.php +52 -0
  32. classes/WP_Piwik/Widget/Keywords.php +21 -0
  33. classes/WP_Piwik/Widget/Noresult.php +37 -0
  34. classes/WP_Piwik/Widget/OptOut.php +28 -0
  35. classes/WP_Piwik/Widget/Overview.php +63 -0
  36. classes/WP_Piwik/Widget/Pages.php +21 -0
  37. classes/WP_Piwik/Widget/Plugins.php +37 -0
  38. classes/WP_Piwik/Widget/Post.php +51 -0
  39. classes/WP_Piwik/Widget/Referrers.php +21 -0
  40. classes/WP_Piwik/Widget/Screens.php +74 -0
  41. classes/WP_Piwik/Widget/Search.php +37 -0
  42. classes/WP_Piwik/Widget/Seo.php +31 -0
  43. classes/WP_Piwik/Widget/SystemDetails.php +72 -0
  44. classes/WP_Piwik/Widget/Systems.php +72 -0
  45. classes/WP_Piwik/Widget/Visitors.php +67 -0
  46. classes/WP_Piwik_Logger_Dummy.php +0 -9
  47. classes/WP_Piwik_MetaBox_PerPost_Stats.php +0 -47
  48. classes/WP_Piwik_Settings.php +0 -163
  49. config.php +9 -9
  50. css/index.php +0 -0
  51. css/wp-piwik-spark.css +3 -1
  52. css/wp-piwik.css +26 -87
  53. dashboard/.htaccess +0 -1
  54. dashboard/browserdetails.php +0 -68
  55. dashboard/browsers.php +0 -69
  56. dashboard/index.php +0 -2
  57. dashboard/keywords.php +0 -30
  58. dashboard/noresult.php +0 -30
  59. dashboard/overview.php +0 -70
  60. dashboard/pages.php +0 -57
  61. dashboard/plugins.php +0 -58
  62. dashboard/screens.php +0 -68
  63. dashboard/search.php +0 -30
  64. dashboard/seo.php +0 -36
  65. dashboard/systems.php +0 -69
  66. dashboard/visitors.php +0 -99
  67. dashboard/websites.php +0 -34
  68. debug/.htaccess +0 -1
  69. debug/testscript.php +0 -86
  70. debug/testscript_standalone.php +0 -88
  71. gpl-3.0.html +0 -0
  72. index.php +0 -0
  73. js/index.php +0 -0
  74. js/jqplot/IMPORTANT_NOTICE.txt +0 -0
  75. js/jqplot/MIT-LICENSE.txt +0 -0
  76. js/jqplot/README.txt +0 -0
  77. js/jqplot/changes.txt +0 -0
  78. js/jqplot/copyright.txt +0 -0
  79. js/jqplot/excanvas.min.js +0 -0
  80. js/jqplot/gpl-2.0.txt +0 -0
  81. js/jqplot/index.php +0 -0
  82. js/jqplot/jquery.jqplot.min.css +0 -0
  83. js/jqplot/jquery.jqplot.min.js +0 -0
  84. js/jqplot/plugins/jqplot.pieRenderer.min.js +0 -0
  85. js/jqplot/plugins/jqplot.trendline.min.js +0 -0
  86. js/jqplot/usage.txt +0 -0
  87. js/jqplot/wp-piwik.jqplot.js +0 -0
  88. js/sparkline/index.php +0 -0
  89. js/sparkline/jquery.sparkline.js +2 -2
  90. js/sparkline/jquery.sparkline.min.js +0 -0
  91. js/wp-piwik.js +3 -2
  92. languages/.htaccess +0 -0
  93. languages/.tx/config +9 -0
  94. languages/update.sh +5 -0
  95. languages/wp-piwik-az_AZ.mo +0 -0
  96. languages/wp-piwik-az_AZ.po +1479 -135
  97. languages/wp-piwik-be_BY.mo +0 -0
  98. languages/wp-piwik-be_BY.po +1479 -135
  99. languages/wp-piwik-cs_CZ.mo +0 -0
  100. languages/wp-piwik-cs_CZ.po +1528 -0
  101. languages/wp-piwik-de_CH.mo +0 -0
  102. languages/wp-piwik-de_CH.po +1528 -0
  103. languages/wp-piwik-de_DE.mo +0 -0
  104. languages/wp-piwik-de_DE.po +1291 -528
  105. languages/wp-piwik-el.mo +0 -0
  106. languages/wp-piwik-el.po +1531 -0
  107. languages/wp-piwik-el_GR.mo +0 -0
  108. languages/wp-piwik-el_GR.po +0 -0
  109. languages/wp-piwik-es_ES.mo +0 -0
  110. languages/wp-piwik-es_ES.po +1405 -360
  111. languages/wp-piwik-fa_IR.mo +0 -0
  112. languages/wp-piwik-fa_IR.po +1431 -307
  113. languages/wp-piwik-fr_FR.mo +0 -0
  114. languages/wp-piwik-fr_FR.po +1453 -179
  115. languages/wp-piwik-hi.mo +0 -0
  116. languages/wp-piwik-hi.po +1529 -0
  117. languages/wp-piwik-hu_HU.mo +0 -0
  118. languages/wp-piwik-hu_HU.po +1530 -0
  119. languages/wp-piwik-id.mo +0 -0
  120. languages/wp-piwik-id.po +1528 -0
  121. languages/wp-piwik-it_IT.mo +0 -0
  122. languages/wp-piwik-it_IT.po +1025 -410
LICENSE ADDED
@@ -0,0 +1,675 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 3, 29 June 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU General Public License is a free, copyleft license for
11
+ software and other kinds of works.
12
+
13
+ The licenses for most software and other practical works are designed
14
+ to take away your freedom to share and change the works. By contrast,
15
+ the GNU General Public License is intended to guarantee your freedom to
16
+ share and change all versions of a program--to make sure it remains free
17
+ software for all its users. We, the Free Software Foundation, use the
18
+ GNU General Public License for most of our software; it applies also to
19
+ any other work released this way by its authors. You can apply it to
20
+ your programs, too.
21
+
22
+ When we speak of free software, we are referring to freedom, not
23
+ price. Our General Public Licenses are designed to make sure that you
24
+ have the freedom to distribute copies of free software (and charge for
25
+ them if you wish), that you receive source code or can get it if you
26
+ want it, that you can change the software or use pieces of it in new
27
+ free programs, and that you know you can do these things.
28
+
29
+ To protect your rights, we need to prevent others from denying you
30
+ these rights or asking you to surrender the rights. Therefore, you have
31
+ certain responsibilities if you distribute copies of the software, or if
32
+ you modify it: responsibilities to respect the freedom of others.
33
+
34
+ For example, if you distribute copies of such a program, whether
35
+ gratis or for a fee, you must pass on to the recipients the same
36
+ freedoms that you received. You must make sure that they, too, receive
37
+ or can get the source code. And you must show them these terms so they
38
+ know their rights.
39
+
40
+ Developers that use the GNU GPL protect your rights with two steps:
41
+ (1) assert copyright on the software, and (2) offer you this License
42
+ giving you legal permission to copy, distribute and/or modify it.
43
+
44
+ For the developers' and authors' protection, the GPL clearly explains
45
+ that there is no warranty for this free software. For both users' and
46
+ authors' sake, the GPL requires that modified versions be marked as
47
+ changed, so that their problems will not be attributed erroneously to
48
+ authors of previous versions.
49
+
50
+ Some devices are designed to deny users access to install or run
51
+ modified versions of the software inside them, although the manufacturer
52
+ can do so. This is fundamentally incompatible with the aim of
53
+ protecting users' freedom to change the software. The systematic
54
+ pattern of such abuse occurs in the area of products for individuals to
55
+ use, which is precisely where it is most unacceptable. Therefore, we
56
+ have designed this version of the GPL to prohibit the practice for those
57
+ products. If such problems arise substantially in other domains, we
58
+ stand ready to extend this provision to those domains in future versions
59
+ of the GPL, as needed to protect the freedom of users.
60
+
61
+ Finally, every program is threatened constantly by software patents.
62
+ States should not allow patents to restrict development and use of
63
+ software on general-purpose computers, but in those that do, we wish to
64
+ avoid the special danger that patents applied to a free program could
65
+ make it effectively proprietary. To prevent this, the GPL assures that
66
+ patents cannot be used to render the program non-free.
67
+
68
+ The precise terms and conditions for copying, distribution and
69
+ modification follow.
70
+
71
+ TERMS AND CONDITIONS
72
+
73
+ 0. Definitions.
74
+
75
+ "This License" refers to version 3 of the GNU General Public License.
76
+
77
+ "Copyright" also means copyright-like laws that apply to other kinds of
78
+ works, such as semiconductor masks.
79
+
80
+ "The Program" refers to any copyrightable work licensed under this
81
+ License. Each licensee is addressed as "you". "Licensees" and
82
+ "recipients" may be individuals or organizations.
83
+
84
+ To "modify" a work means to copy from or adapt all or part of the work
85
+ in a fashion requiring copyright permission, other than the making of an
86
+ exact copy. The resulting work is called a "modified version" of the
87
+ earlier work or a work "based on" the earlier work.
88
+
89
+ A "covered work" means either the unmodified Program or a work based
90
+ on the Program.
91
+
92
+ To "propagate" a work means to do anything with it that, without
93
+ permission, would make you directly or secondarily liable for
94
+ infringement under applicable copyright law, except executing it on a
95
+ computer or modifying a private copy. Propagation includes copying,
96
+ distribution (with or without modification), making available to the
97
+ public, and in some countries other activities as well.
98
+
99
+ To "convey" a work means any kind of propagation that enables other
100
+ parties to make or receive copies. Mere interaction with a user through
101
+ a computer network, with no transfer of a copy, is not conveying.
102
+
103
+ An interactive user interface displays "Appropriate Legal Notices"
104
+ to the extent that it includes a convenient and prominently visible
105
+ feature that (1) displays an appropriate copyright notice, and (2)
106
+ tells the user that there is no warranty for the work (except to the
107
+ extent that warranties are provided), that licensees may convey the
108
+ work under this License, and how to view a copy of this License. If
109
+ the interface presents a list of user commands or options, such as a
110
+ menu, a prominent item in the list meets this criterion.
111
+
112
+ 1. Source Code.
113
+
114
+ The "source code" for a work means the preferred form of the work
115
+ for making modifications to it. "Object code" means any non-source
116
+ form of a work.
117
+
118
+ A "Standard Interface" means an interface that either is an official
119
+ standard defined by a recognized standards body, or, in the case of
120
+ interfaces specified for a particular programming language, one that
121
+ is widely used among developers working in that language.
122
+
123
+ The "System Libraries" of an executable work include anything, other
124
+ than the work as a whole, that (a) is included in the normal form of
125
+ packaging a Major Component, but which is not part of that Major
126
+ Component, and (b) serves only to enable use of the work with that
127
+ Major Component, or to implement a Standard Interface for which an
128
+ implementation is available to the public in source code form. A
129
+ "Major Component", in this context, means a major essential component
130
+ (kernel, window system, and so on) of the specific operating system
131
+ (if any) on which the executable work runs, or a compiler used to
132
+ produce the work, or an object code interpreter used to run it.
133
+
134
+ The "Corresponding Source" for a work in object code form means all
135
+ the source code needed to generate, install, and (for an executable
136
+ work) run the object code and to modify the work, including scripts to
137
+ control those activities. However, it does not include the work's
138
+ System Libraries, or general-purpose tools or generally available free
139
+ programs which are used unmodified in performing those activities but
140
+ which are not part of the work. For example, Corresponding Source
141
+ includes interface definition files associated with source files for
142
+ the work, and the source code for shared libraries and dynamically
143
+ linked subprograms that the work is specifically designed to require,
144
+ such as by intimate data communication or control flow between those
145
+ subprograms and other parts of the work.
146
+
147
+ The Corresponding Source need not include anything that users
148
+ can regenerate automatically from other parts of the Corresponding
149
+ Source.
150
+
151
+ The Corresponding Source for a work in source code form is that
152
+ same work.
153
+
154
+ 2. Basic Permissions.
155
+
156
+ All rights granted under this License are granted for the term of
157
+ copyright on the Program, and are irrevocable provided the stated
158
+ conditions are met. This License explicitly affirms your unlimited
159
+ permission to run the unmodified Program. The output from running a
160
+ covered work is covered by this License only if the output, given its
161
+ content, constitutes a covered work. This License acknowledges your
162
+ rights of fair use or other equivalent, as provided by copyright law.
163
+
164
+ You may make, run and propagate covered works that you do not
165
+ convey, without conditions so long as your license otherwise remains
166
+ in force. You may convey covered works to others for the sole purpose
167
+ of having them make modifications exclusively for you, or provide you
168
+ with facilities for running those works, provided that you comply with
169
+ the terms of this License in conveying all material for which you do
170
+ not control copyright. Those thus making or running the covered works
171
+ for you must do so exclusively on your behalf, under your direction
172
+ and control, on terms that prohibit them from making any copies of
173
+ your copyrighted material outside their relationship with you.
174
+
175
+ Conveying under any other circumstances is permitted solely under
176
+ the conditions stated below. Sublicensing is not allowed; section 10
177
+ makes it unnecessary.
178
+
179
+ 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180
+
181
+ No covered work shall be deemed part of an effective technological
182
+ measure under any applicable law fulfilling obligations under article
183
+ 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184
+ similar laws prohibiting or restricting circumvention of such
185
+ measures.
186
+
187
+ When you convey a covered work, you waive any legal power to forbid
188
+ circumvention of technological measures to the extent such circumvention
189
+ is effected by exercising rights under this License with respect to
190
+ the covered work, and you disclaim any intention to limit operation or
191
+ modification of the work as a means of enforcing, against the work's
192
+ users, your or third parties' legal rights to forbid circumvention of
193
+ technological measures.
194
+
195
+ 4. Conveying Verbatim Copies.
196
+
197
+ You may convey verbatim copies of the Program's source code as you
198
+ receive it, in any medium, provided that you conspicuously and
199
+ appropriately publish on each copy an appropriate copyright notice;
200
+ keep intact all notices stating that this License and any
201
+ non-permissive terms added in accord with section 7 apply to the code;
202
+ keep intact all notices of the absence of any warranty; and give all
203
+ recipients a copy of this License along with the Program.
204
+
205
+ You may charge any price or no price for each copy that you convey,
206
+ and you may offer support or warranty protection for a fee.
207
+
208
+ 5. Conveying Modified Source Versions.
209
+
210
+ You may convey a work based on the Program, or the modifications to
211
+ produce it from the Program, in the form of source code under the
212
+ terms of section 4, provided that you also meet all of these conditions:
213
+
214
+ a) The work must carry prominent notices stating that you modified
215
+ it, and giving a relevant date.
216
+
217
+ b) The work must carry prominent notices stating that it is
218
+ released under this License and any conditions added under section
219
+ 7. This requirement modifies the requirement in section 4 to
220
+ "keep intact all notices".
221
+
222
+ c) You must license the entire work, as a whole, under this
223
+ License to anyone who comes into possession of a copy. This
224
+ License will therefore apply, along with any applicable section 7
225
+ additional terms, to the whole of the work, and all its parts,
226
+ regardless of how they are packaged. This License gives no
227
+ permission to license the work in any other way, but it does not
228
+ invalidate such permission if you have separately received it.
229
+
230
+ d) If the work has interactive user interfaces, each must display
231
+ Appropriate Legal Notices; however, if the Program has interactive
232
+ interfaces that do not display Appropriate Legal Notices, your
233
+ work need not make them do so.
234
+
235
+ A compilation of a covered work with other separate and independent
236
+ works, which are not by their nature extensions of the covered work,
237
+ and which are not combined with it such as to form a larger program,
238
+ in or on a volume of a storage or distribution medium, is called an
239
+ "aggregate" if the compilation and its resulting copyright are not
240
+ used to limit the access or legal rights of the compilation's users
241
+ beyond what the individual works permit. Inclusion of a covered work
242
+ in an aggregate does not cause this License to apply to the other
243
+ parts of the aggregate.
244
+
245
+ 6. Conveying Non-Source Forms.
246
+
247
+ You may convey a covered work in object code form under the terms
248
+ of sections 4 and 5, provided that you also convey the
249
+ machine-readable Corresponding Source under the terms of this License,
250
+ in one of these ways:
251
+
252
+ a) Convey the object code in, or embodied in, a physical product
253
+ (including a physical distribution medium), accompanied by the
254
+ Corresponding Source fixed on a durable physical medium
255
+ customarily used for software interchange.
256
+
257
+ b) Convey the object code in, or embodied in, a physical product
258
+ (including a physical distribution medium), accompanied by a
259
+ written offer, valid for at least three years and valid for as
260
+ long as you offer spare parts or customer support for that product
261
+ model, to give anyone who possesses the object code either (1) a
262
+ copy of the Corresponding Source for all the software in the
263
+ product that is covered by this License, on a durable physical
264
+ medium customarily used for software interchange, for a price no
265
+ more than your reasonable cost of physically performing this
266
+ conveying of source, or (2) access to copy the
267
+ Corresponding Source from a network server at no charge.
268
+
269
+ c) Convey individual copies of the object code with a copy of the
270
+ written offer to provide the Corresponding Source. This
271
+ alternative is allowed only occasionally and noncommercially, and
272
+ only if you received the object code with such an offer, in accord
273
+ with subsection 6b.
274
+
275
+ d) Convey the object code by offering access from a designated
276
+ place (gratis or for a charge), and offer equivalent access to the
277
+ Corresponding Source in the same way through the same place at no
278
+ further charge. You need not require recipients to copy the
279
+ Corresponding Source along with the object code. If the place to
280
+ copy the object code is a network server, the Corresponding Source
281
+ may be on a different server (operated by you or a third party)
282
+ that supports equivalent copying facilities, provided you maintain
283
+ clear directions next to the object code saying where to find the
284
+ Corresponding Source. Regardless of what server hosts the
285
+ Corresponding Source, you remain obligated to ensure that it is
286
+ available for as long as needed to satisfy these requirements.
287
+
288
+ e) Convey the object code using peer-to-peer transmission, provided
289
+ you inform other peers where the object code and Corresponding
290
+ Source of the work are being offered to the general public at no
291
+ charge under subsection 6d.
292
+
293
+ A separable portion of the object code, whose source code is excluded
294
+ from the Corresponding Source as a System Library, need not be
295
+ included in conveying the object code work.
296
+
297
+ A "User Product" is either (1) a "consumer product", which means any
298
+ tangible personal property which is normally used for personal, family,
299
+ or household purposes, or (2) anything designed or sold for incorporation
300
+ into a dwelling. In determining whether a product is a consumer product,
301
+ doubtful cases shall be resolved in favor of coverage. For a particular
302
+ product received by a particular user, "normally used" refers to a
303
+ typical or common use of that class of product, regardless of the status
304
+ of the particular user or of the way in which the particular user
305
+ actually uses, or expects or is expected to use, the product. A product
306
+ is a consumer product regardless of whether the product has substantial
307
+ commercial, industrial or non-consumer uses, unless such uses represent
308
+ the only significant mode of use of the product.
309
+
310
+ "Installation Information" for a User Product means any methods,
311
+ procedures, authorization keys, or other information required to install
312
+ and execute modified versions of a covered work in that User Product from
313
+ a modified version of its Corresponding Source. The information must
314
+ suffice to ensure that the continued functioning of the modified object
315
+ code is in no case prevented or interfered with solely because
316
+ modification has been made.
317
+
318
+ If you convey an object code work under this section in, or with, or
319
+ specifically for use in, a User Product, and the conveying occurs as
320
+ part of a transaction in which the right of possession and use of the
321
+ User Product is transferred to the recipient in perpetuity or for a
322
+ fixed term (regardless of how the transaction is characterized), the
323
+ Corresponding Source conveyed under this section must be accompanied
324
+ by the Installation Information. But this requirement does not apply
325
+ if neither you nor any third party retains the ability to install
326
+ modified object code on the User Product (for example, the work has
327
+ been installed in ROM).
328
+
329
+ The requirement to provide Installation Information does not include a
330
+ requirement to continue to provide support service, warranty, or updates
331
+ for a work that has been modified or installed by the recipient, or for
332
+ the User Product in which it has been modified or installed. Access to a
333
+ network may be denied when the modification itself materially and
334
+ adversely affects the operation of the network or violates the rules and
335
+ protocols for communication across the network.
336
+
337
+ Corresponding Source conveyed, and Installation Information provided,
338
+ in accord with this section must be in a format that is publicly
339
+ documented (and with an implementation available to the public in
340
+ source code form), and must require no special password or key for
341
+ unpacking, reading or copying.
342
+
343
+ 7. Additional Terms.
344
+
345
+ "Additional permissions" are terms that supplement the terms of this
346
+ License by making exceptions from one or more of its conditions.
347
+ Additional permissions that are applicable to the entire Program shall
348
+ be treated as though they were included in this License, to the extent
349
+ that they are valid under applicable law. If additional permissions
350
+ apply only to part of the Program, that part may be used separately
351
+ under those permissions, but the entire Program remains governed by
352
+ this License without regard to the additional permissions.
353
+
354
+ When you convey a copy of a covered work, you may at your option
355
+ remove any additional permissions from that copy, or from any part of
356
+ it. (Additional permissions may be written to require their own
357
+ removal in certain cases when you modify the work.) You may place
358
+ additional permissions on material, added by you to a covered work,
359
+ for which you have or can give appropriate copyright permission.
360
+
361
+ Notwithstanding any other provision of this License, for material you
362
+ add to a covered work, you may (if authorized by the copyright holders of
363
+ that material) supplement the terms of this License with terms:
364
+
365
+ a) Disclaiming warranty or limiting liability differently from the
366
+ terms of sections 15 and 16 of this License; or
367
+
368
+ b) Requiring preservation of specified reasonable legal notices or
369
+ author attributions in that material or in the Appropriate Legal
370
+ Notices displayed by works containing it; or
371
+
372
+ c) Prohibiting misrepresentation of the origin of that material, or
373
+ requiring that modified versions of such material be marked in
374
+ reasonable ways as different from the original version; or
375
+
376
+ d) Limiting the use for publicity purposes of names of licensors or
377
+ authors of the material; or
378
+
379
+ e) Declining to grant rights under trademark law for use of some
380
+ trade names, trademarks, or service marks; or
381
+
382
+ f) Requiring indemnification of licensors and authors of that
383
+ material by anyone who conveys the material (or modified versions of
384
+ it) with contractual assumptions of liability to the recipient, for
385
+ any liability that these contractual assumptions directly impose on
386
+ those licensors and authors.
387
+
388
+ All other non-permissive additional terms are considered "further
389
+ restrictions" within the meaning of section 10. If the Program as you
390
+ received it, or any part of it, contains a notice stating that it is
391
+ governed by this License along with a term that is a further
392
+ restriction, you may remove that term. If a license document contains
393
+ a further restriction but permits relicensing or conveying under this
394
+ License, you may add to a covered work material governed by the terms
395
+ of that license document, provided that the further restriction does
396
+ not survive such relicensing or conveying.
397
+
398
+ If you add terms to a covered work in accord with this section, you
399
+ must place, in the relevant source files, a statement of the
400
+ additional terms that apply to those files, or a notice indicating
401
+ where to find the applicable terms.
402
+
403
+ Additional terms, permissive or non-permissive, may be stated in the
404
+ form of a separately written license, or stated as exceptions;
405
+ the above requirements apply either way.
406
+
407
+ 8. Termination.
408
+
409
+ You may not propagate or modify a covered work except as expressly
410
+ provided under this License. Any attempt otherwise to propagate or
411
+ modify it is void, and will automatically terminate your rights under
412
+ this License (including any patent licenses granted under the third
413
+ paragraph of section 11).
414
+
415
+ However, if you cease all violation of this License, then your
416
+ license from a particular copyright holder is reinstated (a)
417
+ provisionally, unless and until the copyright holder explicitly and
418
+ finally terminates your license, and (b) permanently, if the copyright
419
+ holder fails to notify you of the violation by some reasonable means
420
+ prior to 60 days after the cessation.
421
+
422
+ Moreover, your license from a particular copyright holder is
423
+ reinstated permanently if the copyright holder notifies you of the
424
+ violation by some reasonable means, this is the first time you have
425
+ received notice of violation of this License (for any work) from that
426
+ copyright holder, and you cure the violation prior to 30 days after
427
+ your receipt of the notice.
428
+
429
+ Termination of your rights under this section does not terminate the
430
+ licenses of parties who have received copies or rights from you under
431
+ this License. If your rights have been terminated and not permanently
432
+ reinstated, you do not qualify to receive new licenses for the same
433
+ material under section 10.
434
+
435
+ 9. Acceptance Not Required for Having Copies.
436
+
437
+ You are not required to accept this License in order to receive or
438
+ run a copy of the Program. Ancillary propagation of a covered work
439
+ occurring solely as a consequence of using peer-to-peer transmission
440
+ to receive a copy likewise does not require acceptance. However,
441
+ nothing other than this License grants you permission to propagate or
442
+ modify any covered work. These actions infringe copyright if you do
443
+ not accept this License. Therefore, by modifying or propagating a
444
+ covered work, you indicate your acceptance of this License to do so.
445
+
446
+ 10. Automatic Licensing of Downstream Recipients.
447
+
448
+ Each time you convey a covered work, the recipient automatically
449
+ receives a license from the original licensors, to run, modify and
450
+ propagate that work, subject to this License. You are not responsible
451
+ for enforcing compliance by third parties with this License.
452
+
453
+ An "entity transaction" is a transaction transferring control of an
454
+ organization, or substantially all assets of one, or subdividing an
455
+ organization, or merging organizations. If propagation of a covered
456
+ work results from an entity transaction, each party to that
457
+ transaction who receives a copy of the work also receives whatever
458
+ licenses to the work the party's predecessor in interest had or could
459
+ give under the previous paragraph, plus a right to possession of the
460
+ Corresponding Source of the work from the predecessor in interest, if
461
+ the predecessor has it or can get it with reasonable efforts.
462
+
463
+ You may not impose any further restrictions on the exercise of the
464
+ rights granted or affirmed under this License. For example, you may
465
+ not impose a license fee, royalty, or other charge for exercise of
466
+ rights granted under this License, and you may not initiate litigation
467
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
468
+ any patent claim is infringed by making, using, selling, offering for
469
+ sale, or importing the Program or any portion of it.
470
+
471
+ 11. Patents.
472
+
473
+ A "contributor" is a copyright holder who authorizes use under this
474
+ License of the Program or a work on which the Program is based. The
475
+ work thus licensed is called the contributor's "contributor version".
476
+
477
+ A contributor's "essential patent claims" are all patent claims
478
+ owned or controlled by the contributor, whether already acquired or
479
+ hereafter acquired, that would be infringed by some manner, permitted
480
+ by this License, of making, using, or selling its contributor version,
481
+ but do not include claims that would be infringed only as a
482
+ consequence of further modification of the contributor version. For
483
+ purposes of this definition, "control" includes the right to grant
484
+ patent sublicenses in a manner consistent with the requirements of
485
+ this License.
486
+
487
+ Each contributor grants you a non-exclusive, worldwide, royalty-free
488
+ patent license under the contributor's essential patent claims, to
489
+ make, use, sell, offer for sale, import and otherwise run, modify and
490
+ propagate the contents of its contributor version.
491
+
492
+ In the following three paragraphs, a "patent license" is any express
493
+ agreement or commitment, however denominated, not to enforce a patent
494
+ (such as an express permission to practice a patent or covenant not to
495
+ sue for patent infringement). To "grant" such a patent license to a
496
+ party means to make such an agreement or commitment not to enforce a
497
+ patent against the party.
498
+
499
+ If you convey a covered work, knowingly relying on a patent license,
500
+ and the Corresponding Source of the work is not available for anyone
501
+ to copy, free of charge and under the terms of this License, through a
502
+ publicly available network server or other readily accessible means,
503
+ then you must either (1) cause the Corresponding Source to be so
504
+ available, or (2) arrange to deprive yourself of the benefit of the
505
+ patent license for this particular work, or (3) arrange, in a manner
506
+ consistent with the requirements of this License, to extend the patent
507
+ license to downstream recipients. "Knowingly relying" means you have
508
+ actual knowledge that, but for the patent license, your conveying the
509
+ covered work in a country, or your recipient's use of the covered work
510
+ in a country, would infringe one or more identifiable patents in that
511
+ country that you have reason to believe are valid.
512
+
513
+ If, pursuant to or in connection with a single transaction or
514
+ arrangement, you convey, or propagate by procuring conveyance of, a
515
+ covered work, and grant a patent license to some of the parties
516
+ receiving the covered work authorizing them to use, propagate, modify
517
+ or convey a specific copy of the covered work, then the patent license
518
+ you grant is automatically extended to all recipients of the covered
519
+ work and works based on it.
520
+
521
+ A patent license is "discriminatory" if it does not include within
522
+ the scope of its coverage, prohibits the exercise of, or is
523
+ conditioned on the non-exercise of one or more of the rights that are
524
+ specifically granted under this License. You may not convey a covered
525
+ work if you are a party to an arrangement with a third party that is
526
+ in the business of distributing software, under which you make payment
527
+ to the third party based on the extent of your activity of conveying
528
+ the work, and under which the third party grants, to any of the
529
+ parties who would receive the covered work from you, a discriminatory
530
+ patent license (a) in connection with copies of the covered work
531
+ conveyed by you (or copies made from those copies), or (b) primarily
532
+ for and in connection with specific products or compilations that
533
+ contain the covered work, unless you entered into that arrangement,
534
+ or that patent license was granted, prior to 28 March 2007.
535
+
536
+ Nothing in this License shall be construed as excluding or limiting
537
+ any implied license or other defenses to infringement that may
538
+ otherwise be available to you under applicable patent law.
539
+
540
+ 12. No Surrender of Others' Freedom.
541
+
542
+ If conditions are imposed on you (whether by court order, agreement or
543
+ otherwise) that contradict the conditions of this License, they do not
544
+ excuse you from the conditions of this License. If you cannot convey a
545
+ covered work so as to satisfy simultaneously your obligations under this
546
+ License and any other pertinent obligations, then as a consequence you may
547
+ not convey it at all. For example, if you agree to terms that obligate you
548
+ to collect a royalty for further conveying from those to whom you convey
549
+ the Program, the only way you could satisfy both those terms and this
550
+ License would be to refrain entirely from conveying the Program.
551
+
552
+ 13. Use with the GNU Affero General Public License.
553
+
554
+ Notwithstanding any other provision of this License, you have
555
+ permission to link or combine any covered work with a work licensed
556
+ under version 3 of the GNU Affero General Public License into a single
557
+ combined work, and to convey the resulting work. The terms of this
558
+ License will continue to apply to the part which is the covered work,
559
+ but the special requirements of the GNU Affero General Public License,
560
+ section 13, concerning interaction through a network will apply to the
561
+ combination as such.
562
+
563
+ 14. Revised Versions of this License.
564
+
565
+ The Free Software Foundation may publish revised and/or new versions of
566
+ the GNU General Public License from time to time. Such new versions will
567
+ be similar in spirit to the present version, but may differ in detail to
568
+ address new problems or concerns.
569
+
570
+ Each version is given a distinguishing version number. If the
571
+ Program specifies that a certain numbered version of the GNU General
572
+ Public License "or any later version" applies to it, you have the
573
+ option of following the terms and conditions either of that numbered
574
+ version or of any later version published by the Free Software
575
+ Foundation. If the Program does not specify a version number of the
576
+ GNU General Public License, you may choose any version ever published
577
+ by the Free Software Foundation.
578
+
579
+ If the Program specifies that a proxy can decide which future
580
+ versions of the GNU General Public License can be used, that proxy's
581
+ public statement of acceptance of a version permanently authorizes you
582
+ to choose that version for the Program.
583
+
584
+ Later license versions may give you additional or different
585
+ permissions. However, no additional obligations are imposed on any
586
+ author or copyright holder as a result of your choosing to follow a
587
+ later version.
588
+
589
+ 15. Disclaimer of Warranty.
590
+
591
+ THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592
+ APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593
+ HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594
+ OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595
+ THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596
+ PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597
+ IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598
+ ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599
+
600
+ 16. Limitation of Liability.
601
+
602
+ IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604
+ THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605
+ GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606
+ USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607
+ DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608
+ PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609
+ EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610
+ SUCH DAMAGES.
611
+
612
+ 17. Interpretation of Sections 15 and 16.
613
+
614
+ If the disclaimer of warranty and limitation of liability provided
615
+ above cannot be given local legal effect according to their terms,
616
+ reviewing courts shall apply local law that most closely approximates
617
+ an absolute waiver of all civil liability in connection with the
618
+ Program, unless a warranty or assumption of liability accompanies a
619
+ copy of the Program in return for a fee.
620
+
621
+ END OF TERMS AND CONDITIONS
622
+
623
+ How to Apply These Terms to Your New Programs
624
+
625
+ If you develop a new program, and you want it to be of the greatest
626
+ possible use to the public, the best way to achieve this is to make it
627
+ free software which everyone can redistribute and change under these terms.
628
+
629
+ To do so, attach the following notices to the program. It is safest
630
+ to attach them to the start of each source file to most effectively
631
+ state the exclusion of warranty; and each file should have at least
632
+ the "copyright" line and a pointer to where the full notice is found.
633
+
634
+ {one line to give the program's name and a brief idea of what it does.}
635
+ Copyright (C) {year} {name of author}
636
+
637
+ This program is free software: you can redistribute it and/or modify
638
+ it under the terms of the GNU General Public License as published by
639
+ the Free Software Foundation, either version 3 of the License, or
640
+ (at your option) any later version.
641
+
642
+ This program is distributed in the hope that it will be useful,
643
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
644
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645
+ GNU General Public License for more details.
646
+
647
+ You should have received a copy of the GNU General Public License
648
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
649
+
650
+ Also add information on how to contact you by electronic and paper mail.
651
+
652
+ If the program does terminal interaction, make it output a short
653
+ notice like this when it starts in an interactive mode:
654
+
655
+ {project} Copyright (C) {year} {fullname}
656
+ This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657
+ This is free software, and you are welcome to redistribute it
658
+ under certain conditions; type `show c' for details.
659
+
660
+ The hypothetical commands `show w' and `show c' should show the appropriate
661
+ parts of the General Public License. Of course, your program's commands
662
+ might be different; for a GUI interface, you would use an "about box".
663
+
664
+ You should also get your employer (if you work as a programmer) or school,
665
+ if any, to sign a "copyright disclaimer" for the program, if necessary.
666
+ For more information on this, and how to apply and follow the GNU GPL, see
667
+ <http://www.gnu.org/licenses/>.
668
+
669
+ The GNU General Public License does not permit incorporating your program
670
+ into proprietary programs. If your program is a subroutine library, you
671
+ may consider it more useful to permit linking proprietary applications with
672
+ the library. If this is what you want to do, use the GNU Lesser General
673
+ Public License instead of this License. But first, please read
674
+ <http://www.gnu.org/philosophy/why-not-lgpl.html>.
675
+
README.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ # WP-Matomo (former WP-Piwik)
2
+
3
+ This [WordPress](https://wordpress.org) plugin adds a [Matomo](http://matomo.org) stats site to your blog's dashboard. It's also able to add the Matomo tracking code to your blog.
4
+
5
+ ## How to use this plugin
6
+
7
+ To use this plugin you will need your own Matomo instance. If you do not already have a Matomo setup, you have two simple options: use either [self-hosted](http://matomo.org/) or [cloud-hosted](http://matomo.org/hosting/).
8
+
9
+ This repository was created to develop and maintain WP-Matomo (WP-Piwik). Please see the WordPress plugin directory if you like to use this plugin: https://wordpress.org/plugins/wp-piwik/
bitcoin.png ADDED
Binary file
cache/.htaccess DELETED
@@ -1 +0,0 @@
1
- Deny from all
 
classes/.htaccess CHANGED
File without changes
classes/WP_Piwik.php CHANGED
@@ -1,1463 +1,1322 @@
1
- <?php
2
-
3
- class wp_piwik {
4
-
5
- private static
6
- $intRevisionId = 92000,
7
- $strVersion = '0.9.9.10',
8
- $blog_id,
9
- $intDashboardID = 30,
10
- $strPluginBasename = NULL,
11
- $bolJustActivated = false,
12
- $logger,
13
- $settings;
14
-
15
- private
16
- $intStatsPage = NULL,
17
- $bolNetwork = false,
18
- $aryAttributes = array(),
19
- $strResult = '';
20
-
21
- public function __construct() {
22
- global $blog_id;
23
- self::$blog_id = (isset($blog_id)?$blog_id:'n/a');
24
- $this->openLogger();
25
- $this->openSettings();
26
- $this->setup();
27
- $this->addFilters();
28
- $this->addActions();
29
- $this->addShortcodes();
30
- self::$settings->save();
31
- }
32
-
33
- public function __destruct() {
34
- $this->closeLogger();
35
- }
36
-
37
- private function setup() {
38
- self::$strPluginBasename = plugin_basename(__FILE__);
39
- register_activation_hook(__FILE__, array($this, 'installPlugin'));
40
- if ($this->isUpdated())
41
- $this->upgradePlugin();
42
- if ($this->isConfigSubmitted())
43
- $this->applySettings();
44
- if ($this->isPHPMode())
45
- self::definePiwikConstants();
46
- $this->loadLanguage();
47
- }
48
-
49
- private function addActions() {
50
- add_action('admin_menu', array($this, 'buildAdminMenu'));
51
- add_action('admin_post_save_wp-piwik_stats', array(&$this, 'onStatsPageSaveChanges'));
52
- add_action('load-post.php', array(&$this, 'postMetaboxes'));
53
- add_action('load-post-new.php', array(&$this, 'postMetaboxes'));
54
- if ($this->isNetworkMode())
55
- add_action('network_admin_menu', array($this, 'buildNetworkAdminMenu'));
56
- if ($this->isDashboardActive())
57
- add_action('wp_dashboard_setup', array($this, 'extendWordPressDashboard'));
58
- if ($this->isToolbarActive()) {
59
- add_action(is_admin()?'admin_head':'wp_head', array($this, 'loadToolbarRequirements'));
60
- add_action('admin_bar_menu', array(&$this, 'extendWordPressToolbar'), 1000);
61
- }
62
- if ($this->isTrackingActive()) {
63
- add_action(self::$settings->getGlobalOption('track_codeposition') == 'footer'?'wp_footer':'wp_head', array($this, 'addJavascriptCode'));
64
- if ($this->isAddNoScriptCode())
65
- add_action('wp_footer', array($this, 'addNoscriptCode'));
66
- if ($this->isAdminTrackingActive())
67
- add_action('admin_head', array($this, 'addAdminHeaderTracking'));
68
- }
69
- if (self::$settings->getGlobalOption('add_post_annotations'))
70
- add_action('transition_post_status', array($this, 'onPostStatusTransition'));
71
- }
72
-
73
- private function addFilters() {
74
- add_filter('plugin_row_meta', array($this, 'setPluginMeta'), 10, 2);
75
- add_filter('screen_layout_columns', array(&$this, 'onScreenLayoutColumns'), 10, 2);
76
- if ($this->isTrackingActive()) {
77
- if ($this->isTrackFeed()) {
78
- add_filter('the_excerpt_rss', array(&$this, 'addFeedTracking'));
79
- add_filter('the_content', array(&$this, 'addFeedTracking'));
80
- }
81
- if ($this->isAddFeedCampaign())
82
- add_filter('post_link', array(&$this, 'addFeedCampaign'));
83
- }
84
- }
85
-
86
- private function addShortcodes() {
87
- if ($this->isAddShortcode())
88
- add_shortcode('wp-piwik', array(&$this, 'shortcode'));
89
- }
90
-
91
- private function loadLanguage() {
92
- load_plugin_textdomain('wp-piwik', false, dirname(self::$strPluginBasename)."/../languages/");
93
- }
94
-
95
- function installPlugin() {
96
- self::$logger->log('Running WP-Piwik installation');
97
- add_action('admin_notices', array($this, 'updateMessage'));
98
- self::$bolJustActivated = true;
99
- self::$settings->setGlobalOption('revision', self::$intRevisionId);
100
- self::$settings->setGlobalOption('last_settings_update', time());
101
- }
102
-
103
- static function uninstallPlugin() {
104
- self::$logger->log('Running WP-Piwik uninstallation');
105
- if (!defined('WP_UNINSTALL_PLUGIN'))
106
- exit();
107
- self::$settings->resetSettings(true);
108
- }
109
-
110
- function upgradePlugin() {
111
- self::$logger->log('Upgrade WP-Piwik to '.self::$strVersion);
112
- add_action('admin_notices', array($this, 'updateMessage'));
113
- $patches = glob(dirname(__FILE__).DIRECTORY_SEPARATOR.'update'.DIRECTORY_SEPARATOR.'*.php');
114
- if (is_array($patches)) {
115
- sort($patches);
116
- foreach ($patches as $patch) {
117
- $patchVersion = (int) pathinfo($patch, PATHINFO_FILENAME);
118
- if ($patchVersion && self::$settings->getGlobalOption('revision') < $patchVersion)
119
- self::includeFile('update'.DIRECTORY_SEPARATOR.$patchVersion);
120
- }
121
- }
122
- $this->installPlugin();
123
- }
124
-
125
- function updateMessage() {
126
- $text = sprintf(__('%s %s installed.', 'wp-piwik'), self::$settings->getGlobalOption('plugin_display_name'), self::$strVersion);
127
- $notice = (!self::isConfigured()?
128
- __('Next you should connect to Piwik','wp-piwik'):
129
- __('Please validate your configuration','wp-piwik')
130
- );
131
- $link = sprintf('<a href="'.getSettingsURL.'?page=%s">%s</a>', self::$strPluginBasename, __('Settings', 'wp-piwik'));
132
- printf('<div class="updated fade"><p>%s<strong>%s:</strong> %s: %s</p></div>', $text, __('Important', 'wp-piwik'), $notice, $link);
133
- }
134
-
135
- function getSettingsURL() {
136
- return (self::$settings->checkNetworkActivation()?'settings':'options-general').'.php';
137
- }
138
-
139
- private function updateTrackingCode() {
140
- if (!self::$settings->getOption('site_id') || !self::$settings->getOption('tracking_code'))
141
- $this->addPiwikSite();
142
- if ($this->isCurrentTrackingCode()) {
143
- self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
144
- self::$settings->save();
145
- }
146
- }
147
-
148
- /* -- </REFACTORED><OLD> -- */
149
-
150
- function addJavascriptCode() {
151
- if ($this->isHiddenUser()) {
152
- self::$logger->log('Do not add tracking code to site header (user should not be tracked) Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
153
- return;
154
- }
155
- $this->updateTrackingCode();
156
-
157
- // Change code if 404
158
- if (is_404() && self::$settings->getGlobalOption('track_404')) {
159
- self::$logger->log('Apply 404 changes. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
160
- $strTrackingCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);", self::$settings->getOption('tracking_code'));
161
- }
162
- // Change code if search result
163
- elseif (is_search() && self::$settings->getGlobalOption('track_search')) {
164
- self::$logger->log('Apply search tracking changes. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
165
- $objSearch = new WP_Query("s=" . get_search_query() . '&showposts=-1');
166
- $intResultCount = $objSearch->post_count;
167
- $strTrackingCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['trackSiteSearch','".get_search_query()."', false, ".$intResultCount."]);\n_paq.push(['trackPageView']);", self::$settings->getOption('tracking_code'));
168
- // Use default tracking code
169
- } else
170
- $strTrackingCode = self::$settings->getOption('tracking_code');
171
- // Send tracking code
172
- self::$logger->log('Add tracking code. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
173
- // Add custom variables if set:
174
- if (is_single()) {
175
- $strCustomVars = '';
176
- for ($i = 1; $i <= 5; $i++) {
177
- // Get post ID
178
- $intID = get_the_ID();
179
- // Get key
180
- $strMetaKey = get_post_meta($intID, 'wp-piwik_custom_cat'.$i, true);
181
- // Get value
182
- $strMetaVal = get_post_meta($intID, 'wp-piwik_custom_val'.$i, true);
183
- if (!empty($strMetaKey) && !empty($strMetaVal))
184
- $strCustomVars .= "_paq.push(['setCustomVariable',".$i.", '".$strMetaKey."', '".$strMetaVal."', 'page']);\n";
185
- }
186
- if (!empty($strCustomVars)) $strTrackingCode = str_replace("_paq.push(['trackPageView']);", $strCustomVars."_paq.push(['trackPageView']);", $strTrackingCode);
187
- }
188
- echo $strTrackingCode;
189
- $strName = get_bloginfo('name');
190
- if (self::$settings->getOption('name') != $strName)
191
- $this->updatePiwikSite();
192
- }
193
-
194
- function addNoscriptCode() {
195
- // Hotfix: Custom capability problem with WP multisite
196
- if (is_multisite()) {
197
- foreach (self::$settings->getGlobalOption('capability_stealth') as $strKey => $strVal)
198
- if ($strVal && current_user_can($strKey))
199
- return;
200
- // Don't add tracking code?
201
- } elseif (current_user_can('wp-piwik_stealth')) return;
202
- // Send tracking code
203
- self::$logger->log('Add noscript code. Blog ID: '.self::$blog_id.' Site ID: '.self::$settings->getOption('site_id'));
204
- echo self::$settings->getOption('noscript_code')."\n";
205
- }
206
-
207
- /**
208
- * Shortcode function
209
- **/
210
-
211
- function shortcode($aryAttributes) {
212
- $this->aryAttributes = shortcode_atts(
213
- array(
214
- 'title' => '',
215
- 'module' => 'overview',
216
- 'period' => 'day',
217
- 'date' => 'yesterday',
218
- 'limit' => 10,
219
- 'width' => '100%',
220
- 'height' => '200px',
221
- 'language' => 'en',
222
- 'range' => false,
223
- 'key' => 'sum_daily_nb_uniq_visitors'
224
- ), $aryAttributes);
225
- switch ($this->aryAttributes['module']) {
226
- case 'opt-out':
227
- $this->strResult = '<iframe frameborder="no" width="'.$this->aryAttributes['width'].'" height="'.$this->aryAttributes['height'].'" src="'.self::$settings->getGlobalOption('piwik_url').'index.php?module=CoreAdminHome&action=optOut&language='.$this->aryAttributes['language'].'"></iframe>';
228
- break;
229
- case 'post':
230
- self::includeFile('shortcodes/post');
231
- break;
232
- case 'overview':
233
- default:
234
- self::includeFile('shortcodes/overview');
235
- }
236
- return $this->strResult;
237
- }
238
-
239
- /**
240
- * Add metaboxes to posts
241
- */
242
- function postMetaboxes() {
243
- if (self::$settings->getGlobalOption('add_customvars_box')) {
244
- add_action('add_meta_boxes', array(&$this, 'postAddMetaboxes'));
245
- add_action('save_post', array(&$this, 'postCustomvarsSave'), 10, 2);
246
- }
247
- // Show per post stats if enabled
248
- if (self::$settings->getGlobalOption('perpost_stats')) {
249
- $this->includeFile('classes/WP_Piwik_MetaBox_PerPost_Stats');
250
- add_action('add_meta_boxes', array(new WP_Piwik_MetaBox_PerPost_Stats($this->subClassConfig()), 'addMetabox'));
251
- }
252
- }
253
-
254
- /**
255
- * Create post meta boxes
256
- */
257
- function postAddMetaboxes() {
258
- add_meta_box(
259
- 'wp-piwik_post_customvars',
260
- __('Piwik Custom Variables', 'wp-piwik'),
261
- array(&$this, 'postCustomvars'),
262
- 'post',
263
- 'side',
264
- 'default'
265
- );
266
- }
267
-
268
- /**
269
- * Display custom variables meta box
270
- */
271
- function postCustomvars($objPost, $objBox ) {
272
- wp_nonce_field(basename( __FILE__ ), 'wp-piwik_post_customvars_nonce'); ?>
273
- <table>
274
- <tr><th></th><th><?php _e('Name', 'wp-piwik'); ?></th><th><?php _e('Value', 'wp-piwik'); ?></th></tr>
275
- <?php for($i = 1; $i <= 5; $i++) { ?>
276
- <tr>
277
- <th><label for="wp-piwik_customvar1"><?php echo $i; ?>: </label></th>
278
- <td><input class="widefat" type="text" name="wp-piwik_custom_cat<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_cat'.$i, true ) ); ?>" size="200" /></td>
279
- <td><input class="widefat" type="text" name="wp-piwik_custom_val<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_val'.$i, true ) ); ?>" size="200" /></td>
280
- </tr>
281
- <?php } ?>
282
- </table>
283
- <p><?php _e('Set custom variables for a page view', 'wp-piwik'); ?>. (<a href="http://piwik.org/docs/custom-variables/"><?php _e('More information', 'wp-piwik'); ?></a>.)</p>
284
- <?php
285
- }
286
-
287
- /**
288
- * Save post custom variables
289
- */
290
- function postCustomvarsSave($intID, $objPost) {
291
- // Verify the nonce before proceeding.
292
- if (!isset( $_POST['wp-piwik_post_customvars_nonce'] ) || !wp_verify_nonce( $_POST['wp-piwik_post_customvars_nonce'], basename( __FILE__ ) ) )
293
- return $intID;
294
- // Get post type object
295
- $objPostType = get_post_type_object($objPost->post_type);
296
- // Check if the current user has permission to edit the post.
297
- if (!current_user_can($objPostType->cap->edit_post, $intID))
298
- return $intID;
299
- $aryNames = array('cat', 'val');
300
- for ($i = 1; $i <= 5; $i++)
301
- for ($j = 0; $j <= 1; $j++) {
302
- // Get data
303
- $strMetaVal = (isset($_POST['wp-piwik_custom_'.$aryNames[$j].$i])?htmlentities($_POST['wp-piwik_custom_'.$aryNames[$j].$i]):'');
304
- // Create key
305
- $strMetaKey = 'wp-piwik_custom_'.$aryNames[$j].$i;
306
- // Get the meta value of the custom field key
307
- $strCurVal = get_post_meta($intID, $strMetaKey, true);
308
- // Add meta val:
309
- if ($strMetaVal && '' == $strCurVal)
310
- add_post_meta($intID, $strMetaKey, $strMetaVal, true);
311
- // Update meta val:
312
- elseif ($strMetaVal && $strMetaVal != $strCurVal)
313
- update_post_meta($intID, $strMetaKey, $strMetaVal);
314
- // Delete meta val:
315
- elseif (''==$strMetaVal && $strCurVal)
316
- delete_post_meta($intID, $strMetaKey, $strCurVal);
317
- }
318
- }
319
-
320
- /**
321
- * Add pages to admin menu
322
- */
323
- function buildAdminMenu() {
324
- // Show stats dashboard page if WP-Piwik is configured
325
- if (self::isConfigured()) {
326
- // Add dashboard page
327
- $this->intStatsPage = add_dashboard_page(
328
- __('Piwik Statistics', 'wp-piwik'),
329
- self::$settings->getGlobalOption('plugin_display_name'),
330
- 'wp-piwik_read_stats',
331
- 'wp-piwik_stats',
332
- array($this, 'showStats')
333
- );
334
- // Add required scripts
335
- add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadStatsScripts'));
336
- // Add required styles
337
- add_action('admin_print_styles-'.$this->intStatsPage, array($this, 'addAdminStyle'));
338
- // Add required header tags
339
- add_action('admin_head-'.$this->intStatsPage, array($this, 'addAdminHeaderStats'));
340
- // Stats page onload callback
341
- add_action('load-'.$this->intStatsPage, array(&$this, 'onloadStatsPage'));
342
- }
343
- if (!self::$settings->checkNetworkActivation()) {
344
- // Add options page
345
- $intOptionsPage = add_options_page(
346
- self::$settings->getGlobalOption('plugin_display_name'),
347
- self::$settings->getGlobalOption('plugin_display_name'),
348
- 'activate_plugins',
349
- __FILE__,
350
- array($this, 'showSettings')
351
- );
352
- // Add required scripts
353
- add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadSettingsScripts'));
354
- // Add required header tags
355
- add_action('admin_head-'.$intOptionsPage, array($this, 'addAdminHeaderSettings'));
356
- // Add styles required by options page
357
- add_action('admin_print_styles-'.$intOptionsPage, array($this, 'addAdminStyle'));
358
- }
359
- }
360
-
361
- /**
362
- * Add pages to network admin menu
363
- */
364
- function buildNetworkAdminMenu() {
365
- // Show stats dashboard page if WP-Piwik is configured
366
- if (self::isConfigured()) {
367
- // Add dashboard page
368
- $this->intStatsPage = add_dashboard_page(
369
- __('Piwik Statistics', 'wp-piwik'),
370
- self::$settings->getGlobalOption('plugin_display_name'),
371
- 'manage_sites',
372
- 'wp-piwik_stats',
373
- array($this, 'showStatsNetwork')
374
- );
375
- // Add required scripts
376
- add_action('admin_print_scripts-'.$this->intStatsPage, array($this, 'loadStatsScripts'));
377
- // Add required styles
378
- add_action('admin_print_styles-'.$this->intStatsPage, array($this, 'addAdminStyle'));
379
- // Add required header tags
380
- add_action('admin_head-'.$this->intStatsPage, array($this, 'addAdminHeaderStats'));
381
- // Stats page onload callback
382
- add_action('load-'.$this->intStatsPage, array(&$this, 'onloadStatsPage'));
383
- }
384
- $intOptionsPage = add_submenu_page(
385
- 'settings.php',
386
- self::$settings->getGlobalOption('plugin_display_name'),
387
- self::$settings->getGlobalOption('plugin_display_name'),
388
- 'manage_sites',
389
- __FILE__,
390
- array($this, 'showSettings')
391
- );
392
-
393
- // Add styles required by options page
394
- add_action('admin_print_styles-'.$intOptionsPage, array($this, 'addAdminStyle'));
395
- add_action('admin_head-'.$intOptionsPage, array($this, 'addAdminHeaderSettings'));
396
- }
397
-
398
- /**
399
- * Support two columns
400
- * seen in Heiko Rabe's metabox demo plugin
401
- *
402
- * @see http://tinyurl.com/5r5vnzs
403
- */
404
- function onScreenLayoutColumns($aryColumns, $strScreen) {
405
- if ($strScreen == $this->intStatsPage)
406
- $aryColumns[$this->intStatsPage] = 3;
407
- return $aryColumns;
408
- }
409
-
410
- /**
411
- * Add widgets to WordPress dashboard
412
- */
413
- function extendWordPressDashboard() {
414
- // Is user allowed to see stats?
415
- if (current_user_can('wp-piwik_read_stats')) {
416
- // TODO: Use bitmask here
417
- // Add data widget if enabled
418
- if (self::$settings->getGlobalOption('dashboard_widget'))
419
- $this->addWordPressDashboardWidget();
420
- // Add chart widget if enabled
421
- if (self::$settings->getGlobalOption('dashboard_chart')) {
422
- // Add required scripts
423
- add_action('admin_print_scripts-index.php', array($this, 'loadStatsScripts'));
424
- // Add required styles
425
- add_action('admin_print_styles-index.php', array($this, 'addAdminStyle'));
426
- // Add required header tags
427
- add_action('admin_head-index.php', array($this, 'addAdminHeaderStats'));
428
- $this->addWordPressDashboardChart();
429
- }
430
- // Add SEO widget if enabled
431
- if (self::$settings->getGlobalOption('dashboard_seo'))
432
- $this->addWordPressDashboardSEO();
433
- }
434
- }
435
-
436
- /**
437
- * Add widgets to WordPress Toolbar
438
- */
439
- public function extendWordPressToolbar(&$objToolbar) {
440
- // Is user allowed to see stats?
441
- if (current_user_can('wp-piwik_read_stats') && is_admin_bar_showing()) {
442
- $aryUnique = $this->callPiwikAPI('VisitsSummary.getUniqueVisitors','day','last30',null);
443
- if (!is_array($aryUnique)) $aryUnique = array();
444
- $strGraph = '<script type="text/javascript">';
445
- $strGraph .= "var \$jSpark = jQuery.noConflict();\$jSpark(function() {var piwikSparkVals=[".implode(',',$aryUnique)."];\$jSpark('.wp-piwik_dynbar').sparkline(piwikSparkVals, {type: 'bar', barColor: '#ccc', barWidth:2});});";
446
- $strGraph .= '</script>';
447
- $strGraph .= '<span class="wp-piwik_dynbar">Loading...</span>';
448
- $objToolbar->add_menu(array(
449
- 'id' => 'wp-piwik_stats',
450
- 'title' => $strGraph,
451
- 'href' => admin_url().'?page=wp-piwik_stats'
452
- ));
453
- }
454
- }
455
-
456
- /**
457
- * Add a data widget to the WordPress dashboard
458
- */
459
- function addWordPressDashboardWidget() {
460
- $aryConfig = array(
461
- 'params' => array('period' => 'day','date' => self::$settings->getGlobalOption('dashboard_widget'),'limit' => null),
462
- 'inline' => true,
463
- );
464
- $strFile = 'overview';
465
- add_meta_box(
466
- 'wp-piwik_stats-dashboard-overview',
467
- self::$settings->getGlobalOption('plugin_display_name').' - '.__(self::$settings->getGlobalOption('dashboard_widget'), 'wp-piwik'),
468
- array(&$this, 'createDashboardWidget'),
469
- 'dashboard',
470
- 'side',
471
- 'high',
472
- array('strFile' => $strFile, 'aryConfig' => $aryConfig)
473
- );
474
- }
475
-
476
- /**
477
- * Add a visitor chart to the WordPress dashboard
478
- */
479
- function addWordPressDashboardChart() {
480
- $aryConfig = array(
481
- 'params' => array('period' => 'day','date' => 'last30','limit' => null),
482
- 'inline' => true,
483
- );
484
- $strFile = 'visitors';
485
- add_meta_box(
486
- 'wp-piwik_stats-dashboard-chart',
487
- self::$settings->getGlobalOption('plugin_display_name').' - '.__('Visitors', 'wp-piwik'),
488
- array(&$this, 'createDashboardWidget'),
489
- 'dashboard',
490
- 'side',
491
- 'high',
492
- array('strFile' => $strFile, 'aryConfig' => $aryConfig)
493
- );
494
- }
495
-
496
- /**
497
- * Add a SEO widget to the WordPress dashboard
498
- */
499
- function addWordPressDashboardSEO() {
500
- $aryConfig = array(
501
- 'params' => array('period' => 'day','date' => 'today','limit' => null),
502
- 'inline' => true,
503
- );
504
- $strFile = 'seo';
505
- add_meta_box(
506
- 'wp-piwik_stats-dashboard-seo',
507
- self::$settings->getGlobalOption('plugin_display_name').' - '.__('SEO', 'wp-piwik'),
508
- array(&$this, 'createDashboardWidget'),
509
- 'dashboard',
510
- 'side',
511
- 'high',
512
- array('strFile' => $strFile, 'aryConfig' => $aryConfig)
513
- );
514
- }
515
-
516
- /**
517
- * Add plugin meta links to plugin details
518
- *
519
- * @see http://wpengineer.com/1295/meta-links-for-wordpress-plugins/
520
- */
521
- function setPluginMeta($strLinks, $strFile) {
522
- // Get plugin basename
523
- $strPlugin = plugin_basename(__FILE__);
524
- // Add link just to this plugin's details
525
- if ($strFile == self::$strPluginBasename)
526
- return array_merge(
527
- $strLinks,
528
- array(
529
- sprintf('<a href="'.(self::$settings->checkNetworkActivation()?'settings':'options-general').'.php?page=%s">%s</a>', self::$strPluginBasename, __('Settings', 'wp-piwik'))
530
- )
531
- );
532
- // Don't affect other plugins details
533
- return $strLinks;
534
- }
535
-
536
- /**
537
- * Load required scripts to stats page
538
- */
539
- function loadStatsScripts() {
540
- // Load WP-Piwik script
541
- wp_enqueue_script('wp-piwik', $this->getPluginURL().'js/wp-piwik.js', array(), self::$strVersion, true);
542
- // Load jqPlot
543
- wp_enqueue_script('wp-piwik-jqplot',$this->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
544
- }
545
-
546
- /**
547
- * Load scripts required by Toolbar graphs
548
- */
549
- function loadToolbarRequirements() {
550
- // Only load if user is allowed to see stats
551
- if (current_user_can('wp-piwik_read_stats') && is_admin_bar_showing()) {
552
- // Load Sparklines
553
- wp_enqueue_script('wp-piwik-sparkline',$this->getPluginURL().'js/sparkline/jquery.sparkline.min.js',array('jquery'),'2.1.1');
554
- // Load CSS
555
- wp_enqueue_style('wp-piwik', $this->getPluginURL().'css/wp-piwik-spark.css');
556
- }
557
- }
558
-
559
- /**
560
- * Load required scripts to settings page
561
- */
562
- function loadSettingsScripts() {
563
- wp_enqueue_script('jquery');
564
- }
565
-
566
- /**
567
- * Load required styles to admin pages
568
- */
569
- function addAdminStyle() {
570
- // Load WP-Piwik styles
571
- wp_enqueue_style('wp-piwik', $this->getPluginURL().'css/wp-piwik.css',array(),self::$strVersion);
572
- }
573
-
574
- /**
575
- * Add tracking code to admin header
576
- */
577
- function addAdminHeaderTracking() {
578
- $this->site_header();
579
- }
580
-
581
- /**
582
- * Add tracking image to feeds
583
- **/
584
- function addFeedTracking($content) {
585
- global $post;
586
- if(is_feed()) {
587
- self::$logger->log('Add tracking image to feed entry.');
588
- if (!self::$settings->getOption('site_id'))
589
- self::addPiwikSite();
590
- $title = the_title(null,null,false);
591
- $posturl = get_permalink($post->ID);
592
- $urlref = get_bloginfo('rss2_url');
593
- $url = self::$settings->getGlobalOption('piwik_url');
594
- if (substr($url, -10, 10) == '/index.php')
595
- $url = str_replace('/index.php', '/piwik.php', $url);
596
- else $url .= 'piwik.php';
597
- $trackingImage = $url.'?idsite='.self::$settings->getOption('site_id').'&amp;rec=1'.
598
- '&amp;url='.urlencode($posturl).
599
- '&amp;action_name='.urlencode($title).
600
- '&amp;urlref='.urlencode($urlref);
601
- $content .= '<img src="'.$trackingImage.'" style="border:0;width:0;height:0" width="0" height="0" alt="" />';
602
- }
603
- return $content;
604
- }
605
-
606
- /**
607
- * Add tracking image to feeds
608
- **/
609
- function addFeedCampaign($permalink) {
610
- global $post;
611
- if(is_feed()) {
612
- self::$logger->log('Add campaign to feed permalink.');
613
- $sep = (strpos($permalink, '?') === false?'?':'&');
614
- $permalink .= $sep.'pk_campaign='.urlencode(self::$settings->getGlobalOption('track_feed_campaign')).'&pk_kwd='.urlencode($post->post_name);
615
- }
616
- return $permalink;
617
- }
618
-
619
- function addPiwikAnnotation($postID) {
620
- $this->callPiwikAPI('Annotations.add', '', date('Y-m-d'), '', false, false, 'PHP', '', false, 'Published: '.get_post($postID)->post_title.' - URL: '.get_permalink($postID));
621
- }
622
-
623
- /**
624
- * Add required header tags to stats page
625
- */
626
- function addAdminHeaderStats() {
627
- // Load jqPlot IE compatibility script
628
- echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.$this->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
629
- // Load jqPlot styles
630
- echo '<link rel="stylesheet" href="'.$this->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
631
- echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
632
- }
633
-
634
- /**
635
- * Add required header tags to settings page
636
- */
637
- function addAdminHeaderSettings() {
638
- echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
639
- }
640
-
641
- /**
642
- * Get this plugin's URL
643
- */
644
- function getPluginURL() {
645
- // Return plugins URL + /wp-piwik/
646
- return trailingslashit(plugins_url().'/wp-piwik/');
647
- }
648
-
649
- /**
650
- * Call REST API
651
- *
652
- * @param $strURL Remote file URL
653
- */
654
- function callREST($strURL) {
655
- $strPiwikURL = self::$settings->getGlobalOption('piwik_url');
656
- if (substr($strPiwikURL, -1, 1) != '/') $strPiwikURL .= '/';
657
- $strURL = $strPiwikURL.'?module=API'.$strURL;
658
- // Use cURL if available
659
- if (function_exists('curl_init')) {
660
- // Init cURL
661
- $c = curl_init($strURL);
662
- // Disable SSL peer verification if asked to
663
- curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$settings->getGlobalOption('disable_ssl_verify'));
664
- // Set user agent
665
- curl_setopt($c, CURLOPT_USERAGENT, self::$settings->getGlobalOption('piwik_useragent')=='php'?ini_get('user_agent'):self::$settings->getGlobalOption('piwik_useragent_string'));
666
- // Configure cURL CURLOPT_RETURNTRANSFER = 1
667
- curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
668
- // Configure cURL CURLOPT_HEADER = 0
669
- curl_setopt($c, CURLOPT_HEADER, 0);
670
- // Set cURL timeout
671
- curl_setopt($c, CURLOPT_TIMEOUT, self::$settings->getGlobalOption('connection_timeout'));
672
- $httpProxyClass = new WP_HTTP_Proxy();
673
- if ($httpProxyClass->is_enabled() && $httpProxyClass->send_through_proxy($strURL)) {
674
- curl_setopt($c, CURLOPT_PROXY, $httpProxyClass->host());
675
- curl_setopt($c, CURLOPT_PROXYPORT, $httpProxyClass->port());
676
- if ($httpProxyClass->use_authentication())
677
- curl_setopt($c, CURLOPT_PROXYUSERPWD, $httpProxyClass->username().':'.$httpProxyClass->password());
678
- }
679
- // Get result
680
- $strResult = curl_exec($c);
681
- // Close connection
682
- curl_close($c);
683
- // cURL not available but url fopen allowed
684
- } elseif (ini_get('allow_url_fopen')) {
685
- // Set timeout
686
- $resContext = stream_context_create(array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout'))));
687
- // Get file using file_get_contents
688
- $strResult = @file_get_contents($strURL, false, $strContext);
689
- // Error: Not possible to get remote file
690
- } else $strResult = serialize(array(
691
- 'result' => 'error',
692
- 'message' => 'Remote access to Piwik not possible. Enable allow_url_fopen or CURL.'
693
- ));
694
- // Return result
695
- return $strResult;
696
- }
697
-
698
- /**
699
- * Call PHP API
700
- *
701
- * @param $strParams API call params
702
- */
703
- function callPHP($strParams) {
704
- if (!defined('PIWIK_INCLUDE_PATH'))
705
- return;
706
- if (PIWIK_INCLUDE_PATH === FALSE)
707
- return serialize(array('result' => 'error', 'message' => __('Could not resolve','wp-piwik').' &quot;'.htmlentities(self::$settings->getGlobalOption('piwik_path')).'&quot;: '.__('realpath() returns false','wp-piwik').'.'));
708
- if (file_exists(PIWIK_INCLUDE_PATH . "/index.php"))
709
- require_once PIWIK_INCLUDE_PATH . "/index.php";
710
- if (file_exists(PIWIK_INCLUDE_PATH . "/core/API/Request.php"))
711
- require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
712
- if (class_exists('Piwik\FrontController'))
713
- Piwik\FrontController::getInstance()->init();
714
- else serialize(array('result' => 'error', 'message' => __('Class Piwik\FrontController does not exists.','wp-piwik')));
715
- if (class_exists('Piwik\API\Request'))
716
- $objRequest = new Piwik\API\Request($strParams);
717
- else serialize(array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik')));
718
- return $objRequest->process();
719
- }
720
-
721
- /**
722
- * Get remote file
723
- *
724
- * @param String $strURL Remote file URL
725
- */
726
- function getRemoteFile($strURL, $blogURL = '') {
727
- if (self::$settings->getGlobalOption('piwik_mode') == 'php')
728
- return $this->callPHP($strURL.($blogURL?'&url='.$blogURL:''));
729
- else
730
- return $this->callREST($strURL.($blogURL?'&url='.urlencode($blogURL):''));
731
- }
732
-
733
- /**
734
- * Add a new site to Piwik if a new blog was requested,
735
- * or get its ID by URL
736
- */
737
- function addPiwikSite() {
738
- if (isset($_GET['wpmu_show_stats']) && self::$settings->checkNetworkActivation()) {
739
- self::$logger->log('Switch blog ID: '.(int) $_GET['wpmu_show_stats']);
740
- switch_to_blog((int) $_GET['wpmu_show_stats']);
741
- }
742
- self::$logger->log('Get the blog\'s site ID by URL: '.get_bloginfo('url'));
743
- // Check if blog URL already known
744
- $strURL = '&method=SitesManager.getSitesIdFromSiteUrl';
745
- $strURL .= '&format=PHP';
746
- $strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
747
- $aryResult = unserialize($this->getRemoteFile($strURL, get_bloginfo('url')));
748
- if (!empty($aryResult) && isset($aryResult[0]['idsite'])) {
749
- self::$settings->setOption('site_id', (int) $aryResult[0]['idsite']);
750
- // Otherwise create new site
751
- } elseif (self::isConfigured() && !empty($strURL)) {
752
- self::$logger->log('Blog not known yet - create new site');
753
- $strName = get_bloginfo('name');
754
- if (empty($strName)) $strName = get_bloginfo('url');
755
- self::$settings->setOption('name', $strName);
756
- $strURL .= '&method=SitesManager.addSite';
757
- $strURL .= '&siteName='.urlencode($strName).'&urls='.urlencode(get_bloginfo('url'));
758
- $strURL .= '&format=PHP';
759
- $strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
760
- $strResult = unserialize($this->getRemoteFile($strURL, get_bloginfo('url')));
761
- if (!empty($strResult)) self::$settings->setOption('site_id', (int) $strResult);
762
- }
763
- // Store new data if site created
764
- if (self::$settings->getOption('site_id')) {
765
- self::$logger->log('Get the site\'s tracking code');
766
- self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
767
- } else self::$settings->getOption('tracking_code', '');
768
- self::$settings->save();
769
- if (isset($_GET['wpmu_show_stats']) && self::$settings->checkNetworkActivation()) {
770
- self::$logger->log('Back to current blog');
771
- restore_current_blog();
772
- }
773
- return array('js' => self::$settings->getOption('tracking_code'), 'id' => self::$settings->getOption('site_id'));
774
- }
775
-
776
- /**
777
- * Update a site
778
- */
779
- function updatePiwikSite() {
780
- $strBlogURL = get_bloginfo('url');
781
- // Check if blog URL already known
782
- $strName = get_bloginfo('name');
783
- if (empty($strName)) $strName = $strBlogURL;
784
- self::$settings->setOption('name', $strName);
785
- $strURL = '&method=SitesManager.updateSite';
786
- $strURL .= '&idSite='.self::$settings->getOption('site_id');
787
- $strURL .= '&siteName='.urlencode($strName).'&urls='.urlencode($strBlogURL);
788
- $strURL .= '&format=PHP';
789
- $strURL .= '&token_auth='.self::$settings->getGlobalOption('piwik_token');
790
- $strResult = unserialize($this->getRemoteFile($strURL));
791
- // Store new data
792
- self::$settings->getOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
793
- self::$settings->save();
794
- }
795
-
796
- /**
797
- * Apply configured Tracking Code changes
798
- */
799
- function applyJSCodeChanges($strCode) {
800
- self::$logger->log('Apply tracking code changes.');
801
- self::$settings->setOption('last_tracking_code_update', time());
802
- $strCode = html_entity_decode($strCode);
803
- // Change code if js/index.php should be used
804
- if (self::$settings->getGlobalOption('track_mode') == 1) {
805
- $strCode = str_replace('piwik.js', 'js/', $strCode);
806
- $strCode = str_replace('piwik.php', 'js/', $strCode);
807
- } elseif (self::$settings->getGlobalOption('track_mode') == 2) {
808
- $strCode = str_replace('piwik.js', 'piwik.php', $strCode);
809
- $strURL = str_replace('https://', '://', self::$settings->getGlobalOption('piwik_url'));
810
- $strURL = str_replace('http://', '://', $strURL);
811
- $strProxy = str_replace('https://', '://', plugins_url('wp-piwik'));
812
- $strProxy = str_replace('http://', '://', $strProxy);
813
- $strProxy .= '/';
814
- $strCode = str_replace($strURL, $strProxy, $strCode);
815
- }
816
- $strCode = str_replace('//";','/"',$strCode);
817
- if (self::$settings->getGlobalOption('track_cdnurl')||self::$settings->getGlobalOption('track_cdnurlssl')) {
818
- $strCode = str_replace("var d=doc", "var ucdn=(('https:' == document.location.protocol) ? 'https://".(self::$settings->getGlobalOption('track_cdnurlssl')?self::$settings->getGlobalOption('track_cdnurlssl'):self::$settings->getGlobalOption('track_cdnurl'))."/' : 'http://".(self::$settings->getGlobalOption('track_cdnurl')?self::$settings->getGlobalOption('track_cdnurl'):self::$settings->getGlobalOption('track_cdnurlssl'))."/');\nvar d=doc", $strCode);
819
- $strCode = str_replace("g.src=u+", "g.src=ucdn+", $strCode);
820
- }
821
- // Change code if POST is forced to be used
822
- if (self::$settings->getGlobalOption('track_post') && self::$settings->getGlobalOption('track_mode') != 2) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setRequestMethod', 'POST']);\n_paq.push(['trackPageView']);", $strCode);
823
- // Change code if cookies are disabled
824
- if (self::$settings->getGlobalOption('track_across')) {
825
- $referrerParsed = parse_url(get_bloginfo('url'));
826
- $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setCookieDomain', '*.".$referrerParsed['host']."']);\n_paq.push(['trackPageView']);", $strCode);
827
- }
828
- if (self::$settings->getGlobalOption('disable_cookies')) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['disableCookies']);\n_paq.push(['trackPageView']);", $strCode);
829
- if (self::$settings->getGlobalOption('limit_cookies')) $strCode = str_replace("_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '".self::$settings->getGlobalOption('limit_cookies_visitor')."']);\n_paq.push(['setSessionCookieTimeout', '".self::$settings->getGlobalOption('limit_cookies_session')."']);\n_paq.push(['trackPageView']);", $strCode);
830
- // Store <noscript> code
831
- $aryNoscript = array();
832
- preg_match('/<noscript>(.*)<\/noscript>/', $strCode, $aryNoscript);
833
- if (isset($aryNoscript[0])) {
834
- if (self::$settings->getGlobalOption('track_nojavascript'))
835
- $aryNoscript[0] = str_replace('?idsite', '?rec=1&idsite', $aryNoscript[0]);
836
- self::$settings->setOption('noscript_code', $aryNoscript[0]);
837
- }
838
- if (self::$settings->getGlobalOption('track_datacfasync'))
839
- $strCode = str_replace('<script type', '<script data-cfasync="false" type', $strCode);
840
- // Remove <noscript> code
841
- $strCode = preg_replace('/<noscript>(.*)<\/noscript>/', '', $strCode);
842
- // Return code without empty lines
843
- return preg_replace('/\s+(\r\n|\r|\n)/', '$1', $strCode);
844
- }
845
-
846
- /**
847
- * Create a WordPress dashboard widget
848
- */
849
- function createDashboardWidget($objPost, $aryMetabox) {
850
- // Create description and ID
851
- $strDesc = $strID = '';
852
- $aryConfig = $aryMetabox['args']['aryConfig'];
853
- foreach ($aryConfig['params'] as $strParam)
854
- if (!empty($strParam)) {
855
- $strDesc .= $strParam.', ';
856
- $strID .= '_'.$strParam;
857
- }
858
- // Remove dots from filename
859
- $strFile = str_replace('.', '', $aryMetabox['args']['strFile']);
860
- // Finalize configuration
861
- $aryConf = array_merge($aryConfig, array(
862
- 'id' => $strFile.$strID,
863
- 'desc' => substr($strDesc, 0, -2)));
864
- // Include widget file
865
- if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'dashboard/'.$strFile.'.php'))
866
- include(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'dashboard/'.$strFile.'.php');
867
- }
868
-
869
- /**
870
- * Call Piwik's API
871
- */
872
- function callPiwikAPI($strMethod, $strPeriod='', $strDate='', $intLimit='',$bolExpanded=false, $intId = false, $strFormat = 'PHP', $strPageURL = '', $useCache = true, $strNote = '') {
873
- // Create unique cache key
874
- $strKey = 'wp-piwik_'.md5($strMethod.'_'.$strPeriod.'_'.$strDate.'_'.$intLimit.'_'.self::$settings->getGlobalOption('piwik_token').'_'.self::$settings->getGlobalOption('piwik_url').'_'.$intId.'_'.$strPageURL);
875
- // Call API if data not cached
876
- if (self::$settings->getGlobalOption('cache') && $useCache) {
877
- $result = get_transient($strKey);
878
- self::$logger->log('API method: '.$strMethod.' Fetch call from cache: '.$strKey);
879
- } else $result = false;
880
- if ($strMethod == "SitesManager.getSitesWithAtLeastViewAccess" || false === $result) {
881
- $strToken = self::$settings->getGlobalOption('piwik_token');
882
- // If multisite stats are shown, maybe the super admin wants to show other blog's stats.
883
- if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && function_exists('wp_get_current_user') && is_super_admin() && isset($_GET['wpmu_show_stats'])) {
884
- $aryOptions = get_blog_option((int) $_GET['wpmu_show_stats'], 'wp-piwik_settings' , array());
885
- if (!empty($aryOptions) && isset($aryOptions['site_id']))
886
- $intSite = $aryOptions['site_id'];
887
- else $intSite = self::$settings->getOption('site_id');
888
- // Otherwise use the current site's id.
889
- } else {
890
- if (!self::$settings->getOption('site_id'))
891
- self::addPiwikSite();
892
- $intSite = self::$settings->getOption('site_id');
893
- }
894
- //die($intSite);
895
- // Create error message if WP-Piwik isn't configured
896
- if (!self::isConfigured()) {
897
- $result = array(
898
- 'result' => 'error',
899
- 'message' => 'Piwik URL/path or auth token not set.'
900
- );
901
- return $result;
902
- }
903
- // Build URL
904
- $strURL = '&method='.$strMethod;
905
- $strURL .= '&idSite='.(int)$intSite.'&period='.$strPeriod.'&date='.$strDate;
906
- $strURL .= '&filter_limit='.$intLimit;
907
- $strURL .= '&token_auth='.$strToken;
908
- $strURL .= '&expanded='.$bolExpanded;
909
- $strURL .= '&format='.$strFormat;
910
- $strURL .= ($strPageURL?'&pageUrl='.urlencode($strPageURL):'');
911
- $strURL .= ($strNote?'&note='.urlencode($strNote):'');
912
- // Fetch data if site exists
913
- if (!empty($intSite) || $strMethod='SitesManager.getSitesWithAtLeastViewAccess') {
914
- self::$logger->log('API method: '.$strMethod.' API call: '.$strURL);
915
- $strResult = (string) $this->getRemoteFile($strURL, get_bloginfo('url'));
916
- $result = ($strFormat == 'PHP'?unserialize($strResult):$strResult);
917
- // Apply tracking code changes if configured
918
- if ($strMethod == 'SitesManager.getJavascriptTag' && !empty($result)) {
919
- $result = is_string($result)?$this->applyJSCodeChanges($result):'<!-- WP-Piwik ERROR: Tracking code not availbale -->'."\n";
920
- }
921
- // Otherwise return error message
922
- } else $result = array('result' => 'error', 'message' => 'Unknown site/blog.');
923
- if (
924
- $strMethod != 'SitesManager.getJavascriptTag' &&
925
- $strDate != 'today' && $strDate != date('Ymd') && substr($strDate, 0, 4) != 'last' &&
926
- self::$settings->getGlobalOption('cache') &&
927
- !(isset($result['result']) && $result['result'] == 'error')&&
928
- !empty($result)
929
- ) set_transient($strKey, $result, WEEK_IN_SECONDS);
930
- }
931
- return $result;
932
- }
933
-
934
- /* TODO: Add post stats
935
- * function display_post_unique_column($aryCols) {
936
- * $aryCols['wp-piwik_unique'] = __('Unique');
937
- * return $aryCols;
938
- * }
939
- *
940
- * function display_post_unique_content($strCol, $intID) {
941
- * if( $strCol == 'wp-piwik_unique' ) {
942
- * }
943
- * }
944
- */
945
-
946
- function onloadStatsPage() {
947
- wp_enqueue_script('common');
948
- wp_enqueue_script('wp-lists');
949
- wp_enqueue_script('postbox');
950
- $strToken = self::$settings->getGlobalOption('piwik_token');
951
- $strPiwikURL = self::$settings->getGlobalOption('piwik_url');
952
- $aryDashboard = array();
953
- // Set default configuration
954
- $arySortOrder = array(
955
- 'side' => array(
956
- 'overview' => array(__('Overview', 'wp-piwik'), 'day', 'yesterday'),
957
- 'seo' => array(__('SEO', 'wp-piwik'), 'day', 'yesterday'),
958
- 'pages' => array(__('Pages', 'wp-piwik'), 'day', 'yesterday'),
959
- 'keywords' => array(__('Keywords', 'wp-piwik'), 'day', 'yesterday', 10),
960
- 'websites' => array(__('Websites', 'wp-piwik'), 'day', 'yesterday', 10),
961
- 'plugins' => array(__('Plugins', 'wp-piwik'), 'day', 'yesterday'),
962
- 'search' => array(__('Site Search Keywords', 'wp-piwik'), 'day', 'yesterday', 10),
963
- 'noresult' => array(__('Site Search without Results', 'wp-piwik'), 'day', 'yesterday', 10),
964
- ),
965
- 'normal' => array(
966
- 'visitors' => array(__('Visitors', 'wp-piwik'), 'day', 'last30'),
967
- 'browsers' => array(__('Browser', 'wp-piwik'), 'day', 'yesterday'),
968
- 'browserdetails' => array(__('Browser Details', 'wp-piwik'), 'day', 'yesterday'),
969
- 'screens' => array(__('Resolution', 'wp-piwik'), 'day', 'yesterday'),
970
- 'systems' => array(__('Operating System', 'wp-piwik'), 'day', 'yesterday')
971
- )
972
- );
973
- // Don't show SEO stats if disabled
974
- if (!self::$settings->getGlobalOption('stats_seo'))
975
- unset($arySortOrder['side']['seo']);
976
-
977
- foreach ($arySortOrder as $strCol => $aryWidgets) {
978
- if (is_array($aryWidgets)) foreach ($aryWidgets as $strFile => $aryParams) {
979
- $aryDashboard[$strCol][$strFile] = array(
980
- 'params' => array(
981
- 'title' => (isset($aryParams[0])?$aryParams[0]:$strFile),
982
- 'period' => (isset($aryParams[1])?$aryParams[1]:''),
983
- 'date' => (isset($aryParams[2])?$aryParams[2]:''),
984
- 'limit' => (isset($aryParams[3])?$aryParams[3]:'')
985
- )
986
- );
987
- if (isset($_GET['date']) && preg_match('/^[0-9]{8}$/', $_GET['date']) && $strFile != 'visitors')
988
- $aryDashboard[$strCol][$strFile]['params']['date'] = $_GET['date'];
989
- elseif ($strFile != 'visitors')
990
- $aryDashboard[$strCol][$strFile]['params']['date'] = self::$settings->getGlobalOption('default_date');
991
- }
992
- }
993
- $intSideBoxCnt = $intContentBox = 0;
994
- foreach ($aryDashboard['side'] as $strFile => $aryConfig) {
995
- $intSideBoxCnt++;
996
- if (preg_match('/(\d{4})(\d{2})(\d{2})/', $aryConfig['params']['date'], $aryResult))
997
- $strDate = $aryResult[1]."-".$aryResult[2]."-".$aryResult[3];
998
- else $strDate = $aryConfig['params']['date'];
999
- add_meta_box(
1000
- 'wp-piwik_stats-sidebox-'.$intSideBoxCnt,
1001
- $aryConfig['params']['title'].' '.($aryConfig['params']['title']!='SEO'?__($strDate, 'wp-piwik'):''),
1002
- array(&$this, 'createDashboardWidget'),
1003
- $this->intStatsPage,
1004
- 'side',
1005
- 'core',
1006
- array('strFile' => $strFile, 'aryConfig' => $aryConfig)
1007
- );
1008
- }
1009
- foreach ($aryDashboard['normal'] as $strFile => $aryConfig) {
1010
- if (preg_match('/(\d{4})(\d{2})(\d{2})/', $aryConfig['params']['date'], $aryResult))
1011
- $strDate = $aryResult[1]."-".$aryResult[2]."-".$aryResult[3];
1012
- else $strDate = $aryConfig['params']['date'];
1013
- $intContentBox++;
1014
- add_meta_box(
1015
- 'wp-piwik_stats-contentbox-'.$intContentBox,
1016
- $aryConfig['params']['title'].' '.($aryConfig['params']['title']!='SEO'?__($strDate, 'wp-piwik'):''),
1017
- array(&$this, 'createDashboardWidget'),
1018
- $this->intStatsPage,
1019
- 'normal',
1020
- 'core',
1021
- array('strFile' => $strFile, 'aryConfig' => $aryConfig)
1022
- );
1023
- }
1024
- }
1025
-
1026
- // Open stats page as network admin
1027
- function showStatsNetwork() {
1028
- $this->bolNetwork = true;
1029
- $this->showStats();
1030
- }
1031
-
1032
- function showStats() {
1033
- // Disabled time limit if required
1034
- if (self::$settings->getGlobalOption('disable_timelimit') && self::$settings->getGlobalOption('disable_timelimit'))
1035
- set_time_limit(0);
1036
- //we need the global screen column value to be able to have a sidebar in WordPress 2.8
1037
- global $screen_layout_columns;
1038
- if (empty($screen_layout_columns)) $screen_layout_columns = 2;
1039
- /***************************************************************************/ ?>
1040
- <div id="wp-piwik-stats-general" class="wrap">
1041
- <?php screen_icon('options-general'); ?>
1042
- <h2><?php echo (self::$settings->getGlobalOption('plugin_display_name') == 'WP-Piwik'?'Piwik '.__('Statistics', 'wp-piwik'):self::$settings->getGlobalOption('plugin_display_name')); ?></h2>
1043
- <?php /************************************************************************/
1044
- if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin() && $this->bolNetwork) {
1045
- if (isset($_GET['wpmu_show_stats'])) {
1046
- switch_to_blog((int) $_GET['wpmu_show_stats']);
1047
- // TODO OPTIMIZE
1048
- } else {
1049
- $this->includeFile('settings/sitebrowser');
1050
- return;
1051
- }
1052
- echo '<p>'.__('Currently shown stats:').' <a href="'.get_bloginfo('url').'">'.(int) $_GET['wpmu_show_stats'].' - '.get_bloginfo('name').'</a>.'.' <a href="?page=wp-piwik_stats">Show site overview</a>.</p>'."\n";
1053
- echo '</form>'."\n";
1054
- }
1055
- /***************************************************************************/ ?>
1056
- <form action="admin-post.php" method="post">
1057
- <?php wp_nonce_field('wp-piwik_stats-general'); ?>
1058
- <?php wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false ); ?>
1059
- <?php wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false ); ?>
1060
- <input type="hidden" name="action" value="save_wp-piwik_stats_general" />
1061
- <div id="dashboard-widgets" class="metabox-holder columns-<?php echo $screen_layout_columns; ?><?php echo 2 <= $screen_layout_columns?' has-right-sidebar':''; ?>">
1062
- <div id='postbox-container-1' class='postbox-container'>
1063
- <?php $meta_boxes = do_meta_boxes($this->intStatsPage, 'normal', null); ?>
1064
- </div>
1065
-
1066
- <div id='postbox-container-2' class='postbox-container'>
1067
- <?php do_meta_boxes($this->intStatsPage, 'side', null); ?>
1068
- </div>
1069
-
1070
- <div id='postbox-container-3' class='postbox-container'>
1071
- <?php do_meta_boxes($this->intStatsPage, 'column3', null); ?>
1072
- </div>
1073
-
1074
- </div>
1075
- </form>
1076
- </div>
1077
- <script type="text/javascript">
1078
- //<![CDATA[
1079
- jQuery(document).ready( function($) {
1080
- // close postboxes that should be closed
1081
- $('.if-js-closed').removeClass('if-js-closed').addClass('closed');
1082
- // postboxes setup
1083
- postboxes.add_postbox_toggles('<?php echo $this->intStatsPage; ?>');
1084
- });
1085
- //]]>
1086
- </script>
1087
- <?php /************************************************************************/
1088
- if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
1089
- restore_current_blog();
1090
- }
1091
- }
1092
-
1093
- /* Stats page changes by POST submit
1094
- seen in Heiko Rabe's metabox demo plugin
1095
- http://tinyurl.com/5r5vnzs */
1096
- function onStatsPageSaveChanges() {
1097
- //user permission check
1098
- if ( !current_user_can('manage_options') )
1099
- wp_die( __('Cheatin&#8217; uh?') );
1100
- //cross check the given referer
1101
- check_admin_referer('wp-piwik_stats');
1102
- //process here your on $_POST validation and / or option saving
1103
- //lets redirect the post request into get request (you may add additional params at the url, if you need to show save results
1104
- wp_redirect($_POST['_wp_http_referer']);
1105
- }
1106
-
1107
- /**
1108
- * Add tabs to settings page
1109
- * See http://wp.smashingmagazine.com/2011/10/20/create-tabs-wordpress-settings-pages/
1110
- */
1111
- function showSettingsTabs($bolFull = true, $strCurr = 'homepage') {
1112
- $aryTabs = ($bolFull?array(
1113
- 'homepage' => __('Home','wp-piwik'),
1114
- 'piwik' => __('Piwik Settings','wp-piwik'),
1115
- 'tracking' => __('Tracking','wp-piwik'),
1116
- 'views' => __('Statistics','wp-piwik'),
1117
- 'support' => __('Support','wp-piwik'),
1118
- 'credits' => __('Credits','wp-piwik')
1119
- ):array(
1120
- 'piwik' => __('Piwik Settings','wp-piwik'),
1121
- 'support' => __('Support','wp-piwik'),
1122
- 'credits' => __('Credits','wp-piwik')
1123
- ));
1124
- if (empty($strCurr)) $strCurr = 'homepage';
1125
- elseif (!isset($aryTabs[$strCurr]) && $strCurr != 'sitebrowser') $strCurr = 'piwik';
1126
- echo '<div id="icon-themes" class="icon32"><br></div>';
1127
- echo '<h2 class="nav-tab-wrapper">';
1128
- foreach($aryTabs as $strTab => $strName) {
1129
- $strClass = ($strTab == $strCurr?' nav-tab-active':'');
1130
- echo '<a class="nav-tab'.$strClass.'" href="?page=wp-piwik/classes/WP_Piwik.php&tab='.$strTab.'">'.$strName.'</a>';
1131
- }
1132
- echo '</h2>';
1133
- return $strCurr;
1134
- }
1135
-
1136
- /**
1137
- * Apply & store new settings
1138
- */
1139
- function applySettings() {
1140
- $strTab = (isset($_GET['tab'])?$_GET['tab']:'homepage');
1141
- self::$logger->log('Apply changes: '.$strTab);
1142
- switch ($strTab) {
1143
- case 'views':
1144
- self::$settings->setGlobalOption('plugin_display_name', (!empty($_POST['wp-piwik_displayname'])?htmlentities($_POST['wp-piwik_displayname']):'WP-Piwk'));
1145
- self::$settings->setGlobalOption('dashboard_widget',(isset($_POST['wp-piwik_dbwidget'])?$_POST['wp-piwik_dbwidget']:0));
1146
- self::$settings->setGlobalOption('dashboard_chart',(isset($_POST['wp-piwik_dbchart'])?$_POST['wp-piwik_dbchart']:false));
1147
- self::$settings->setGlobalOption('dashboard_seo',(isset($_POST['wp-piwik_dbseo'])?$_POST['wp-piwik_dbseo']:false));
1148
- self::$settings->setGlobalOption('stats_seo',(isset($_POST['wp-piwik_statsseo'])?$_POST['wp-piwik_statsseo']:false));
1149
- self::$settings->setGlobalOption('piwik_shortcut', (isset($_POST['wp-piwik_piwiklink'])?$_POST['wp-piwik_piwiklink']:false));
1150
- self::$settings->setGlobalOption('default_date', (isset($_POST['wp-piwik_default_date'])?$_POST['wp-piwik_default_date']:'yesterday'));
1151
- self::$settings->setGlobalOption('capability_read_stats', (isset($_POST['wp-piwik_displayto'])?$_POST['wp-piwik_displayto']:array()));
1152
- self::$settings->setGlobalOption('disable_timelimit', (isset($_POST['wp-piwik_disabletimelimit'])?$_POST['wp-piwik_disabletimelimit']:false));
1153
- self::$settings->setGlobalOption('toolbar', (isset($_POST['wp-piwik_toolbar'])?$_POST['wp-piwik_toolbar']:false));
1154
- self::$settings->setGlobalOption('shortcodes', (isset($_POST['wp-piwik_shortcodes'])?$_POST['wp-piwik_shortcodes']:false));
1155
- self::$settings->setGlobalOption('perpost_stats', (isset($_POST['wp-piwik_perpost'])?$_POST['wp-piwik_perpost']:false));
1156
- break;
1157
- case 'tracking':
1158
- self::$settings->setGlobalOption('add_tracking_code', (isset($_POST['wp-piwik_addjs'])?$_POST['wp-piwik_addjs']:false));
1159
- self::$settings->setGlobalOption('track_404', (isset($_POST['wp-piwik_404'])?$_POST['wp-piwik_404']:false));
1160
- self::$settings->setGlobalOption('track_search', (isset($_POST['wp-piwik_search'])?$_POST['wp-piwik_search']:false));
1161
- self::$settings->setGlobalOption('track_mode', (isset($_POST['wp-piwik_trackingmode'])?(int)$_POST['wp-piwik_trackingmode']:0));
1162
- self::$settings->setGlobalOption('track_post', (isset($_POST['wp-piwik_reqpost'])?$_POST['wp-piwik_reqpost']:false));
1163
- self::$settings->setGlobalOption('track_proxy', (isset($_POST['wp-piwik_proxy'])?$_POST['wp-piwik_proxy']:false));
1164
- self::$settings->setGlobalOption('track_cdnurl', trim(isset($_POST['wp-piwik_cdnurl'])?$_POST['wp-piwik_cdnurl']:''));
1165
- self::$settings->setGlobalOption('track_cdnurlssl', trim(isset($_POST['wp-piwik_cdnurlssl'])?$_POST['wp-piwik_cdnurlssl']:self::$settings->getGlobalOption('track_cdnurl')));
1166
- self::$settings->setGlobalOption('track_noscript', (isset($_POST['wp-piwik_noscript'])?$_POST['wp-piwik_noscript']:false));
1167
- self::$settings->setGlobalOption('track_codeposition', (isset($_POST['wp-piwik_codeposition'])?$_POST['wp-piwik_codeposition']:'footer'));
1168
- self::$settings->setGlobalOption('track_nojavascript', (isset($_POST['wp-piwik_nojavascript'])?$_POST['wp-piwik_nojavascript']:false));
1169
- self::$settings->setGlobalOption('track_admin', (isset($_POST['wp-piwik_trackadmin'])?$_POST['wp-piwik_trackadmin']:false));
1170
- self::$settings->setGlobalOption('track_feed', (isset($_POST['wp-piwik_trackfeed'])?$_POST['wp-piwik_trackfeed']:false));
1171
- self::$settings->setGlobalOption('track_feed_goal', (isset($_POST['wp-piwik_trackfeed_goal'])&&!empty($_POST['wp-piwik_trackfeed_goal'])?(int)$_POST['wp-piwik_trackfeed_goal']:''));
1172
- self::$settings->setGlobalOption('track_feed_revenue', (isset($_POST['wp-piwik_trackfeed_revenue'])&&!empty($_POST['wp-piwik_trackfeed_revenue'])?(int)$_POST['wp-piwik_trackfeed_revenue']:''));
1173
- self::$settings->setGlobalOption('track_feed_campaign', (isset($_POST['wp-piwik_trackfeed_campaign'])?$_POST['wp-piwik_trackfeed_campaign']:'feed'));
1174
- self::$settings->setGlobalOption('track_feed_addcampaign', (isset($_POST['wp-piwik_trackfeed_addcampaign'])?$_POST['wp-piwik_trackfeed_addcampaign']:false));
1175
- self::$settings->setGlobalOption('track_datacfasync', (isset($_POST['wp-piwik_datacfasync'])?$_POST['wp-piwik_datacfasync']:false));
1176
- self::$settings->setGlobalOption('track_across', (isset($_POST['wp-piwik_track_across'])?$_POST['wp-piwik_track_across']:false));
1177
- self::$settings->setGlobalOption('add_post_annotations', (isset($_POST['wp-piwik_annotations'])?$_POST['wp-piwik_annotations']:false));
1178
- self::$settings->setGlobalOption('add_customvars_box', (isset($_POST['wp-piwik_customvars'])?$_POST['wp-piwik_customvars']:false));
1179
- self::$settings->setGlobalOption('capability_stealth', (isset($_POST['wp-piwik_filter'])?$_POST['wp-piwik_filter']:array()));
1180
- self::$settings->setGlobalOption('disable_cookies', (isset($_POST['wp-piwik_disable_cookies'])?$_POST['wp-piwik_disable_cookies']:false));
1181
- self::$settings->setGlobalOption('limit_cookies', (isset($_POST['wp-piwik_limit_cookies'])?$_POST['wp-piwik_limit_cookies']:false));
1182
- self::$settings->setGlobalOption('limit_cookies_visitor', (isset($_POST['wp-piwik_limit_cookies_visitor'])?(int)$_POST['wp-piwik_limit_cookies_visitor']:1209600));
1183
- self::$settings->setGlobalOption('limit_cookies_session', (isset($_POST['wp-piwik_limit_cookies_session'])?(int)$_POST['wp-piwik_limit_cookies_session']:0));
1184
- self::$settings->setOption('tracking_code', $this->callPiwikAPI('SitesManager.getJavascriptTag'));
1185
- break;
1186
- case 'piwik':
1187
- self::$settings->setGlobalOption('piwik_token', (isset($_POST['wp-piwik_token'])?$_POST['wp-piwik_token']:''));
1188
- self::$settings->setGlobalOption('piwik_url', self::checkURL((isset($_POST['wp-piwik_url'])?$_POST['wp-piwik_url']:'')));
1189
- self::$settings->setGlobalOption('piwik_path', (isset($_POST['wp-piwik_path']) && !empty($_POST['wp-piwik_path'])?realpath($_POST['wp-piwik_path']):''));
1190
- self::$settings->setGlobalOption('cache', (isset($_POST['wp-piwik_cache'])?$_POST['wp-piwik_cache']:false));
1191
- self::$settings->setGlobalOption('piwik_mode', (isset($_POST['wp-piwik_mode'])?$_POST['wp-piwik_mode']:'http'));
1192
- self::$settings->setGlobalOption('piwik_useragent', (isset($_POST['wp-piwik_useragent'])?$_POST['wp-piwik_useragent']:'php'));
1193
- self::$settings->setGlobalOption('connection_timeout', (isset($_POST['wp-piwik_timeout'])?(int)$_POST['wp-piwik_timeout']:5));
1194
- self::$settings->setGlobalOption('piwik_useragent_string', (isset($_POST['wp-piwik_useragent_string'])?$_POST['wp-piwik_useragent_string']:'WP-Piwik'));
1195
- self::$settings->setGlobalOption('disable_ssl_verify', (isset($_POST['wp-piwik_disable_ssl_verify'])?$_POST['wp-piwik_disable_ssl_verify']:false));
1196
- if (!self::$settings->checkNetworkActivation()) {
1197
- self::$settings->setGlobalOption('auto_site_config', (isset($_POST['wp-piwik_auto_site_config'])?$_POST['wp-piwik_auto_site_config']:false));
1198
- if (!self::$settings->getGlobalOption('auto_site_config'))
1199
- self::$settings->setOption('site_id', (isset($_POST['wp-piwik_siteid'])?$_POST['wp-piwik_siteid']:self::$settings->getOption('site_id')));
1200
- } else self::$settings->setGlobalOption('auto_site_config', true);
1201
- break;
1202
- }
1203
- if (self::$settings->getGlobalOption('auto_site_config') && self::isConfigured()) {
1204
- if (self::$settings->getGlobalOption('piwik_mode') == 'php' && !defined('PIWIK_INCLUDE_PATH'))
1205
- self::definePiwikConstants();
1206
- $aryReturn = $this->addPiwikSite();
1207
- self::$settings->getOption('tracking_code', $aryReturn['js']);
1208
- self::$settings->getOption('site_id', $aryReturn['id']);
1209
- }
1210
- self::$settings->setGlobalOption('last_settings_update', time());
1211
- }
1212
-
1213
- /**
1214
- * Check & prepare URL
1215
- */
1216
- static function checkURL($strURL) {
1217
- if (empty($strURL)) return '';
1218
- if (substr($strURL, -1, 1) != '/' && substr($strURL, -10, 10) != '/index.php')
1219
- $strURL .= '/';
1220
- return $strURL;
1221
- }
1222
-
1223
- /**
1224
- * Show settings page
1225
- */
1226
- function showSettings() {
1227
- // Define globals and get request vars
1228
- global $pagenow;
1229
- $strTab = (isset($_GET['tab'])?$_GET['tab']:'homepage');
1230
- // Show update message if stats saved
1231
- if (isset($_POST['wp-piwik_settings_submit']) && $_POST['wp-piwik_settings_submit'] == 'Y')
1232
- echo '<div id="message" class="updated fade"><p>'.__('Changes saved','wp-piwik').'</p></div>';
1233
- // Show settings page title
1234
- echo '<div class="wrap"><h2>'.self::$settings->getGlobalOption('plugin_display_name').' '.__('Settings', 'wp-piwik').'</h2>';
1235
- // Show tabs
1236
- $strTab = $this->showSettingsTabs(self::isConfigured(), $strTab);
1237
- if ($strTab != 'sitebrowser') {
1238
- /***************************************************************************/ ?>
1239
- <div class="wp-piwik-donate">
1240
- <p><strong><?php _e('Donate','wp-piwik'); ?></strong></p>
1241
- <p><?php _e('If you like WP-Piwik, you can support its development by a donation:', 'wp-piwik'); ?></p>
1242
- <div>
1243
- <script type="text/javascript">
1244
- var flattr_url = 'http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress';
1245
- </script>
1246
- <script src="http<?php echo (self::isSSL()?'s':''); ?>://api.flattr.com/button/load.js" type="text/javascript"></script>
1247
- </div>
1248
- <div>Paypal
1249
- <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
1250
- <input type="hidden" name="cmd" value="_s-xclick" />
1251
- <input type="hidden" name="hosted_button_id" value="6046779" />
1252
- <input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." />
1253
- <img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1" />
1254
- </form>
1255
- </div>
1256
- <div>
1257
- <a href="http://www.amazon.de/gp/registry/wishlist/111VUJT4HP1RA?reveal=unpurchased&amp;filter=all&amp;sort=priority&amp;layout=standard&amp;x=12&amp;y=14"><?php _e('My Amazon.de wishlist', 'wp-piwik'); ?></a>
1258
- </div>
1259
- <div>
1260
- <?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a href="http://wordpress.org/extend/plugins/wp-piwik/">WordPress.org Plugin Directory</a>.
1261
- </div>
1262
- </div>
1263
- <?php /***************************************************************************/
1264
- }
1265
- echo '<form class="'.($strTab != 'sitebrowser'?'wp-piwik-settings':'').'" method="post" action="'.admin_url(($pagenow == 'settings.php'?'network/':'').$pagenow.'?page=wp-piwik/classes/WP_Piwik.php&tab='.$strTab).'">';
1266
- echo '<input type="hidden" name="action" value="save_wp-piwik_settings" />';
1267
- wp_nonce_field('wp-piwik_settings');
1268
- // Show settings
1269
- if (($pagenow == 'options-general.php' || $pagenow == 'settings.php') && $_GET['page'] == 'wp-piwik/classes/WP_Piwik.php') {
1270
- echo '<table class="wp-piwik-form-table form-table">';
1271
- // Get tab contents
1272
- $this->includeFile('settings/'.$strTab);
1273
- // Show submit button
1274
- if (!in_array($strTab, array('homepage','credits','support','sitebrowser')))
1275
- echo '<tr><td><p class="submit" style="clear: both;padding:0;margin:0"><input type="submit" name="Submit" class="button-primary" value="'.__('Save settings', 'wp-piwik').'" /><input type="hidden" name="wp-piwik_settings_submit" value="Y" /></p></td></tr>';
1276
- echo '</table>';
1277
- }
1278
- // Close form
1279
- echo '</form></div>';
1280
- }
1281
-
1282
- /**
1283
- * Check if SSL is used
1284
- */
1285
- private static function isSSL() {
1286
- return (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] != 'off');
1287
- }
1288
-
1289
- /**
1290
- * Show an error message extended by a support site link
1291
- */
1292
- private static function showErrorMessage($strMessage) {
1293
- echo '<strong class="wp-piwik-error">'.__('An error occured', 'wp-piwik').':</strong> '.$strMessage.' [<a href="'.(self::$settings->checkNetworkActivation()?'network/settings':'options-general').'.php?page=wp-piwik/classes/WP_Piwik.php&tab=support">'.__('Support','wp-piwik').'</a>]';
1294
- }
1295
-
1296
- /**
1297
- * Read a RSS feed
1298
- */
1299
- private static function readRSSFeed($strFeedURL, $intCount = 5) {
1300
- $aryResult = array();
1301
- if (function_exists('simplexml_load_file') && !empty($strFeedURL)) {
1302
- $objXML = @simplexml_load_file($strFeedURL);
1303
- if (empty($strFeedURL) || !$objXML || !isset($objXML->channel[0]->item))
1304
- return array(array('title' => 'Can\'t read RSS feed.','url' => $strFeedURL));
1305
- foreach($objXML->channel[0]->item as $objItem) {
1306
- if( $intCount-- == 0 ) break;
1307
- $aryResult[] = array('title' => $objItem->title[0], 'url' => $objItem->link[0]);
1308
- }
1309
- }
1310
- return $aryResult;
1311
- }
1312
-
1313
- /**
1314
- * Execute test script
1315
- */
1316
- private static function loadTestscript() {
1317
- require_once('../debug/testscript.php');
1318
- }
1319
-
1320
- /**
1321
- * Get a blog's piwik ID
1322
- */
1323
- public static function getSiteID($intBlogID = null) {
1324
- $intResult = self::$settings->getOption('site_id');
1325
- if (self::$settings->checkNetworkActivation() && !empty($intBlogID)) {
1326
- $aryResult = get_blog_option($intBlogID, 'wp-piwik_settings');
1327
- $intResult = $aryResult['site_id'];
1328
- }
1329
- return (is_int($intResult)?$intResult:'n/a');
1330
- }
1331
-
1332
- public static function isConfigured() {
1333
- return (
1334
- self::$settings->getGlobalOption('piwik_token')
1335
- && (
1336
- (
1337
- (self::$settings->getGlobalOption('piwik_mode') == 'http') && (self::$settings->getGlobalOption('piwik_url'))
1338
- ) || (
1339
- (self::$settings->getGlobalOption('piwik_mode') == 'php') && (self::$settings->getGlobalOption('piwik_path'))
1340
- )
1341
- )
1342
- );
1343
- }
1344
-
1345
- private function isUpdated() {
1346
- return self::$settings->getGlobalOption('revision') && self::$settings->getGlobalOption('revision') < self::$intRevisionId;
1347
- }
1348
-
1349
- private function isConfigSubmitted() {
1350
- return isset($_POST['action']) && $_POST['action'] == 'save_wp-piwik_settings';
1351
- }
1352
-
1353
- private function isPHPMode() {
1354
- return self::$settings->getGlobalOption('piwik_mode') && self::$settings->getGlobalOption('piwik_mode') == 'php';
1355
- }
1356
-
1357
- private function isNetworkMode() {
1358
- return self::$settings->checkNetworkActivation();
1359
- }
1360
-
1361
- private function isDashboardActive() {
1362
- return self::$settings->getGlobalOption('dashboard_widget') || self::$settings->getGlobalOption('dashboard_chart') || self::$settings->getGlobalOption('dashboard_seo');
1363
- }
1364
-
1365
- private function isToolbarActive() {
1366
- return self::$settings->getGlobalOption('toolbar');
1367
- }
1368
-
1369
- private function isTrackingActive() {
1370
- return self::$settings->getGlobalOption('add_tracking_code');
1371
- }
1372
-
1373
- private function isAdminTrackingActive() {
1374
- return self::$settings->getGlobalOption('track_admin');
1375
- }
1376
-
1377
- private function isAddNoScriptCode() {
1378
- return self::$settings->getGlobalOption('track_noscript');
1379
- }
1380
-
1381
- private function isTrackFeed() {
1382
- return self::$settings->getGlobalOption('track_feed');
1383
- }
1384
-
1385
- private function isAddFeedCampaign() {
1386
- return self::$settings->getGlobalOption('track_feed_addcampaign');
1387
- }
1388
-
1389
- private function isAddShortcode() {
1390
- return self::$settings->getGlobalOption('shortcodes');
1391
- }
1392
-
1393
- private static function definePiwikConstants() {
1394
- define('PIWIK_INCLUDE_PATH', self::$settings->getGlobalOption('piwik_path'));
1395
- define('PIWIK_USER_PATH', self::$settings->getGlobalOption('piwik_path'));
1396
- define('PIWIK_ENABLE_DISPATCH', false);
1397
- define('PIWIK_ENABLE_ERROR_HANDLER', false);
1398
- define('PIWIK_ENABLE_SESSION_START', false);
1399
- }
1400
-
1401
- private function openLogger() {
1402
- switch (WP_PIWIK_ACTIVATE_LOGGER) {
1403
- case 2:
1404
- require_once('WP_Piwik_Logger_File.php');
1405
- self::$logger = new WP_Piwik_Logger_File(__CLASS__);
1406
- break;
1407
- default:
1408
- require_once('WP_Piwik_Logger_Dummy.php');
1409
- self::$logger = new WP_Piwik_Logger_Dummy(__CLASS__);
1410
- }
1411
- }
1412
-
1413
- private function closeLogger() {
1414
- self::$logger = null;
1415
- }
1416
-
1417
- private function openSettings() {
1418
- $this->includeFile('classes/WP_Piwik_Settings');
1419
- self::$settings = new WP_Piwik_Settings(self::$logger);
1420
- }
1421
-
1422
- private function subClassConfig() {
1423
- return array(
1424
- 'wp_piwik' => $this,
1425
- 'logger' => self::$logger,
1426
- 'settings' => self::$settings
1427
- );
1428
- }
1429
-
1430
- private function includeFile($strFile) {
1431
- self::$logger->log('Include '.$strFile.'.php');
1432
- if (file_exists(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$strFile.'.php'))
1433
- include(dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.$strFile.'.php');
1434
- }
1435
-
1436
- private function isHiddenUser() {
1437
- if (is_multisite())
1438
- foreach (self::$settings->getGlobalOption('capability_stealth') as $key => $val)
1439
- if ($val && current_user_can($key)) return true;
1440
- return current_user_can('wp-piwik_stealth');
1441
- }
1442
-
1443
- private function isCurrentTrackingCode() {
1444
- return (self::$settings->getOption('last_tracking_code_update') < self::$settings->getGlobalOption('last_settings_update'));
1445
- }
1446
-
1447
- function site_header() {
1448
- self::$logger->log('Using deprecated function site_header');
1449
- $this->addJavascriptCode();
1450
- }
1451
-
1452
- function site_footer() {
1453
- self::$logger->log('Using deprecated function site_footer');
1454
- $this->addNoscriptCode();
1455
- }
1456
-
1457
- private function onPostStatusTransition($newStatus, $oldStatus = 'false', $post = null) {
1458
- if ($newStatus == 'publish' && $oldStatus != 'publish' ) {
1459
- add_action('publish_post', array($this, 'addPiwikAnnotation'));
1460
- }
1461
- }
1462
-
1463
- }
1
+ <?php
2
+
3
+ /**
4
+ * The main WP-Piwik class configures, registers and manages the plugin
5
+ *
6
+ * @author Andr&eacute; Br&auml;kling <webmaster@braekling.de>
7
+ * @package WP_Piwik
8
+ */
9
+ class WP_Piwik {
10
+
11
+ /**
12
+ *
13
+ * @var Runtime environment variables
14
+ */
15
+ private static $revisionId = 2017101501, $version = '1.0.19', $blog_id, $pluginBasename = NULL, $logger, $settings, $request, $optionsPageId;
16
+
17
+ /**
18
+ * Constructor class to configure and register all WP-Piwik components
19
+ */
20
+ public function __construct() {
21
+ global $blog_id;
22
+ self::$blog_id = (isset ( $blog_id ) ? $blog_id : 'n/a');
23
+ $this->openLogger ();
24
+ $this->openSettings ();
25
+ $this->setup ();
26
+ $this->addFilters ();
27
+ $this->addActions ();
28
+ $this->addShortcodes ();
29
+ }
30
+
31
+ /**
32
+ * Destructor class to finish logging
33
+ */
34
+ public function __destruct() {
35
+ $this->closeLogger ();
36
+ }
37
+
38
+ /**
39
+ * Setup class to prepare settings and check for installation and update
40
+ */
41
+ private function setup() {
42
+ self::$pluginBasename = plugin_basename ( __FILE__ );
43
+ if (! $this->isInstalled ())
44
+ $this->installPlugin ();
45
+ elseif ($this->isUpdated ())
46
+ $this->updatePlugin ();
47
+ if ($this->isConfigSubmitted ())
48
+ $this->applySettings ();
49
+ self::$settings->save ();
50
+ }
51
+
52
+ /**
53
+ * Register WordPress actions
54
+ */
55
+ private function addActions() {
56
+ if ( is_admin () ) {
57
+ add_action ( 'admin_menu', array (
58
+ $this,
59
+ 'buildAdminMenu'
60
+ ) );
61
+ add_action ( 'admin_post_save_wp-piwik_stats', array (
62
+ $this,
63
+ 'onStatsPageSaveChanges'
64
+ ) );
65
+ add_action ( 'load-post.php', array (
66
+ $this,
67
+ 'addPostMetaboxes'
68
+ ) );
69
+ add_action ( 'load-post-new.php', array (
70
+ $this,
71
+ 'addPostMetaboxes'
72
+ ) );
73
+ if ($this->isNetworkMode ()) {
74
+ add_action ( 'network_admin_notices', array (
75
+ $this,
76
+ 'showNotices'
77
+ ) );
78
+ add_action ( 'network_admin_menu', array (
79
+ $this,
80
+ 'buildNetworkAdminMenu'
81
+ ) );
82
+ add_action ( 'update_site_option_blogname', array (
83
+ $this,
84
+ 'onBlogNameChange'
85
+ ) );
86
+ add_action ( 'update_site_option_siteurl', array (
87
+ $this,
88
+ 'onSiteUrlChange'
89
+ ) );
90
+ } else {
91
+ add_action ( 'admin_notices', array (
92
+ $this,
93
+ 'showNotices'
94
+ ) );
95
+ add_action ( 'update_option_blogname', array (
96
+ $this,
97
+ 'onBlogNameChange'
98
+ ) );
99
+ add_action ( 'update_option_siteurl', array (
100
+ $this,
101
+ 'onSiteUrlChange'
102
+ ) );
103
+ }
104
+ if ($this->isDashboardActive ())
105
+ add_action ( 'wp_dashboard_setup', array (
106
+ $this,
107
+ 'extendWordPressDashboard'
108
+ ) );
109
+ }
110
+ if ($this->isToolbarActive ()) {
111
+ add_action ( is_admin () ? 'admin_head' : 'wp_head', array (
112
+ $this,
113
+ 'loadToolbarRequirements'
114
+ ) );
115
+ add_action ( 'admin_bar_menu', array (
116
+ $this,
117
+ 'extendWordPressToolbar'
118
+ ), 1000 );
119
+ }
120
+ if ($this->isTrackingActive ()) {
121
+ if ( !is_admin () || $this->isAdminTrackingActive ()) {
122
+ $prefix = is_admin ()?'admin':'wp';
123
+ add_action ( self::$settings->getGlobalOption ( 'track_codeposition' ) == 'footer' ? $prefix.'_footer' : $prefix.'_head', array (
124
+ $this,
125
+ 'addJavascriptCode'
126
+ ) );
127
+ if (self::$settings->getGlobalOption ( 'dnsprefetch' ))
128
+ add_action ( $prefix.'_head', array (
129
+ $this,
130
+ 'addDNSPrefetchTag'
131
+ ) );
132
+ if ($this->isAddNoScriptCode ())
133
+ add_action ( $prefix.'_footer', array (
134
+ $this,
135
+ 'addNoscriptCode'
136
+ ) );
137
+ }
138
+ if (self::$settings->getGlobalOption ( 'add_post_annotations' ))
139
+ add_action ( 'transition_post_status', array (
140
+ $this,
141
+ 'addPiwikAnnotation'
142
+ ), 10, 3 );
143
+ }
144
+
145
+ }
146
+
147
+ /**
148
+ * Register WordPress filters
149
+ */
150
+ private function addFilters() {
151
+ if (is_admin()) {
152
+ add_filter ( 'plugin_row_meta', array (
153
+ $this,
154
+ 'setPluginMeta'
155
+ ), 10, 2 );
156
+ add_filter ( 'screen_layout_columns', array (
157
+ $this,
158
+ 'onScreenLayoutColumns'
159
+ ), 10, 2 );
160
+ } elseif ($this->isTrackingActive ()) {
161
+ if ($this->isTrackFeed ()) {
162
+ add_filter ( 'the_excerpt_rss', array (
163
+ $this,
164
+ 'addFeedTracking'
165
+ ) );
166
+ add_filter ( 'the_content', array (
167
+ $this,
168
+ 'addFeedTracking'
169
+ ) );
170
+ }
171
+ if ($this->isAddFeedCampaign ()) {
172
+ add_filter ( 'post_link', array (
173
+ $this,
174
+ 'addFeedCampaign'
175
+ ) );
176
+ }
177
+ if ($this->isCrossDomainLinkingEnabled ()) {
178
+ add_filter ( 'wp_redirect', array (
179
+ $this,
180
+ 'forwardCrossDomainVisitorId'
181
+ ) );
182
+ }
183
+ }
184
+ }
185
+
186
+ /**
187
+ * Register WordPress shortcodes
188
+ */
189
+ private function addShortcodes() {
190
+ if ($this->isAddShortcode ())
191
+ add_shortcode ( 'wp-piwik', array (
192
+ $this,
193
+ 'shortcode'
194
+ ) );
195
+ }
196
+
197
+ /**
198
+ * Install WP-Piwik for the first time
199
+ */
200
+ private function installPlugin($isUpdate = false) {
201
+ self::$logger->log ( 'Running WP-Piwik installation' );
202
+ if (! $isUpdate)
203
+ $this->addNotice ( 'install', sprintf ( __ ( '%s %s installed.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$version ), __ ( 'Next you should connect to Piwik', 'wp-piwik' ) );
204
+ self::$settings->setGlobalOption ( 'revision', self::$revisionId );
205
+ self::$settings->setGlobalOption ( 'last_settings_update', time () );
206
+ }
207
+
208
+ /**
209
+ * Uninstall WP-Piwik
210
+ */
211
+ public static function uninstallPlugin() {
212
+ self::$logger->log ( 'Running WP-Piwik uninstallation' );
213
+ if (! defined ( 'WP_UNINSTALL_PLUGIN' ))
214
+ exit ();
215
+ $this->deleteWordPressOption ( 'wp-piwik-notices' );
216
+ self::$settings->resetSettings ( true );
217
+ }
218
+
219
+ /**
220
+ * Update WP-Piwik
221
+ */
222
+ private function updatePlugin() {
223
+ self::$logger->log ( 'Upgrade WP-Piwik to ' . self::$version );
224
+ $patches = glob ( dirname ( __FILE__ ) . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'update' . DIRECTORY_SEPARATOR . '*.php' );
225
+ $isPatched = false;
226
+ if (is_array ( $patches )) {
227
+ sort ( $patches );
228
+ foreach ( $patches as $patch ) {
229
+ $patchVersion = ( int ) pathinfo ( $patch, PATHINFO_FILENAME );
230
+ if ($patchVersion && self::$settings->getGlobalOption ( 'revision' ) < $patchVersion) {
231
+ self::includeFile ( 'update' . DIRECTORY_SEPARATOR . $patchVersion );
232
+ $isPatched = true;
233
+ }
234
+ }
235
+ }
236
+ if ((self::$settings->getGlobalOption('update_notice') == 'enabled') || ((self::$settings->getGlobalOption('update_notice') == 'script') && $isPatched))
237
+ $this->addNotice ( 'update', sprintf ( __ ( '%s updated to %s.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$version ), __ ( 'Please validate your configuration', 'wp-piwik' ) );
238
+ $this->installPlugin ( true );
239
+ }
240
+
241
+ /**
242
+ * Define a notice
243
+ *
244
+ * @param string $type
245
+ * identifier
246
+ * @param string $subject
247
+ * notice headline
248
+ * @param string $text
249
+ * notice content
250
+ * @param boolean $stay
251
+ * set to true if the message should persist (default: false)
252
+ */
253
+ private function addNotice($type, $subject, $text, $stay = false) {
254
+ $notices = $this->getWordPressOption ( 'wp-piwik-notices', array () );
255
+ $notices [$type] = array (
256
+ 'subject' => $subject,
257
+ 'text' => $text,
258
+ 'stay' => $stay
259
+ );
260
+ $this->updateWordPressOption ( 'wp-piwik-notices', $notices );
261
+ }
262
+
263
+ /**
264
+ * Show all notices defined previously
265
+ *
266
+ * @see addNotice()
267
+ */
268
+ public function showNotices() {
269
+ $link = sprintf ( '<a href="' . $this->getSettingsURL () . '">%s</a>', __ ( 'Settings', 'wp-piwik' ) );
270
+ if ($notices = $this->getWordPressOption ( 'wp-piwik-notices' )) {
271
+ foreach ( $notices as $type => $notice ) {
272
+ printf ( '<div class="updated fade"><p>%s <strong>%s:</strong> %s: %s</p></div>', $notice ['subject'], __ ( 'Important', 'wp-piwik' ), $notice ['text'], $link );
273
+ if (! $notice ['stay'])
274
+ unset ( $notices [$type] );
275
+ }
276
+ }
277
+ $this->updateWordPressOption ( 'wp-piwik-notices', $notices );
278
+ }
279
+
280
+ /**
281
+ * Get the settings page URL
282
+ *
283
+ * @return string settings page URL
284
+ */
285
+ private function getSettingsURL() {
286
+ return (self::$settings->checkNetworkActivation () ? 'settings' : 'options-general') . '.php?page=' . self::$pluginBasename;
287
+ }
288
+
289
+ /**
290
+ * Echo javascript tracking code
291
+ */
292
+ public function addJavascriptCode() {
293
+ if ($this->isHiddenUser ()) {
294
+ self::$logger->log ( 'Do not add tracking code to site (user should not be tracked) Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
295
+ return;
296
+ }
297
+ $trackingCode = new WP_Piwik\TrackingCode ( $this );
298
+ $trackingCode->is404 = (is_404 () && self::$settings->getGlobalOption ( 'track_404' ));
299
+ $trackingCode->isUsertracking = self::$settings->getGlobalOption ( 'track_user_id' ) != 'disabled';
300
+ $trackingCode->isSearch = (is_search () && self::$settings->getGlobalOption ( 'track_search' ));
301
+ self::$logger->log ( 'Add tracking code. Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
302
+ if ($this->isNetworkMode () && self::$settings->getGlobalOption ( 'track_mode' ) == 'manually') {
303
+ $siteId = $this->getPiwikSiteId ();
304
+ if ($siteId != 'n/a')
305
+ echo str_replace ( '{ID}', $siteId, $trackingCode->getTrackingCode () );
306
+ else
307
+ echo '<!-- Site will be created and tracking code added on next request -->';
308
+ } else
309
+ echo $trackingCode->getTrackingCode ();
310
+ }
311
+
312
+ /**
313
+ * Echo DNS prefetch tag
314
+ */
315
+ public function addDNSPrefetchTag() {
316
+ echo '<link rel="dns-prefetch" href="'.$this->getPiwikDomain().'" />';
317
+ }
318
+
319
+ /**
320
+ * Get Piwik Domain
321
+ */
322
+ public function getPiwikDomain() {
323
+ switch (self::$settings->getGlobalOption ( 'piwik_mode' )) {
324
+ case 'php' :
325
+ return '//' . parse_url(self::$settings->getGlobalOption ( 'proxy_url' ), PHP_URL_HOST);
326
+ case 'cloud' :
327
+ return '//' . self::$settings->getGlobalOption ( 'piwik_user' ) . '.innocraft.cloud';
328
+ default :
329
+ return '//' . parse_url(self::$settings->getGlobalOption ( 'piwik_url' ), PHP_URL_HOST);
330
+ }
331
+ }
332
+
333
+ /**
334
+ * Echo noscript tracking code
335
+ */
336
+ public function addNoscriptCode() {
337
+ if (self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy')
338
+ return;
339
+ if ($this->isHiddenUser ()) {
340
+ self::$logger->log ( 'Do not add noscript code to site (user should not be tracked) Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
341
+ return;
342
+ }
343
+ self::$logger->log ( 'Add noscript code. Blog ID: ' . self::$blog_id . ' Site ID: ' . self::$settings->getOption ( 'site_id' ) );
344
+ echo self::$settings->getOption ( 'noscript_code' ) . "\n";
345
+ }
346
+
347
+ /**
348
+ * Register post view meta boxes
349
+ */
350
+ public function addPostMetaboxes() {
351
+ if (self::$settings->getGlobalOption ( 'add_customvars_box' )) {
352
+ add_action ( 'add_meta_boxes', array (
353
+ new WP_Piwik\Template\MetaBoxCustomVars ( $this, self::$settings ),
354
+ 'addMetabox'
355
+ ) );
356
+ add_action ( 'save_post', array (
357
+ new WP_Piwik\Template\MetaBoxCustomVars ( $this, self::$settings ),
358
+ 'saveCustomVars'
359
+ ), 10, 2 );
360
+ }
361
+ if (self::$settings->getGlobalOption ( 'perpost_stats' )) {
362
+ add_action ( 'add_meta_boxes', array (
363
+ $this,
364
+ 'onloadPostPage'
365
+ ) );
366
+ }
367
+ }
368
+
369
+ /**
370
+ * Register admin menu components
371
+ */
372
+ public function buildAdminMenu() {
373
+ if (self::isConfigured ()) {
374
+ $cap = 'wp-piwik_read_stats';
375
+ if (self::$settings->checkNetworkActivation ()) {
376
+ global $current_user;
377
+ $userRoles = $current_user->roles;
378
+ $allowed = self::$settings->getGlobalOption ( 'capability_read_stats' );
379
+ if (is_array($userRoles) && is_array($allowed))
380
+ foreach ($userRoles as $userRole)
381
+ if (isset( $allowed[$userRole] ) && $allowed[$userRole]) {
382
+ $cap = 'read';
383
+ break;
384
+ }
385
+ }
386
+ $statsPage = new WP_Piwik\Admin\Statistics ( $this, self::$settings );
387
+ $this->statsPageId = add_dashboard_page ( __ ( 'Piwik Statistics', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), $cap, 'wp-piwik_stats', array (
388
+ $statsPage,
389
+ 'show'
390
+ ) );
391
+ $this->loadAdminStatsHeader ( $this->statsPageId, $statsPage );
392
+ }
393
+ if (! self::$settings->checkNetworkActivation ()) {
394
+ $optionsPage = new WP_Piwik\Admin\Settings ( $this, self::$settings );
395
+ self::$optionsPageId = add_options_page ( self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), 'activate_plugins', __FILE__, array (
396
+ $optionsPage,
397
+ 'show'
398
+ ) );
399
+ $this->loadAdminSettingsHeader ( self::$optionsPageId, $optionsPage );
400
+ }
401
+ }
402
+
403
+ /**
404
+ * Register network admin menu components
405
+ */
406
+ public function buildNetworkAdminMenu() {
407
+ if (self::isConfigured ()) {
408
+ $statsPage = new WP_Piwik\Admin\Network ( $this, self::$settings );
409
+ $this->statsPageId = add_dashboard_page ( __ ( 'Piwik Statistics', 'wp-piwik' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), 'manage_sites', 'wp-piwik_stats', array (
410
+ $statsPage,
411
+ 'show'
412
+ ) );
413
+ $this->loadAdminStatsHeader ( $this->statsPageId, $statsPage );
414
+ }
415
+ $optionsPage = new WP_Piwik\Admin\Settings ( $this, self::$settings );
416
+ self::$optionsPageId = add_submenu_page ( 'settings.php', self::$settings->getGlobalOption ( 'plugin_display_name' ), self::$settings->getGlobalOption ( 'plugin_display_name' ), 'manage_sites', __FILE__, array (
417
+ $optionsPage,
418
+ 'show'
419
+ ) );
420
+ $this->loadAdminSettingsHeader ( self::$optionsPageId, $optionsPage );
421
+ }
422
+
423
+ /**
424
+ * Register admin header extensions for stats page
425
+ *
426
+ * @param $optionsPageId options
427
+ * page id
428
+ * @param $optionsPage options
429
+ * page object
430
+ */
431
+ public function loadAdminStatsHeader($statsPageId, $statsPage) {
432
+ add_action ( 'admin_print_scripts-' . $statsPageId, array (
433
+ $statsPage,
434
+ 'printAdminScripts'
435
+ ) );
436
+ add_action ( 'admin_print_styles-' . $statsPageId, array (
437
+ $statsPage,
438
+ 'printAdminStyles'
439
+ ) );
440
+ add_action ( 'admin_head-' . $statsPageId, array (
441
+ $statsPage,
442
+ 'extendAdminHeader'
443
+ ) );
444
+ add_action ( 'load-' . $statsPageId, array (
445
+ $this,
446
+ 'onloadStatsPage'
447
+ ) );
448
+ }
449
+
450
+ /**
451
+ * Register admin header extensions for settings page
452
+ *
453
+ * @param $optionsPageId options
454
+ * page id
455
+ * @param $optionsPage options
456
+ * page object
457
+ */
458
+ public function loadAdminSettingsHeader($optionsPageId, $optionsPage) {
459
+ add_action ( 'admin_head-' . $optionsPageId, array (
460
+ $optionsPage,
461
+ 'extendAdminHeader'
462
+ ) );
463
+ add_action ( 'admin_print_styles-' . $optionsPageId, array (
464
+ $optionsPage,
465
+ 'printAdminStyles'
466
+ ) );
467
+ }
468
+
469
+ /**
470
+ * Register WordPress dashboard widgets
471
+ */
472
+ public function extendWordPressDashboard() {
473
+ if (current_user_can ( 'wp-piwik_read_stats' )) {
474
+ if (self::$settings->getGlobalOption ( 'dashboard_widget' ) != 'disabled')
475
+ new WP_Piwik\Widget\Overview ( $this, self::$settings, 'dashboard', 'side', 'default', array (
476
+ 'date' => self::$settings->getGlobalOption ( 'dashboard_widget' ),
477
+ 'period' => 'day'
478
+ ) );
479
+ if (self::$settings->getGlobalOption ( 'dashboard_chart' ))
480
+ new WP_Piwik\Widget\Chart ( $this, self::$settings );
481
+ if (self::$settings->getGlobalOption ( 'dashboard_ecommerce' ))
482
+ new WP_Piwik\Widget\Ecommerce ( $this, self::$settings );
483
+ if (self::$settings->getGlobalOption ( 'dashboard_seo' ))
484
+ new WP_Piwik\Widget\Seo ( $this, self::$settings );
485
+ }
486
+ }
487
+
488
+ /**
489
+ * Register WordPress toolbar components
490
+ */
491
+ public function extendWordPressToolbar($toolbar) {
492
+ if (current_user_can ( 'wp-piwik_read_stats' ) && is_admin_bar_showing ()) {
493
+ $id = WP_Piwik\Request::register ( 'VisitsSummary.getUniqueVisitors', array (
494
+ 'period' => 'day',
495
+ 'date' => 'last30'
496
+ ) );
497
+ $unique = $this->request ( $id );
498
+ $url = is_network_admin () ? $this->getSettingsURL () : false;
499
+ $content = is_network_admin () ? __('Configure WP-Piwik', 'wp-piwik') : '';
500
+ // Leave if result array does contain a message instead of valid data
501
+ if (isset($unique['result']))
502
+ $content .= '<!-- '.$unique['result'].': '.($unique['message']?$unique['message']:'...').' -->';
503
+ elseif (is_array ( $unique ) ) {
504
+ $content = "<script type='text/javascript'>var \$jSpark = jQuery.noConflict();\$jSpark(function() {var piwikSparkVals=[" . implode ( ',', $unique ) . "];\$jSpark('.wp-piwik_dynbar').sparkline(piwikSparkVals, {type: 'bar', barColor: '#ccc', barWidth:2});});</script><span class='wp-piwik_dynbar'>Loading...</span>";
505
+ $url = $this->getStatsURL ();
506
+ }
507
+ $toolbar->add_menu ( array (
508
+ 'id' => 'wp-piwik_stats',
509
+ 'title' => $content,
510
+ 'href' => $url
511
+ ) );
512
+ }
513
+ }
514
+
515
+ /**
516
+ * Add plugin meta data
517
+ *
518
+ * @param array $links
519
+ * list of already defined plugin meta data
520
+ * @param string $file
521
+ * handled file
522
+ * @return array complete list of plugin meta data
523
+ */
524
+ public function setPluginMeta($links, $file) {
525
+ if ($file == 'wp-piwik/wp-piwik.php' && (!$this->isNetworkMode () || is_network_admin()) )
526
+ return array_merge ( $links, array (
527
+ sprintf ( '<a href="%s">%s</a>', self::getSettingsURL (), __ ( 'Settings', 'wp-piwik' ) )
528
+ ) );
529
+ return $links;
530
+ }
531
+
532
+ /**
533
+ * Prepare toolbar widget requirements
534
+ */
535
+ public function loadToolbarRequirements() {
536
+ if (is_admin_bar_showing ()) {
537
+ wp_enqueue_script ( 'wp-piwik-sparkline', $this->getPluginURL () . 'js/sparkline/jquery.sparkline.min.js', array (
538
+ 'jquery'
539
+ ), self::$version );
540
+ wp_enqueue_style ( 'wp-piwik', $this->getPluginURL () . 'css/wp-piwik-spark.css', array (), $this->getPluginVersion () );
541
+ }
542
+ }
543
+
544
+ /**
545
+ * Add tracking pixels to feed content
546
+ *
547
+ * @param string $content
548
+ * post content
549
+ * @return string post content extended by tracking pixel
550
+ */
551
+ public function addFeedTracking($content) {
552
+ global $post;
553
+ if (is_feed ()) {
554
+ self::$logger->log ( 'Add tracking image to feed entry.' );
555
+ if (! self::$settings->getOption ( 'site_id' )) {
556
+ $siteId = $this->requestPiwikSiteId ();
557
+ if ($siteId != 'n/a')
558
+ self::$settings->setOption ( 'site_id', $siteId );
559
+ else
560
+ return false;
561
+ }
562
+ $title = the_title ( null, null, false );
563
+ $posturl = get_permalink ( $post->ID );
564
+ $urlref = get_bloginfo ( 'rss2_url' );
565
+ if (self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy')
566
+ $url = plugins_url ( 'wp-piwik' ) . '/proxy/piwik.php';
567
+ else {
568
+ $url = self::$settings->getGlobalOption ( 'piwik_url' );
569
+ if (substr($url, -10, 10) == '/index.php')
570
+ $url = str_replace('/index.php', '/piwik.php', $url);
571
+ else
572
+ $url .= 'piwik.php';
573
+ }
574
+ $trackingImage = $url . '?idsite=' . self::$settings->getOption ( 'site_id' ) . '&amp;rec=1&amp;url=' . urlencode ( $posturl ) . '&amp;action_name=' . urlencode ( $title ) . '&amp;urlref=' . urlencode ( $urlref );
575
+ $content .= '<img src="' . $trackingImage . '" style="border:0;width:0;height:0" width="0" height="0" alt="" />';
576
+ }
577
+ return $content;
578
+ }
579
+
580
+ /**
581
+ * Add a campaign parameter to feed permalink
582
+ *
583
+ * @param string $permalink
584
+ * permalink
585
+ * @return string permalink extended by campaign parameter
586
+ */
587
+ public function addFeedCampaign($permalink) {
588
+ global $post;
589
+ if (is_feed ()) {
590
+ self::$logger->log ( 'Add campaign to feed permalink.' );
591
+ $sep = (strpos ( $permalink, '?' ) === false ? '?' : '&');
592
+ $permalink .= $sep . 'pk_campaign=' . urlencode ( self::$settings->getGlobalOption ( 'track_feed_campaign' ) ) . '&pk_kwd=' . urlencode ( $post->post_name );
593
+ }
594
+ return $permalink;
595
+ }
596
+
597
+ /**
598
+ * Forwards the cross domain parameter pk_vid if the URL parameter is set and a user is about to be redirected.
599
+ * When another website links to WooCommerce with a pk_vid parameter, and WooCommerce redirects the user to another
600
+ * URL, the pk_vid parameter would get lost and the visitorId would later not be applied by the tracking code
601
+ * due to the lost pk_vid URL parameter. If the URL parameter is set, we make sure to forward this parameter.
602
+ *
603
+ * @param string $location
604
+ *
605
+ * @return string location extended by pk_vid URL parameter if the URL parameter is set
606
+ */
607
+ public function forwardCrossDomainVisitorId($location) {
608
+
609
+ if (!empty($_GET['pk_vid'])
610
+ && preg_match('/^[a-zA-Z0-9]{24,48}$/', $_GET['pk_vid'])) {
611
+ // currently, the pk_vid parameter is 32 characters long, but it may vary over time.
612
+ $location = add_query_arg( 'pk_vid', $_GET['pk_vid'], $location );
613
+ }
614
+
615
+ return $location;
616
+ }
617
+
618
+ /**
619
+ * Apply settings update
620
+ *
621
+ * @return boolean settings update applied
622
+ */
623
+ private function applySettings() {
624
+ self::$settings->applyChanges ( $_POST ['wp-piwik'] );
625
+ if (self::$settings->getGlobalOption ( 'auto_site_config' ) && self::isConfigured ()) {
626
+ if ($this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
627
+ self::definePiwikConstants ();
628
+ $siteId = $this->getPiwikSiteId ();
629
+ $trackingCode = $this->updateTrackingCode ( $siteId );
630
+ self::$settings->setOption ( 'site_id', $siteId );
631
+ }
632
+ self::$settings->setGlobalOption ( 'revision', self::$revisionId );
633
+ self::$settings->setGlobalOption ( 'last_settings_update', time () );
634
+ return true;
635
+ }
636
+
637
+ /**
638
+ * Check if WP-Piwik is configured
639
+ *
640
+ * @return boolean Is WP-Piwik configured?
641
+ */
642
+ public static function isConfigured() {
643
+ return (self::$settings->getGlobalOption ( 'piwik_token' ) && (self::$settings->getGlobalOption ( 'piwik_mode' ) != 'disabled') && (((self::$settings->getGlobalOption ( 'piwik_mode' ) == 'http') && (self::$settings->getGlobalOption ( 'piwik_url' ))) || ((self::$settings->getGlobalOption ( 'piwik_mode' ) == 'php') && (self::$settings->getGlobalOption ( 'piwik_path' ))) || ((self::$settings->getGlobalOption ( 'piwik_mode' ) == 'cloud') && (self::$settings->getGlobalOption ( 'piwik_user' )))));
644
+ }
645
+
646
+ /**
647
+ * Check if WP-Piwik was updated
648
+ *
649
+ * @return boolean Was WP-Piwik updated?
650
+ */
651
+ private function isUpdated() {
652
+ return self::$settings->getGlobalOption ( 'revision' ) && self::$settings->getGlobalOption ( 'revision' ) < self::$revisionId;
653
+ }
654
+
655
+ /**
656
+ * Check if WP-Piwik is already installed
657
+ *
658
+ * @return boolean Is WP-Piwik installed?
659
+ */
660
+ private function isInstalled() {
661
+ $oldSettings = $this->getWordPressOption ( 'wp-piwik_global-settings', false );
662
+ if ($oldSettings && isset( $oldSettings['revision'] )) {
663
+ self::log('Save old settings');
664
+ self::$settings->setGlobalOption ( 'revision', $oldSettings['revision'] );
665
+ } else self::log( 'Current revision '.self::$settings->getGlobalOption ( 'revision' ) );
666
+ return self::$settings->getGlobalOption ( 'revision' ) > 0;
667
+ }
668
+
669
+ /**
670
+ * Check if new settings were submitted
671
+ *
672
+ * @return boolean Are new settings submitted?
673
+ */
674
+ public static function isConfigSubmitted() {
675
+ return isset ( $_POST ) && isset ( $_POST ['wp-piwik'] ) && self::isValidOptionsPost();
676
+ }
677
+
678
+ /**
679
+ * Check if PHP mode is chosen
680
+ *
681
+ * @return Is PHP mode chosen?
682
+ */
683
+ public function isPHPMode() {
684
+ return self::$settings->getGlobalOption ( 'piwik_mode' ) && self::$settings->getGlobalOption ( 'piwik_mode' ) == 'php';
685
+ }
686
+
687
+ /**
688
+ * Check if WordPress is running in network mode
689
+ *
690
+ * @return boolean Is WordPress running in network mode?
691
+ */
692
+ public function isNetworkMode() {
693
+ return self::$settings->checkNetworkActivation ();
694
+ }
695
+
696
+ /**
697
+ * Check if a WP-Piwik dashboard widget is enabled
698
+ *
699
+ * @return boolean Is a dashboard widget enabled?
700
+ */
701
+ private function isDashboardActive() {
702
+ return self::$settings->getGlobalOption ( 'dashboard_widget' ) || self::$settings->getGlobalOption ( 'dashboard_chart' ) || self::$settings->getGlobalOption ( 'dashboard_seo' );
703
+ }
704
+
705
+ /**
706
+ * Check if a WP-Piwik toolbar widget is enabled
707
+ *
708
+ * @return boolean Is a toolbar widget enabled?
709
+ */
710
+ private function isToolbarActive() {
711
+ return self::$settings->getGlobalOption ( 'toolbar' );
712
+ }
713
+
714
+ /**
715
+ * Check if WP-Piwik tracking code insertion is enabled
716
+ *
717
+ * @return boolean Insert tracking code?
718
+ */
719
+ private function isTrackingActive() {
720
+ return self::$settings->getGlobalOption ( 'track_mode' ) != 'disabled';
721
+ }
722
+
723
+ /**
724
+ * Check if admin tracking is enabled
725
+ *
726
+ * @return boolean Is admin tracking enabled?
727
+ */
728
+ private function isAdminTrackingActive() {
729
+ return self::$settings->getGlobalOption ( 'track_admin' ) && is_admin ();
730
+ }
731
+
732
+ /**
733
+ * Check if WP-Piwik noscript code insertion is enabled
734
+ *
735
+ * @return boolean Insert noscript code?
736
+ */
737
+ private function isAddNoScriptCode() {
738
+ return self::$settings->getGlobalOption ( 'track_noscript' );
739
+ }
740
+
741
+ /**
742
+ * Check if feed tracking is enabled
743
+ *
744
+ * @return boolean Is feed tracking enabled?
745
+ */
746
+ private function isTrackFeed() {
747
+ return self::$settings->getGlobalOption ( 'track_feed' );
748
+ }
749
+
750
+ /**
751
+ * Check if feed permalinks get a campaign parameter
752
+ *
753
+ * @return boolean Add campaign parameter to feed permalinks?
754
+ */
755
+ private function isAddFeedCampaign() {
756
+ return self::$settings->getGlobalOption ( 'track_feed_addcampaign' );
757
+ }
758
+
759
+ /**
760
+ * Check if feed permalinks get a campaign parameter
761
+ *
762
+ * @return boolean Add campaign parameter to feed permalinks?
763
+ */
764
+ private function isCrossDomainLinkingEnabled() {
765
+ return self::$settings->getGlobalOption ( 'track_crossdomain_linking' );
766
+ }
767
+
768
+ /**
769
+ * Check if WP-Piwik shortcodes are enabled
770
+ *
771
+ * @return boolean Are shortcodes enabled?
772
+ */
773
+ private function isAddShortcode() {
774
+ return self::$settings->getGlobalOption ( 'shortcodes' );
775
+ }
776
+
777
+ /**
778
+ * Define Piwik constants for PHP reporting API
779
+ */
780
+ public static function definePiwikConstants() {
781
+ if (! defined ( 'PIWIK_INCLUDE_PATH' )) {
782
+ //@header('Content-type: text/html');
783
+ define ( 'PIWIK_INCLUDE_PATH', self::$settings->getGlobalOption ( 'piwik_path' ) );
784
+ define ( 'PIWIK_USER_PATH', self::$settings->getGlobalOption ( 'piwik_path' ) );
785
+ define ( 'PIWIK_ENABLE_DISPATCH', false );
786
+ define ( 'PIWIK_ENABLE_ERROR_HANDLER', false );
787
+ define ( 'PIWIK_ENABLE_SESSION_START', false );
788
+ }
789
+ }
790
+
791
+ /**
792
+ * Start chosen logging method
793
+ */
794
+ private function openLogger() {
795
+ switch (WP_PIWIK_ACTIVATE_LOGGER) {
796
+ case 1 :
797
+ self::$logger = new WP_Piwik\Logger\Screen ( __CLASS__ );
798
+ break;
799
+ case 2 :
800
+ self::$logger = new WP_Piwik\Logger\File ( __CLASS__ );
801
+ break;
802
+ default :
803
+ self::$logger = new WP_Piwik\Logger\Dummy ( __CLASS__ );
804
+ }
805
+ }
806
+
807
+ /**
808
+ * Log a message
809
+ *
810
+ * @param string $message
811
+ * logger message
812
+ */
813
+ public static function log($message) {
814
+ self::$logger->log ( $message );
815
+ }
816
+
817
+ /**
818
+ * End logging
819
+ */
820
+ private function closeLogger() {
821
+ self::$logger = null;
822
+ }
823
+
824
+ /**
825
+ * Load WP-Piwik settings
826
+ */
827
+ private function openSettings() {
828
+ self::$settings = new WP_Piwik\Settings ( $this, self::$logger );
829
+ if (! $this->isConfigSubmitted () && $this->isPHPMode () && ! defined ( 'PIWIK_INCLUDE_PATH' ))
830
+ self::definePiwikConstants ();
831
+ }
832
+
833
+ /**
834
+ * Include a WP-Piwik file
835
+ */
836
+ private function includeFile($strFile) {
837
+ self::$logger->log ( 'Include ' . $strFile . '.php' );
838
+ if (WP_PIWIK_PATH . $strFile . '.php')
839
+ include (WP_PIWIK_PATH . $strFile . '.php');
840
+ }
841
+
842
+ /**
843
+ * Check if user should not be tracked
844
+ *
845
+ * @return boolean Do not track user?
846
+ */
847
+ private function isHiddenUser() {
848
+ if (is_multisite ())
849
+ foreach ( self::$settings->getGlobalOption ( 'capability_stealth' ) as $key => $val )
850
+ if ($val && current_user_can ( $key ))
851
+ return true;
852
+ return current_user_can ( 'wp-piwik_stealth' );
853
+ }
854
+
855
+ /**
856
+ * Check if tracking code is up to date
857
+ *
858
+ * @return boolean Is tracking code up to date?
859
+ */
860
+ public function isCurrentTrackingCode() {
861
+ return (self::$settings->getOption ( 'last_tracking_code_update' ) && self::$settings->getOption ( 'last_tracking_code_update' ) > self::$settings->getGlobalOption ( 'last_settings_update' ));
862
+ }
863
+
864
+ /**
865
+ * DEPRECTAED Add javascript code to site header
866
+ *
867
+ * @deprecated
868
+ *
869
+ */
870
+ public function site_header() {
871
+ self::$logger->log ( 'Using deprecated function site_header' );
872
+ $this->addJavascriptCode ();
873
+ }
874
+
875
+ /**
876
+ * DEPRECTAED Add javascript code to site footer
877
+ *
878
+ * @deprecated
879
+ *
880
+ */
881
+ public function site_footer() {
882
+ self::$logger->log ( 'Using deprecated function site_footer' );
883
+ $this->addNoscriptCode ();
884
+ }
885
+
886
+ /**
887
+ * Identify new posts if an annotation is required
888
+ * and create Piwik annotation
889
+ *
890
+ * @param string $newStatus
891
+ * new post status
892
+ * @param strint $oldStatus
893
+ * new post status
894
+ * @param object $post
895
+ * current post object
896
+ */
897
+ public function addPiwikAnnotation($newStatus, $oldStatus, $post) {
898
+ $enabledPostTypes = self::$settings->getGlobalOption ( 'add_post_annotations' );
899
+ if (isset($enabledPostTypes[$post->post_type]) && $enabledPostTypes[$post->post_type] && $newStatus == 'publish' && $oldStatus != 'publish') {
900
+ $note = 'Published: ' . $post->post_title . ' - URL: ' . get_permalink ( $post->ID );
901
+ $id = WP_Piwik\Request::register ( 'Annotations.add', array (
902
+ 'idSite' => $this->getPiwikSiteId (),
903
+ 'date' => date ( 'Y-m-d' ),
904
+ 'note' => $note
905
+ ) );
906
+ $result = $this->request ( $id );
907
+ self::$logger->log ( 'Add post annotation. ' . $note . ' - ' . serialize ( $result ) );
908
+ }
909
+ }
910
+
911
+ /**
912
+ * Get WP-Piwik's URL
913
+ */
914
+ public function getPluginURL() {
915
+ return trailingslashit ( plugins_url () . '/wp-piwik/' );
916
+ }
917
+
918
+ /**
919
+ * Get WP-Piwik's version
920
+ */
921
+ public function getPluginVersion() {
922
+ return self::$version;
923
+ }
924
+
925
+ /**
926
+ * Enable three columns for WP-Piwik stats screen
927
+ *
928
+ * @param
929
+ * array full list of column settings
930
+ * @param
931
+ * mixed current screen id
932
+ * @return array updated list of column settings
933
+ */
934
+ public function onScreenLayoutColumns($columns, $screen) {
935
+ if (isset( $this->statsPageId ) && $screen == $this->statsPageId)
936
+ $columns [$this->statsPageId] = 3;
937
+ return $columns;
938
+ }
939
+
940
+ /**
941
+ * Add tracking code to admin header
942
+ */
943
+ function addAdminHeaderTracking() {
944
+ $this->addJavascriptCode ();
945
+ }
946
+
947
+ /**
948
+ * Get option value
949
+ *
950
+ * @param string $key
951
+ * option key
952
+ * @return mixed option value
953
+ */
954
+ public function getOption($key) {
955
+ return self::$settings->getOption ( $key );
956
+ }
957
+
958
+ /**
959
+ * Get global option value
960
+ *
961
+ * @param string $key
962
+ * global option key
963
+ * @return mixed global option value
964
+ */
965
+ public function getGlobalOption($key) {
966
+ return self::$settings->getGlobalOption ( $key );
967
+ }
968
+
969
+ /**
970
+ * Get stats page URL
971
+ *
972
+ * @return string stats page URL
973
+ */
974
+ public function getStatsURL() {
975
+ return admin_url () . '?page=wp-piwik_stats';
976
+ }
977
+
978
+ /**
979
+ * Execute WP-Piwik test script
980
+ */
981
+ private function loadTestscript() {
982
+ $this->includeFile ( 'debug' . DIRECTORY_SEPARATOR . 'testscript' );
983
+ }
984
+
985
+ /**
986
+ * Echo an error message
987
+ *
988
+ * @param string $message
989
+ * message content
990
+ */
991
+ private static function showErrorMessage($message) {
992
+ echo '<strong class="wp-piwik-error">' . __ ( 'An error occured', 'wp-piwik' ) . ':</strong> ' . $message . ' [<a href="' . (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general') . '.php?page=wp-piwik/classes/WP_Piwik.php&tab=support">' . __ ( 'Support', 'wp-piwik' ) . '</a>]';
993
+ }
994
+
995
+ /**
996
+ * Perform a Piwik request
997
+ *
998
+ * @param string $id
999
+ * request ID
1000
+ * @return mixed request result
1001
+ */
1002
+ public function request($id, $debug = false) {
1003
+ if ( self::$settings->getGlobalOption ( 'piwik_mode' ) == 'disabled' )
1004
+ return 'n/a';
1005
+ if (! isset ( self::$request ) || empty ( self::$request ))
1006
+ self::$request = (self::$settings->getGlobalOption ( 'piwik_mode' ) == 'http' || self::$settings->getGlobalOption ( 'piwik_mode' ) == 'cloud' ? new WP_Piwik\Request\Rest ( $this, self::$settings ) : new WP_Piwik\Request\Php ( $this, self::$settings ));
1007
+ if ($debug)
1008
+ return self::$request->getDebug ( $id );
1009
+ return self::$request->perform ( $id );
1010
+ }
1011
+
1012
+ /**
1013
+ * Reset request object
1014
+ */
1015
+ public function resetRequest() {
1016
+ if (is_object(self::$request))
1017
+ self::$request->reset();
1018
+ self::$request = NULL;
1019
+ }
1020
+
1021
+ /**
1022
+ * Execute WP-Piwik shortcode
1023
+ *
1024
+ * @param array $attributes
1025
+ * attribute list
1026
+ */
1027
+ public function shortcode($attributes) {
1028
+ shortcode_atts ( array (
1029
+ 'title' => '',
1030
+ 'module' => 'overview',
1031
+ 'period' => 'day',
1032
+ 'date' => 'yesterday',
1033
+ 'limit' => 10,
1034
+ 'width' => '100%',
1035
+ 'height' => '200px',
1036
+ 'idsite' => '',
1037
+ 'language' => 'en',
1038
+ 'range' => false,
1039
+ 'key' => 'sum_daily_nb_uniq_visitors'
1040
+ ), $attributes );
1041
+ $shortcodeObject = new \WP_Piwik\Shortcode ( $attributes, $this, self::$settings );
1042
+ return $shortcodeObject->get();
1043
+ }
1044
+
1045
+ /**
1046
+ * Get Piwik site ID by blog ID
1047
+ *
1048
+ * @param int $blogId
1049
+ * which blog's Piwik site ID to get, default is the current blog
1050
+ * @return mixed Piwik site ID or n/a
1051
+ */
1052
+ public function getPiwikSiteId($blogId = null) {
1053
+ if (! $blogId && $this->isNetworkMode ())
1054
+ $blogId = get_current_blog_id ();
1055
+ $result = self::$settings->getOption ( 'site_id', $blogId );
1056
+ self::$logger->log ( 'Database result: ' . $result );
1057
+ return (! empty ( $result ) ? $result : $this->requestPiwikSiteId ( $blogId ));
1058
+ }
1059
+
1060
+ /**
1061
+ * Get a detailed list of all Piwik sites
1062
+ *
1063
+ * @return array Piwik sites
1064
+ */
1065
+ public function getPiwikSiteDetails() {
1066
+ $id = WP_Piwik\Request::register ( 'SitesManager.getSitesWithAtLeastViewAccess', array () );
1067
+ $piwikSiteDetails = $this->request ( $id );
1068
+ return $piwikSiteDetails;
1069
+ }
1070
+
1071
+ /**
1072
+ * Estimate a Piwik site ID by blog ID
1073
+ *
1074
+ * @param int $blogId
1075
+ * which blog's Piwik site ID to estimate, default is the current blog
1076
+ * @return mixed Piwik site ID or n/a
1077
+ */
1078
+ private function requestPiwikSiteId($blogId = null) {
1079
+ $isCurrent = ! self::$settings->checkNetworkActivation () || empty ( $blogId );
1080
+ if (self::$settings->getGlobalOption ( 'auto_site_config' )) {
1081
+ $id = WP_Piwik\Request::register ( 'SitesManager.getSitesIdFromSiteUrl', array (
1082
+ 'url' => $isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl
1083
+ ) );
1084
+ $result = $this->request ( $id );
1085
+ $this->log ( 'Tried to identify current site, result: ' . serialize ( $result ) );
1086
+ if (is_array( $result ) && empty( $result ))
1087
+ $result = $this->addPiwikSite ( $blogId );
1088
+ elseif ( $result != 'n/a' && isset($result [0]) )
1089
+ $result = $result [0] ['idsite'];
1090
+ else $result = null;
1091
+ } else $result = null;
1092
+ self::$logger->log ( 'Get Piwik ID: WordPress site ' . ($isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl) . ' = Piwik ID ' . $result );
1093
+ if ($result !== null) {
1094
+ self::$settings->setOption ( 'site_id', $result, $blogId );
1095
+ if (self::$settings->getGlobalOption ( 'track_mode' ) != 'disabled' && self::$settings->getGlobalOption ( 'track_mode' ) != 'manually') {
1096
+ $code = $this->updateTrackingCode ( $result, $blogId );
1097
+ }
1098
+ $this::$settings->save ();
1099
+ return $result;
1100
+ }
1101
+ return 'n/a';
1102
+ }
1103
+
1104
+ /**
1105
+ * Add a new Piwik
1106
+ *
1107
+ * @param int $blogId
1108
+ * which blog's Piwik site to create, default is the current blog
1109
+ * @return int Piwik site ID
1110
+ */
1111
+ public function addPiwikSite($blogId = null) {
1112
+ $isCurrent = ! self::$settings->checkNetworkActivation () || empty ( $blogId );
1113
+ // Do not add site if Piwik connection is unreliable
1114
+ if (! $this->request ( 'global.getPiwikVersion' ))
1115
+ return null;
1116
+ $id = WP_Piwik\Request::register ( 'SitesManager.addSite', array (
1117
+ 'urls' => $isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl,
1118
+ 'siteName' => urlencode( $isCurrent ? get_bloginfo ( 'name' ) : get_blog_details ( $blogId )->blogname )
1119
+ ) );
1120
+ $result = (int) $this->request ( $id );
1121
+ self::$logger->log ( 'Create Piwik ID: WordPress site ' . ($isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->siteurl) . ' = Piwik ID ' . $result );
1122
+ if (empty ( $result ))
1123
+ return null;
1124
+ else {
1125
+ do_action('wp-piwik_site_created', $result);
1126
+ return $result;
1127
+ }
1128
+ }
1129
+
1130
+ /**
1131
+ * Update a Piwik site's detail information
1132
+ *
1133
+ * @param int $siteId
1134
+ * which Piwik site to updated
1135
+ * @param int $blogId
1136
+ * which blog's Piwik site ID to get, default is the current blog
1137
+ */
1138
+ private function updatePiwikSite($siteId, $blogId = null) {
1139
+ $isCurrent = ! self::$settings->checkNetworkActivation () || empty ( $blogId );
1140
+ $id = WP_Piwik\Request::register ( 'SitesManager.updateSite', array (
1141
+ 'idSite' => $siteId,
1142
+ 'urls' => $isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->$siteurl,
1143
+ 'siteName' => $isCurrent ? get_bloginfo ( 'name' ) : get_blog_details ( $blogId )->$blogname
1144
+ ) );
1145
+ $result = $this->request ( $id );
1146
+ self::$logger->log ( 'Update Piwik site: WordPress site ' . ($isCurrent ? get_bloginfo ( 'url' ) : get_blog_details ( $blogId )->$siteurl) );
1147
+ }
1148
+
1149
+ /**
1150
+ * Update a site's tracking code
1151
+ *
1152
+ * @param int $siteId
1153
+ * which Piwik site to updated
1154
+ * @param int $blogId
1155
+ * which blog's Piwik site ID to get, default is the current blog
1156
+ * @return string tracking code
1157
+ */
1158
+ public function updateTrackingCode($siteId = false, $blogId = null) {
1159
+ if (!$siteId)
1160
+ $siteId = $this->getPiwikSiteId ();
1161
+ if (self::$settings->getGlobalOption ( 'track_mode' ) == 'disabled' || self::$settings->getGlobalOption ( 'track_mode' ) == 'manually')
1162
+ return false;
1163
+ $id = WP_Piwik\Request::register ( 'SitesManager.getJavascriptTag', array (
1164
+ 'idSite' => $siteId,
1165
+ 'mergeSubdomains' => self::$settings->getGlobalOption ( 'track_across' ) ? 1 : 0,
1166
+ 'mergeAliasUrls' => self::$settings->getGlobalOption ( 'track_across_alias' ) ? 1 : 0,
1167
+ 'disableCookies' => self::$settings->getGlobalOption ( 'disable_cookies' ) ? 1 : 0,
1168
+ 'crossDomain' => self::$settings->getGlobalOption ( 'track_crossdomain_linking' ) ? 1 : 0,
1169
+ 'trackNoScript' => 1
1170
+ ) );
1171
+ $code = $this->request ( $id );
1172
+ if (is_array($code) && isset($code['value']))
1173
+ $code = $code['value'];
1174
+ $result = !is_array ( $code ) ? html_entity_decode ( $code ) : '<!-- '.json_encode($code).' -->';
1175
+ self::$logger->log ( 'Delivered tracking code: ' . $result );
1176
+ $result = WP_Piwik\TrackingCode::prepareTrackingCode ( $result, self::$settings, self::$logger, true );
1177
+ if (isset ( $result ['script'] ) && ! empty ( $result ['script'] )) {
1178
+ self::$settings->setOption ( 'tracking_code', $result ['script'], $blogId );
1179
+ self::$settings->setOption ( 'noscript_code', $result ['noscript'], $blogId );
1180
+ self::$settings->setGlobalOption ( 'proxy_url', $result ['proxy'], $blogId );
1181
+ }
1182
+ return $result;
1183
+ }
1184
+
1185
+ /**
1186
+ * Update Piwik site if blog name changes
1187
+ *
1188
+ * @param string $oldValue
1189
+ * old blog name
1190
+ * @param string $newValue
1191
+ * new blog name
1192
+ */
1193
+ public function onBlogNameChange($oldValue, $newValue = null) {
1194
+ $this->updatePiwikSite ( self::$settings->getOption ( 'site_id' ) );
1195
+ }
1196
+
1197
+ /**
1198
+ * Update Piwik site if blog URL changes
1199
+ *
1200
+ * @param string $oldValue
1201
+ * old blog URL
1202
+ * @param string $newValue
1203
+ * new blog URL
1204
+ */
1205
+ public function onSiteUrlChange($oldValue, $newValue = null) {
1206
+ $this->updatePiwikSite ( self::$settings->getOption ( 'site_id' ) );
1207
+ }
1208
+
1209
+ /**
1210
+ * Register stats page meta boxes
1211
+ *
1212
+ * @param mixed $statsPageId
1213
+ * WordPress stats page ID
1214
+ */
1215
+ public function onloadStatsPage($statsPageId) {
1216
+ if (self::$settings->getGlobalOption ( 'disable_timelimit' ))
1217
+ set_time_limit ( 0 );
1218
+ wp_enqueue_script ( 'common' );
1219
+ wp_enqueue_script ( 'wp-lists' );
1220
+ wp_enqueue_script ( 'postbox' );
1221
+ wp_enqueue_script ( 'wp-piwik', $this->getPluginURL () . 'js/wp-piwik.js', array (), self::$version, true );
1222
+ wp_enqueue_script ( 'wp-piwik-jqplot', $this->getPluginURL () . 'js/jqplot/wp-piwik.jqplot.js', array (
1223
+ 'jquery'
1224
+ ), self::$version );
1225
+ new \WP_Piwik\Widget\Chart ( $this, self::$settings, $this->statsPageId );
1226
+ new \WP_Piwik\Widget\Visitors ( $this, self::$settings, $this->statsPageId );
1227
+ new \WP_Piwik\Widget\Overview ( $this, self::$settings, $this->statsPageId );
1228
+ if (self::$settings->getGlobalOption ( 'stats_ecommerce' )) {
1229
+ new \WP_Piwik\Widget\Ecommerce ($this, self::$settings, $this->statsPageId);
1230
+ new \WP_Piwik\Widget\Items ($this, self::$settings, $this->statsPageId);
1231
+ new \WP_Piwik\Widget\ItemsCategory ($this, self::$settings, $this->statsPageId);
1232
+ }
1233
+ if (self::$settings->getGlobalOption ( 'stats_seo' ))
1234
+ new \WP_Piwik\Widget\Seo ( $this, self::$settings, $this->statsPageId );
1235
+ new \WP_Piwik\Widget\Pages ( $this, self::$settings, $this->statsPageId );
1236
+ new \WP_Piwik\Widget\Keywords ( $this, self::$settings, $this->statsPageId );
1237
+ new \WP_Piwik\Widget\Referrers ( $this, self::$settings, $this->statsPageId );
1238
+ new \WP_Piwik\Widget\Plugins ( $this, self::$settings, $this->statsPageId );
1239
+ new \WP_Piwik\Widget\Search ( $this, self::$settings, $this->statsPageId );
1240
+ new \WP_Piwik\Widget\Noresult ( $this, self::$settings, $this->statsPageId );
1241
+ new \WP_Piwik\Widget\Browsers ( $this, self::$settings, $this->statsPageId );
1242
+ new \WP_Piwik\Widget\BrowserDetails ( $this, self::$settings, $this->statsPageId );
1243
+ new \WP_Piwik\Widget\Screens ( $this, self::$settings, $this->statsPageId );
1244
+ new \WP_Piwik\Widget\Systems ( $this, self::$settings, $this->statsPageId );
1245
+ new \WP_Piwik\Widget\SystemDetails ( $this, self::$settings, $this->statsPageId );
1246
+ new \WP_Piwik\Widget\Country ( $this, self::$settings, $this->statsPageId );
1247
+ }
1248
+
1249
+ /**
1250
+ * Add per post statistics to a post's page
1251
+ *
1252
+ * @param mixed $postPageId
1253
+ * WordPress post page ID
1254
+ */
1255
+ public function onloadPostPage($postPageId) {
1256
+ global $post;
1257
+ $postUrl = get_permalink ( $post->ID );
1258
+ $this->log ( 'Load per post statistics: ' . $postUrl );
1259
+ array (
1260
+ new \WP_Piwik\Widget\Post ( $this, self::$settings, array('post', 'page', 'custom_post_type'), 'side', 'default', array (
1261
+ 'url' => $postUrl
1262
+ ) ),
1263
+ 'show'
1264
+ );
1265
+ }
1266
+
1267
+ /**
1268
+ * Stats page changes by POST submit
1269
+ *
1270
+ * @see http://tinyurl.com/5r5vnzs
1271
+ */
1272
+ function onStatsPageSaveChanges() {
1273
+ if (! current_user_can ( 'manage_options' ))
1274
+ wp_die ( __ ( 'Cheatin&#8217; uh?' ) );
1275
+ check_admin_referer ( 'wp-piwik_stats' );
1276
+ wp_redirect ( $_POST ['_wp_http_referer'] );
1277
+ }
1278
+
1279
+ /**
1280
+ * Get option value, choose method depending on network mode
1281
+ *
1282
+ * @param string $option option key
1283
+ * @return string option value
1284
+ */
1285
+ private function getWordPressOption($option, $default = null) {
1286
+ return ($this->isNetworkMode () ? get_site_option ( $option, $default ) : get_option ( $option, $default ));
1287
+ }
1288
+
1289
+ /**
1290
+ * Delete option, choose method depending on network mode
1291
+ *
1292
+ * @param string $option option key
1293
+ */
1294
+ private function deleteWordPressOption($option) {
1295
+ if ( $this->isNetworkMode () )
1296
+ delete_site_option ( $option );
1297
+ else
1298
+ delete_option ( $option );
1299
+ }
1300
+
1301
+ /**
1302
+ * Set option value, choose method depending on network mode
1303
+ *
1304
+ * @param string $option option key
1305
+ * @param mixed $value option value
1306
+ */
1307
+ private function updateWordPressOption($option, $value) {
1308
+ if ( $this->isNetworkMode () )
1309
+ update_site_option ( $option, $value );
1310
+ else
1311
+ update_option ( $option, $value );
1312
+ }
1313
+
1314
+ /**
1315
+ * Check if WP-Piwik options page
1316
+ *
1317
+ * @return boolean True if current page is WP-Piwik's option page
1318
+ */
1319
+ public static function isValidOptionsPost() {
1320
+ return is_admin() && check_admin_referer( 'wp-piwik_settings' ) && current_user_can( 'manage_options' ) ;
1321
+ }
1322
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/WP_Piwik/Admin.php ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ abstract class Admin {
6
+
7
+ protected static $wpPiwik, $pageID, $settings;
8
+
9
+ public function __construct($wpPiwik, $settings) {
10
+ self::$wpPiwik = $wpPiwik;
11
+ self::$settings = $settings;
12
+ }
13
+
14
+ abstract public function show();
15
+
16
+ abstract public function printAdminScripts();
17
+
18
+ abstract public function extendAdminHeader();
19
+
20
+ public function printAdminStyles() {
21
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css', array(), self::$wpPiwik->getPluginVersion());
22
+ }
23
+
24
+ public function onLoad() {}
25
+
26
+ }
classes/WP_Piwik/Admin/Network.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Admin;
4
+
5
+ class Network extends \WP_Piwik\Admin\Statistics {
6
+
7
+ public function show() {
8
+ parent::show();
9
+ }
10
+
11
+ public function printAdminScripts() {
12
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
13
+ wp_enqueue_script('wp-piwik-jqplot', self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'), self::$wpPiwik->getPluginVersion());
14
+ }
15
+
16
+ public function extendAdminHeader() {
17
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.(parent::$wpPiwik->getPluginURL()).'js/jqplot/excanvas.min.js"></script><![endif]-->';
18
+ echo '<link rel="stylesheet" href="'.(parent::$wpPiwik->getPluginURL()).'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
19
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
20
+ }
21
+
22
+ public function onLoad() {
23
+ self::$wpPiwik->onloadStatsPage(self::$pageID);
24
+ }
25
+ }
classes/WP_Piwik/Admin/Settings.php ADDED
@@ -0,0 +1,716 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Admin;
4
+
5
+ /**
6
+ * WordPress Admin settings page
7
+ *
8
+ * @package WP_Piwik\Admin
9
+ * @author Andr&eacute; Br&auml;kling <webmaster@braekling.de>
10
+ */
11
+ class Settings extends \WP_Piwik\Admin {
12
+
13
+ /**
14
+ * Builds and displays the settings page
15
+ */
16
+ public function show() {
17
+ if (isset($_GET['sitebrowser']) && $_GET['sitebrowser']) {
18
+ new \WP_Piwik\Admin\Sitebrowser(self::$wpPiwik);
19
+ return;
20
+ }
21
+ if (isset($_GET['clear']) && $_GET['clear']) {
22
+ $this->clear($_GET['clear'] == 2);
23
+ self::$wpPiwik->resetRequest();
24
+ echo '<form method="post" action="?page='.htmlentities($_GET['page']).'"><input type="submit" value="'.__('Reload', 'wp-piwik').'" /></form>';
25
+ return;
26
+ } elseif (self::$wpPiwik->isConfigSubmitted()) {
27
+ $this->showBox ( 'updated', 'yes', __ ( 'Changes saved.' ) );
28
+ self::$wpPiwik->resetRequest();
29
+ self::$wpPiwik->updateTrackingCode();
30
+ }
31
+ global $wp_roles;
32
+ ?>
33
+ <div id="plugin-options-wrap" class="widefat">
34
+ <?php
35
+ echo $this->getHeadline ( 1, 'admin-generic', 'Settings', true );
36
+ if (isset($_GET['testscript']) && $_GET['testscript'])
37
+ $this->runTestscript();
38
+ ?>
39
+ <?php
40
+ if (self::$wpPiwik->isConfigured ()) {
41
+ $piwikVersion = self::$wpPiwik->request ( 'global.getPiwikVersion' );
42
+ if (is_array ( $piwikVersion ) && isset( $piwikVersion['value'] ))
43
+ $piwikVersion = $piwikVersion['value'];
44
+ if (! empty ( $piwikVersion ) && !is_array( $piwikVersion ))
45
+ $this->showDonation();
46
+ }
47
+ ?>
48
+ <form method="post" action="?page=<?php echo htmlentities($_GET['page']); ?>">
49
+ <input type="hidden" name="wp-piwik[revision]" value="<?php echo self::$settings->getGlobalOption('revision'); ?>" />
50
+ <?php wp_nonce_field('wp-piwik_settings'); ?>
51
+ <table class="wp-piwik-form">
52
+ <tbody>
53
+ <?php
54
+ $submitButton = '<tr><td colspan="2"><p class="submit"><input name="Submit" type="submit" class="button-primary" value="' . esc_attr__ ( 'Save Changes' ) . '" /></p></td></tr>';
55
+ printf ( '<tr><td colspan="2">%s</td></tr>', __ ( 'Thanks for using WP-Piwik!', 'wp-piwik' ) );
56
+ if (self::$wpPiwik->isConfigured ()) {
57
+ if (! empty ( $piwikVersion ) && !is_array( $piwikVersion )) {
58
+ $this->showText ( sprintf ( __ ( 'WP-Piwik %s is successfully connected to Piwik %s.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion (), $piwikVersion ) . ' ' . (! self::$wpPiwik->isNetworkMode () ? sprintf ( __ ( 'You are running WordPress %s.', 'wp-piwik' ), get_bloginfo ( 'version' ) ) : sprintf ( __ ( 'You are running a WordPress %s blog network (WPMU). WP-Piwik will handle your sites as different websites.', 'wp-piwik' ), get_bloginfo ( 'version' ) )) );
59
+ } else {
60
+ $errorMessage = \WP_Piwik\Request::getLastError();
61
+ if ( empty( $errorMessage ) )
62
+ $this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s was not able to connect to Piwik using your configuration. Check the &raquo;Connect to Piwik&laquo; section below.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion () ) );
63
+ else
64
+ $this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s was not able to connect to Piwik using your configuration. During connection the following error occured: <br /><code>%s</code>', 'wp-piwik' ), self::$wpPiwik->getPluginVersion (), $errorMessage ) );
65
+ }
66
+ } else
67
+ $this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to Piwik&laquo; section below.', 'wp-piwik' ), self::$wpPiwik->getPluginVersion () ) );
68
+
69
+ $tabs ['connect'] = array (
70
+ 'icon' => 'admin-plugins',
71
+ 'name' => __('Connect to Piwik', 'wp-piwik')
72
+ );
73
+ if (self::$wpPiwik->isConfigured ()) {
74
+ $tabs ['statistics'] = array (
75
+ 'icon' => 'chart-pie',
76
+ 'name' => __('Show Statistics', 'wp-piwik')
77
+ );
78
+ $tabs ['tracking'] = array (
79
+ 'icon' => 'location-alt',
80
+ 'name' => __('Enable Tracking', 'wp-piwik')
81
+ );
82
+ }
83
+ $tabs ['expert'] = array (
84
+ 'icon' => 'shield',
85
+ 'name' => __('Expert Settings', 'wp-piwik')
86
+ );
87
+ $tabs ['support'] = array (
88
+ 'icon' => 'lightbulb',
89
+ 'name' => __('Support', 'wp-piwik')
90
+ );
91
+ $tabs ['credits'] = array (
92
+ 'icon' => 'groups',
93
+ 'name' => __('Credits', 'wp-piwik')
94
+ );
95
+
96
+ echo '<tr><td colspan="2"><h2 class="nav-tab-wrapper">';
97
+ foreach ( $tabs as $tab => $details ) {
98
+ $class = ($tab == 'connect') ? ' nav-tab-active' : '';
99
+ echo '<a style="cursor:pointer;" id="tab-' . $tab . '" class="nav-tab' . $class . '" onclick="javascript:$j(\'table.wp-piwik_menu-tab\').addClass(\'hidden\');$j(\'#' . $tab . '\').removeClass(\'hidden\');$j(\'a.nav-tab\').removeClass(\'nav-tab-active\');$j(\'#tab-' . $tab . '\').addClass(\'nav-tab-active\');">';
100
+ $this->showHeadline ( 0, $details ['icon'], $details ['name'] );
101
+ echo "</a>";
102
+ }
103
+ echo '</h2></td></tr></tbody></table><table id="connect" class="wp-piwik_menu-tab"><tbody>';
104
+
105
+ if (! self::$wpPiwik->isConfigured ())
106
+ $this->showBox ( 'updated', 'info', sprintf ( '%s <a href="%s">%s</a> %s <a href="%s">%s</a>.', __ ( 'WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your WordPress admin dashboard and to add and configure your Piwik tracking code. To use this you will need your own Piwik instance. If you do not already have a Piwik setup, you have two simple options: use either', 'wp-piwik' ), 'http://piwik.org/', __ ( 'a self-hosted Piwik', 'wp-piwik' ), __ ( 'or', 'wp-piwik' ), 'https://www.innocraft.cloud/?pk_campaign=WP-Piwik', __ ( 'a cloud-hosted Piwik by InnoCraft', 'wp-piwik' ) ) );
107
+
108
+ if (! function_exists ( 'curl_init' ) && ! ini_get ( 'allow_url_fopen' ))
109
+ $this->showBox ( 'error', 'no', __ ( 'Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API and not connect to InnoCraft Cloud.' ) . ' ' . sprintf ( '<a href="%s">%s.</a>', 'https://wordpress.org/plugins/wp-piwik/faq/', __ ( 'More information', 'wp-piwik' ) ) );
110
+
111
+ $description = sprintf ( '%s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s', __ ( 'You can choose between three connection methods:', 'wp-piwik' ), __ ( 'Self-hosted (HTTP API, default)', 'wp-piwik' ), __ ( 'This is the default option for a self-hosted Piwik and should work for most configurations. WP-Piwik will connect to Piwik using http(s).', 'wp-piwik' ), __ ( 'Self-hosted (PHP API)', 'wp-piwik' ), __ ( 'Choose this, if your self-hosted Piwik and WordPress are running on the same machine and you know the full server path to your Piwik instance.', 'wp-piwik' ), __ ( 'Cloud-hosted (InnoCraft Cloud)', 'wp-piwik' ), __ ( 'If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this option.', 'wp-piwik' ) );
112
+ $this->showSelect ( 'piwik_mode', __ ( 'Piwik Mode', 'wp-piwik' ), array (
113
+ 'disabled' => __ ( 'Disabled (WP-Piwik will not connect to Piwik)', 'wp-piwik' ),
114
+ 'http' => __ ( 'Self-hosted (HTTP API, default)', 'wp-piwik' ),
115
+ 'php' => __ ( 'Self-hosted (PHP API)', 'wp-piwik' ),
116
+ 'cloud' => __ ( 'Cloud-hosted (InnoCraft Cloud)', 'wp-piwik' )
117
+ ), $description, '$j(\'tr.wp-piwik-mode-option\').addClass(\'hidden\'); $j(\'#wp-piwik-mode-option-\' + $j(\'#piwik_mode\').val()).removeClass(\'hidden\');', false, '', self::$wpPiwik->isConfigured () );
118
+
119
+ $this->showInput ( 'piwik_url', __ ( 'Piwik URL', 'wp-piwik' ), __( 'Enter your Piwik URL. This is the same URL you use to access your Piwik instance, e.g. http://www.example.com/piwik/.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'piwik_mode' ) != 'http', 'wp-piwik-mode-option', 'http', self::$wpPiwik->isConfigured (), true );
120
+ $this->showInput ( 'piwik_path', __ ( 'Piwik path', 'wp-piwik' ), __( 'Enter the file path to your Piwik instance, e.g. /var/www/piwik/.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'piwik_mode' ) != 'php', 'wp-piwik-mode-option', 'php', self::$wpPiwik->isConfigured (), true );
121
+ $this->showInput ( 'piwik_user', __ ( 'Piwik subdomain', 'wp-piwik' ), __( 'Enter your InnoCraft Cloud subdomain. It is also part of your URL: https://SUBDOMAIN.innocraft.cloud.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'piwik_mode' ) != 'cloud', 'wp-piwik-mode-option', 'cloud', self::$wpPiwik->isConfigured () );
122
+ $this->showInput ( 'piwik_token', __ ( 'Auth token', 'wp-piwik' ), __( 'Enter your Piwik auth token here. It is an alphanumerical code like 0a1b2c34d56e78901fa2bc3d45678efa.', 'wp-piwik' ).' '.sprintf ( __ ( 'See %sWP-Piwik FAQ%s.', 'wp-piwik' ), '<a href="https://wordpress.org/plugins/wp-piwik/faq/" target="_BLANK">', '</a>' ), false, '', '', self::$wpPiwik->isConfigured (), true );
123
+
124
+ // Site configuration
125
+ $piwikSiteId = self::$wpPiwik->isConfigured () ? self::$wpPiwik->getPiwikSiteId () : false;
126
+ if (! self::$wpPiwik->isNetworkMode() ) {
127
+ $this->showCheckbox ( 'auto_site_config', __ ( 'Auto config', 'wp-piwik' ), __ ( 'Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site.', 'wp-piwik' ), false, '$j(\'tr.wp-piwik-auto-option\').toggle(\'hidden\');' . ($piwikSiteId ? '$j(\'#site_id\').val(' . $piwikSiteId . ');' : '') );
128
+ if (self::$wpPiwik->isConfigured ()) {
129
+ $piwikSiteList = self::$wpPiwik->getPiwikSiteDetails ();
130
+ if (isset($piwikSiteList['result']) && $piwikSiteList['result'] == 'error') {
131
+ $this->showBox ( 'error', 'no', sprintf ( __ ( 'WP-Piwik %s was not able to get sites with at least view access: <br /><code>%s</code>', 'wp-piwik' ), self::$wpPiwik->getPluginVersion (), $errorMessage ) );
132
+ } else {
133
+ if (is_array($piwikSiteList))
134
+ foreach ($piwikSiteList as $details)
135
+ $piwikSiteDetails[$details['idsite']] = $details;
136
+ unset($piwikSiteList);
137
+ if ($piwikSiteId != 'n/a' && isset($piwikSiteDetails) && is_array($piwikSiteDetails))
138
+ $piwikSiteDescription = $piwikSiteDetails [$piwikSiteId] ['name'] . ' (' . $piwikSiteDetails [$piwikSiteId] ['main_url'] . ')';
139
+ else
140
+ $piwikSiteDescription = 'n/a';
141
+ echo '<tr class="wp-piwik-auto-option' . (!self::$settings->getGlobalOption('auto_site_config') ? ' hidden' : '') . '"><th scope="row">' . __('Determined site', 'wp-piwik') . ':</th><td>' . $piwikSiteDescription . '</td></tr>';
142
+ if (isset ($piwikSiteDetails) && is_array($piwikSiteDetails))
143
+ foreach ($piwikSiteDetails as $key => $siteData)
144
+ $siteList [$siteData['idsite']] = $siteData ['name'] . ' (' . $siteData ['main_url'] . ')';
145
+ if (isset($siteList))
146
+ $this->showSelect('site_id', __('Select site', 'wp-piwik'), $siteList, 'Choose the Piwik site corresponding to this blog.', '', self::$settings->getGlobalOption('auto_site_config'), 'wp-piwik-auto-option', true, false);
147
+ }
148
+ }
149
+ } else echo '<tr class="hidden"><td colspan="2"><input type="hidden" name="wp-piwik[auto_site_config]" value="1" /></td></tr>';
150
+
151
+ echo $submitButton;
152
+
153
+ echo '</tbody></table><table id="statistics" class="wp-piwik_menu-tab hidden"><tbody>';
154
+ // Stats configuration
155
+ $this->showSelect ( 'default_date', __ ( 'Piwik default date', 'wp-piwik' ), array (
156
+ 'today' => __ ( 'Today', 'wp-piwik' ),
157
+ 'yesterday' => __ ( 'Yesterday', 'wp-piwik' ),
158
+ 'current_month' => __ ( 'Current month', 'wp-piwik' ),
159
+ 'last_month' => __ ( 'Last month', 'wp-piwik' ),
160
+ 'current_week' => __ ( 'Current week', 'wp-piwik' ),
161
+ 'last_week' => __ ( 'Last week', 'wp-piwik' )
162
+ ), __ ( 'Default date shown on statistics page.', 'wp-piwik' ) );
163
+
164
+ $this->showCheckbox ( 'stats_seo', __ ( 'Show SEO data', 'wp-piwik' ), __ ( 'Display SEO ranking data on statistics page.', 'wp-piwik' ) . ' (' . __ ( 'Slow!', 'wp-piwik' ) . ')' );
165
+ $this->showCheckbox ( 'stats_ecommerce', __ ( 'Show e-commerce data', 'wp-piwik' ), __ ( 'Display e-commerce data on statistics page.', 'wp-piwik' ) );
166
+
167
+ $this->showSelect ( 'dashboard_widget', __ ( 'Dashboard overview', 'wp-piwik' ), array (
168
+ 'disabled' => __ ( 'Disabled', 'wp-piwik' ),
169
+ 'yesterday' => __ ( 'Yesterday', 'wp-piwik' ),
170
+ 'today' => __ ( 'Today', 'wp-piwik' ),
171
+ 'last30' => __ ( 'Last 30 days', 'wp-piwik' )
172
+ ), __ ( 'Enable WP-Piwik dashboard widget &quot;Overview&quot;.', 'wp-piwik' ) );
173
+
174
+ $this->showCheckbox ( 'dashboard_chart', __ ( 'Dashboard graph', 'wp-piwik' ), __ ( 'Enable WP-Piwik dashboard widget &quot;Graph&quot;.', 'wp-piwik' ) );
175
+
176
+ $this->showCheckbox ( 'dashboard_seo', __ ( 'Dashboard SEO', 'wp-piwik' ), __ ( 'Enable WP-Piwik dashboard widget &quot;SEO&quot;.', 'wp-piwik' ) . ' (' . __ ( 'Slow!', 'wp-piwik' ) . ')' );
177
+
178
+ $this->showCheckbox ( 'dashboard_ecommerce', __ ( 'Dashboard e-commerce', 'wp-piwik' ), __ ( 'Enable WP-Piwik dashboard widget &quot;E-commerce&quot;.', 'wp-piwik' ) );
179
+
180
+ $this->showCheckbox ( 'toolbar', __ ( 'Show graph on WordPress Toolbar', 'wp-piwik' ), __ ( 'Display a last 30 days visitor graph on WordPress\' toolbar.', 'wp-piwik' ) );
181
+
182
+ echo '<tr><th scope="row"><label for="capability_read_stats">' . __ ( 'Display stats to', 'wp-piwik' ) . '</label>:</th><td>';
183
+ $filter = self::$settings->getGlobalOption ( 'capability_read_stats' );
184
+ foreach ( $wp_roles->role_names as $key => $name ) {
185
+ echo '<input type="checkbox" ' . (isset ( $filter [$key] ) && $filter [$key] ? 'checked="checked" ' : '') . 'value="1" onchange="$j(\'#capability_read_stats-' . $key . '-input\').val(this.checked?1:0);" />';
186
+ echo '<input id="capability_read_stats-' . $key . '-input" type="hidden" name="wp-piwik[capability_read_stats][' . $key . ']" value="' . ( int ) (isset ( $filter [$key] ) && $filter [$key]) . '" />';
187
+ echo $name . ' &nbsp; ';
188
+ }
189
+ echo '<span class="dashicons dashicons-editor-help" onclick="$j(\'#capability_read_stats-desc\').toggleClass(\'hidden\');"></span> <p class="description hidden" id="capability_read_stats-desc">' . __ ( 'Choose user roles allowed to see the statistics page.', 'wp-piwik' ) . '</p></td></tr>';
190
+
191
+ $this->showCheckbox ( 'perpost_stats', __ ( 'Show per post stats', 'wp-piwik' ), __ ( 'Show stats about single posts at the post edit admin page.', 'wp-piwik' ) );
192
+
193
+ $this->showCheckbox ( 'piwik_shortcut', __ ( 'Piwik shortcut', 'wp-piwik' ), __ ( 'Display a shortcut to Piwik itself.', 'wp-piwik' ) );
194
+
195
+ $this->showInput ( 'plugin_display_name', __ ( 'WP-Piwik display name', 'wp-piwik' ), __ ( 'Plugin name shown in WordPress.', 'wp-piwik' ) );
196
+
197
+ $this->showCheckbox ( 'shortcodes', __ ( 'Enable shortcodes', 'wp-piwik' ), __ ( 'Enable shortcodes in post or page content.', 'wp-piwik' ) );
198
+
199
+ echo $submitButton;
200
+
201
+ echo '</tbody></table><table id="tracking" class="wp-piwik_menu-tab hidden"><tbody>';
202
+
203
+ // Tracking Configuration
204
+ $isNotTracking = self::$settings->getGlobalOption ( 'track_mode' ) == 'disabled';
205
+ $isNotGeneratedTracking = $isNotTracking || self::$settings->getGlobalOption ( 'track_mode' ) == 'manually';
206
+ $fullGeneratedTrackingGroup = 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-proxy';
207
+
208
+ $description = sprintf ( '%s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s<br /><strong>%s:</strong> %s', __ ( 'You can choose between four tracking code modes:', 'wp-piwik' ), __ ( 'Disabled', 'wp-piwik' ), __ ( 'WP-Piwik will not add the tracking code. Use this, if you want to add the tracking code to your template files or you use another plugin to add the tracking code.', 'wp-piwik' ), __ ( 'Default tracking', 'wp-piwik' ), __ ( 'WP-Piwik will use Piwik\'s standard tracking code.', 'wp-piwik' ), __ ( 'Use js/index.php', 'wp-piwik' ), __ ( 'You can choose this tracking code, to deliver a minified proxy code and to avoid using the files called piwik.js or piwik.php.', 'wp-piwik' ).' '.sprintf( __( 'See %sreadme file%s.', 'wp-piwik' ), '<a href="http://demo.piwik.org/js/README" target="_BLANK">', '</a>'), __ ( 'Use proxy script', 'wp-piwik' ), __ ( 'Use this tracking code to not reveal the Piwik server URL.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik FAQ%s.', 'wp-piwik' ), '<a href="http://piwik.org/faq/how-to/#faq_132" target="_BLANK">', '</a>' ) , __ ( 'Enter manually', 'wp-piwik' ), __ ( 'Enter your own tracking code manually. You can choose one of the prior options, pre-configure your tracking code and switch to manually editing at last.', 'wp-piwik' ).( self::$wpPiwik->isNetworkMode() ? ' '.__ ( 'Use the placeholder {ID} to add the Piwik site ID.', 'wp-piwik' ) : '' ) );
209
+ $this->showSelect ( 'track_mode', __ ( 'Add tracking code', 'wp-piwik' ), array (
210
+ 'disabled' => __ ( 'Disabled', 'wp-piwik' ),
211
+ 'default' => __ ( 'Default tracking', 'wp-piwik' ),
212
+ 'js' => __ ( 'Use js/index.php', 'wp-piwik' ),
213
+ 'proxy' => __ ( 'Use proxy script', 'wp-piwik' ),
214
+ 'manually' => __ ( 'Enter manually', 'wp-piwik' )
215
+ ), $description, '$j(\'tr.wp-piwik-track-option\').addClass(\'hidden\'); $j(\'tr.wp-piwik-track-option-\' + $j(\'#track_mode\').val()).removeClass(\'hidden\'); $j(\'#tracking_code, #noscript_code\').prop(\'readonly\', $j(\'#track_mode\').val() != \'manually\');' );
216
+
217
+ $this->showTextarea ( 'tracking_code', __ ( 'Tracking code', 'wp-piwik' ), 15, 'This is a preview of your current tracking code. If you choose to enter your tracking code manually, you can change it here.', $isNotTracking, 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-proxy wp-piwik-track-option-manually', true, '', (self::$settings->getGlobalOption ( 'track_mode' ) != 'manually'), false );
218
+
219
+ $this->showSelect ( 'track_codeposition', __ ( 'JavaScript code position', 'wp-piwik' ), array (
220
+ 'footer' => __ ( 'Footer', 'wp-piwik' ),
221
+ 'header' => __ ( 'Header', 'wp-piwik' )
222
+ ), __ ( 'Choose whether the JavaScript code is added to the footer or the header.', 'wp-piwik' ), '', $isNotTracking, 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-proxy wp-piwik-track-option-manually' );
223
+
224
+ $this->showTextarea ( 'noscript_code', __ ( 'Noscript code', 'wp-piwik' ), 2, 'This is a preview of your &lt;noscript&gt; code which is part of your tracking code.', self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-manually', true, '', (self::$settings->getGlobalOption ( 'track_mode' ) != 'manually'), false );
225
+
226
+ $this->showCheckbox ( 'track_noscript', __ ( 'Add &lt;noscript&gt;', 'wp-piwik' ), __ ( 'Adds the &lt;noscript&gt; code to your footer.', 'wp-piwik' ) . ' ' . __ ( 'Disabled in proxy mode.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-manually' );
227
+
228
+ $this->showCheckbox ( 'track_nojavascript', __ ( 'Add rec parameter to noscript code', 'wp-piwik' ), __ ( 'Enable tracking for visitors without JavaScript (not recommended).', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik FAQ%s.', 'wp-piwik' ), '<a href="http://piwik.org/faq/how-to/#faq_176" target="_BLANK">', '</a>' ) . ' ' . __ ( 'Disabled in proxy mode.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-manually' );
229
+
230
+ $this->showSelect ( 'track_content', __ ( 'Enable content tracking', 'wp-piwik' ), array (
231
+ 'disabled' => __ ( 'Disabled', 'wp-piwik' ),
232
+ 'all' => __ ( 'Track all content blocks', 'wp-piwik' ),
233
+ 'visible' => __ ( 'Track only visible content blocks', 'wp-piwik' )
234
+ ), __ ( 'Content tracking allows you to track interaction with the content of a web page or application.' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/content-tracking" target="_BLANK">', '</a>' ), '', $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
235
+
236
+ $this->showCheckbox ( 'track_search', __ ( 'Track search', 'wp-piwik' ), __ ( 'Use Piwik\'s advanced Site Search Analytics feature.' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/site-search/#track-site-search-using-the-tracking-api-advanced-users-only" target="_BLANK">', '</a>' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
237
+
238
+ $this->showCheckbox ( 'track_404', __ ( 'Track 404', 'wp-piwik' ), __ ( 'WP-Piwik can automatically add a 404-category to track 404-page-visits.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik FAQ%s.', 'wp-piwik' ), '<a href="http://piwik.org/faq/how-to/faq_60/" target="_BLANK">', '</a>' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
239
+
240
+ echo '<tr class="' . $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' . ($isNotTracking ? ' hidden' : '') . '">';
241
+ echo '<th scope="row"><label for="add_post_annotations">' . __ ( 'Add annotation on new post of type', 'wp-piwik' ) . '</label>:</th><td>';
242
+ $filter = self::$settings->getGlobalOption ( 'add_post_annotations' );
243
+ foreach ( get_post_types(array(), 'objects') as $post_type )
244
+ echo '<input type="checkbox" ' . (isset ( $filter [$post_type->name] ) && $filter [$post_type->name] ? 'checked="checked" ' : '') . 'value="1" name="wp-piwik[add_post_annotations][' . $post_type->name . ']" /> ' . $post_type->label . ' &nbsp; ';
245
+ echo '<span class="dashicons dashicons-editor-help" onclick="$j(\'#add_post_annotations-desc\').toggleClass(\'hidden\');"></span> <p class="description hidden" id="add_post_annotations-desc">' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/annotations/" target="_BLANK">', '</a>' ) . '</p></td></tr>';
246
+
247
+ $this->showCheckbox ( 'add_customvars_box', __ ( 'Show custom variables box', 'wp-piwik' ), __ ( ' Show a &quot;custom variables&quot; edit box on post edit page.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/custom-variables/" target="_BLANK">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
248
+
249
+ $this->showInput ( 'add_download_extensions', __ ( 'Add new file types for download tracking', 'wp-piwik' ), __ ( 'Add file extensions for download tracking, divided by a vertical bar (&#124;).', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#file-extensions-for-tracking-downloads" target="_BLANK">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
250
+
251
+ $this->showCheckbox ( 'disable_cookies', __ ( 'Disable cookies', 'wp-piwik' ), __ ( 'Disable all tracking cookies for a visitor.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
252
+
253
+ $this->showCheckbox ( 'limit_cookies', __ ( 'Limit cookie lifetime', 'wp-piwik' ), __ ( 'You can limit the cookie lifetime to avoid tracking your users over a longer period as necessary.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup, true, '$j(\'tr.wp-piwik-cookielifetime-option\').toggleClass(\'wp-piwik-hidden\');' );
254
+
255
+ $this->showInput ( 'limit_cookies_visitor', __ ( 'Visitor timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup.' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
256
+
257
+ $this->showInput ( 'limit_cookies_session', __ ( 'Session timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup .' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
258
+
259
+ $this->showInput ( 'limit_cookies_referral', __ ( 'Referral timeout (seconds)', 'wp-piwik' ), false, $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'limit_cookies' ), $fullGeneratedTrackingGroup .' wp-piwik-cookielifetime-option'. (self::$settings->getGlobalOption ( 'limit_cookies' )? '': ' wp-piwik-hidden') );
260
+
261
+ $this->showCheckbox ( 'track_admin', __ ( 'Track admin pages', 'wp-piwik' ), __ ( 'Enable to track users on admin pages (remember to configure the tracking filter appropriately).', 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
262
+
263
+ echo '<tr class="' . $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' . ($isNotTracking ? ' hidden' : '') . '">';
264
+ echo '<th scope="row"><label for="capability_stealth">' . __ ( 'Tracking filter', 'wp-piwik' ) . '</label>:</th><td>';
265
+ $filter = self::$settings->getGlobalOption ( 'capability_stealth' );
266
+ foreach ( $wp_roles->role_names as $key => $name )
267
+ echo '<input type="checkbox" ' . (isset ( $filter [$key] ) && $filter [$key] ? 'checked="checked" ' : '') . 'value="1" name="wp-piwik[capability_stealth][' . $key . ']" /> ' . $name . ' &nbsp; ';
268
+ echo '<span class="dashicons dashicons-editor-help" onclick="$j(\'#capability_stealth-desc\').toggleClass(\'hidden\');"></span> <p class="description hidden" id="capability_stealth-desc">' . __ ( 'Choose users by user role you do <strong>not</strong> want to track.', 'wp-piwik' ) . '</p></td></tr>';
269
+
270
+ $this->showCheckbox ( 'track_across', __ ( 'Track subdomains in the same website', 'wp-piwik' ), __ ( 'Adds *.-prefix to cookie domain.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#tracking-subdomains-in-the-same-website" tagert="_BLANK">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
271
+
272
+ $this->showCheckbox ( 'track_across_alias', __ ( 'Do not count subdomains as outlink', 'wp-piwik' ), __ ( 'Adds *.-prefix to tracked domain.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#outlink-tracking-exclusions" target="_BLANK">', '</a>' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
273
+
274
+ $this->showCheckbox ( 'track_crossdomain_linking', __ ( 'Enable cross domain linking', 'wp-piwik' ), __ ( 'When enabled, it will make sure to use the same visitor ID for the same visitor across several domains. This works only when this feature is enabled because the visitor ID is stored in a cookie and cannot be read on the other domain by default. When this feature is enabled, it will append a URL parameter "pk_vid" that contains the visitor ID when a user clicks on a URL that belongs to one of your domains. For this feature to work, you also have to configure which domains should be treated as local in your Piwik website settings. This feature requires Piwik 3.0.2.', 'wp-piwik' ), self::$settings->getGlobalOption ( 'track_mode' ) == 'proxy', 'wp-piwik-track-option wp-piwik-track-option-default wp-piwik-track-option-js wp-piwik-track-option-manually');
275
+
276
+ $this->showCheckbox ( 'track_feed', __ ( 'Track RSS feeds', 'wp-piwik' ), __ ( 'Enable to track posts in feeds via tracking pixel.', 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually' );
277
+
278
+ $this->showCheckbox ( 'track_feed_addcampaign', __ ( 'Track RSS feed links as campaign', 'wp-piwik' ), __ ( 'This will add Piwik campaign parameters to the RSS feed links.' . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="http://piwik.org/docs/tracking-campaigns/" target="_BLANK">', '</a>' ), 'wp-piwik' ), $isNotTracking, $fullGeneratedTrackingGroup . ' wp-piwik-track-option-manually', true, '$j(\'tr.wp-piwik-feed_campaign-option\').toggle(\'hidden\');' );
279
+
280
+ $this->showInput ( 'track_feed_campaign', __ ( 'RSS feed campaign', 'wp-piwik' ), __ ( 'Keyword: post name.', 'wp-piwik' ), $isNotGeneratedTracking || ! self::$settings->getGlobalOption ( 'track_feed_addcampaign' ), $fullGeneratedTrackingGroup . ' wp-piwik-feed_campaign-option' );
281
+
282
+ $this->showInput ( 'track_heartbeat', __ ( 'Enable heartbeat timer', 'wp-piwik' ), __ ( 'Enable a heartbeat timer to get more accurate visit lengths by sending periodical HTTP ping requests as long as the site is opened. Enter the time between the pings in seconds (Piwik default: 15) to enable or 0 to disable this feature. <strong>Note:</strong> This will cause a lot of additional HTTP requests on your site.', 'wp-piwik' ), $isNotGeneratedTracking, $fullGeneratedTrackingGroup );
283
+
284
+ $this->showSelect ( 'track_user_id', __ ( 'User ID Tracking', 'wp-piwik' ), array (
285
+ 'disabled' => __ ( 'Disabled', 'wp-piwik' ),
286
+ 'uid' => __ ( 'WP User ID', 'wp-piwik' ),
287
+ 'email' => __ ( 'Email Address', 'wp-piwik' ),
288
+ 'username' => __ ( 'Username', 'wp-piwik' ),
289
+ 'displayname' => __ ( 'Display Name (Not Recommended!)', 'wp-piwik' )
290
+ ), __ ( 'When a user is logged in to WordPress, track their &quot;User ID&quot;. You can select which field from the User\'s profile is tracked as the &quot;User ID&quot;. When enabled, Tracking based on Email Address is recommended.', 'wp-piwik' ), '', $isNotTracking, $fullGeneratedTrackingGroup );
291
+
292
+ echo $submitButton;
293
+ echo '</tbody></table><table id="expert" class="wp-piwik_menu-tab hidden"><tbody>';
294
+
295
+ $this->showText ( __ ( 'Usually, you do not need to change these settings. If you want to do so, you should know what you do or you got an expert\'s advice.', 'wp-piwik' ) );
296
+
297
+ $this->showCheckbox ( 'cache', __ ( 'Enable cache', 'wp-piwik' ), __ ( 'Cache API calls, which not contain today\'s values, for a week.', 'wp-piwik' ) );
298
+
299
+ if (function_exists('curl_init') && ini_get('allow_url_fopen'))
300
+ $this->showSelect ( 'http_connection', __ ( 'HTTP connection via', 'wp-piwik' ), array (
301
+ 'curl' => __ ( 'cURL', 'wp-piwik' ),
302
+ 'fopen' => __ ( 'fopen', 'wp-piwik' )
303
+ ), __('Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP or Cloud mode.', 'wp-piwik' ) );
304
+
305
+ $this->showSelect ( 'http_method', __ ( 'HTTP method', 'wp-piwik' ), array (
306
+ 'post' => __ ( 'POST', 'wp-piwik' ),
307
+ 'get' => __ ( 'GET', 'wp-piwik' )
308
+ ), __('Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode.', 'wp-piwik' ) );
309
+
310
+ $this->showCheckbox ( 'disable_timelimit', __ ( 'Disable time limit', 'wp-piwik' ), __ ( 'Use set_time_limit(0) if stats page causes a time out.', 'wp-piwik' ) );
311
+
312
+ $this->showInput ( 'connection_timeout', __ ( 'Connection timeout', 'wp-piwik' ), 'Define a connection timeout for all HTTP requests done by WP-Piwik in seconds.' );
313
+
314
+ $this->showCheckbox ( 'disable_ssl_verify', __ ( 'Disable SSL peer verification', 'wp-piwik' ), '(' . __ ( 'not recommended', 'wp-piwik' ) . ')' );
315
+ $this->showCheckbox ( 'disable_ssl_verify_host', __ ( 'Disable SSL host verification', 'wp-piwik' ), '(' . __ ( 'not recommended', 'wp-piwik' ) . ')' );
316
+
317
+ $this->showSelect ( 'piwik_useragent', __ ( 'User agent', 'wp-piwik' ), array (
318
+ 'php' => __ ( 'Use the PHP default user agent', 'wp-piwik' ) . (ini_get ( 'user_agent' ) ? '(' . ini_get ( 'user_agent' ) . ')' : ' (' . __ ( 'empty', 'wp-piwik' ) . ')'),
319
+ 'own' => __ ( 'Define a specific user agent', 'wp-piwik' )
320
+ ), 'WP-Piwik can send the default user agent defined by your PHP settings or use a specific user agent below. The user agent is send by WP-Piwik if HTTP requests are performed.', '$j(\'tr.wp-piwik-useragent-option\').toggleClass(\'hidden\');' );
321
+ $this->showInput ( 'piwik_useragent_string', __ ( 'Specific user agent', 'wp-piwik' ), 'Define a user agent description which is send by WP-Piwik if HTTP requests are performed.', self::$settings->getGlobalOption ( 'piwik_useragent' ) != 'own', 'wp-piwik-useragent-option' );
322
+
323
+ $this->showCheckbox ( 'dnsprefetch', __ ( 'Enable DNS prefetch', 'wp-piwik' ), __ ( 'Add a DNS prefetch tag.' . ' ' . sprintf ( __ ( 'See %sPiwik Blog%s.', 'wp-piwik' ), '<a target="_BLANK" href="https://piwik.org/blog/2017/04/important-performance-optimizations-load-piwik-javascript-tracker-faster/">', '</a>' ), 'wp-piwik' ) );
324
+
325
+ $this->showCheckbox ( 'track_datacfasync', __ ( 'Add data-cfasync=false', 'wp-piwik' ), __ ( 'Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script.' . ' ' . sprintf ( __ ( 'See %sCloudFlare Knowledge Base%s.', 'wp-piwik' ), '<a href="https://support.cloudflare.com/hc/en-us/articles/200169436-How-can-I-have-Rocket-Loader-ignore-my-script-s-in-Automatic-Mode-" target="_BLANK">', '</a>' ), 'wp-piwik' ) );
326
+
327
+ $this->showInput ( 'track_cdnurl', __ ( 'CDN URL', 'wp-piwik' ).' http://', 'Enter URL if you want to load the tracking code via CDN.' );
328
+
329
+ $this->showInput ( 'track_cdnurlssl', __ ( 'CDN URL (SSL)', 'wp-piwik' ).' https://', 'Enter URL if you want to load the tracking code via a separate SSL CDN.' );
330
+
331
+ $this->showSelect ( 'force_protocol', __ ( 'Force Piwik to use a specific protocol', 'wp-piwik' ), array (
332
+ 'disabled' => __ ( 'Disabled (default)', 'wp-piwik' ),
333
+ 'http' => __ ( 'http', 'wp-piwik' ),
334
+ 'https' => __ ( 'https (SSL)', 'wp-piwik' )
335
+ ), __ ( 'Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not work with a CDN URL.', 'wp-piwik' ) );
336
+
337
+ $this->showSelect ( 'update_notice', __ ( 'Update notice', 'wp-piwik' ), array (
338
+ 'enabled' => __ ( 'Show always if WP-Piwik is updated', 'wp-piwik' ),
339
+ 'script' => __ ( 'Show only if WP-Piwik is updated and settings were changed', 'wp-piwik' ),
340
+ 'disabled' => __ ( 'Disabled', 'wp-piwik' )
341
+ ), __ ( 'Choose if you want to get an update notice if WP-Piwik is updated.', 'wp-piwik' ) );
342
+
343
+ $this->showInput ( 'set_download_extensions', __ ( 'Define all file types for download tracking', 'wp-piwik' ), __ ( 'Replace Piwik\'s default file extensions for download tracking, divided by a vertical bar (&#124;). Leave blank to keep Piwik\'s default settings.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik documentation%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/guides/tracking-javascript-guide#file-extensions-for-tracking-downloads" target="_BLANK">', '</a>' ) );
344
+
345
+ $this->showInput ( 'set_download_classes', __ ( 'Set classes to be treated as downloads', 'wp-piwik' ), __ ( 'Set classes to be treated as downloads (in addition to piwik_download), divided by a vertical bar (&#124;). Leave blank to keep Piwik\'s default settings.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik JavaScript Tracking Client reference%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/api-reference/tracking-javascript" target="_BLANK">', '</a>' ) );
346
+
347
+ $this->showInput ( 'set_link_classes', __ ( 'Set classes to be treated as outlinks', 'wp-piwik' ), __ ( 'Set classes to be treated as outlinks (in addition to piwik_link), divided by a vertical bar (&#124;). Leave blank to keep Piwik\'s default settings.', 'wp-piwik' ) . ' ' . sprintf ( __ ( 'See %sPiwik JavaScript Tracking Client reference%s.', 'wp-piwik' ), '<a href="https://developer.piwik.org/api-reference/tracking-javascript" target="_BLANK">', '</a>' ) );
348
+
349
+ echo $submitButton;
350
+ ?>
351
+ </tbody>
352
+ </table>
353
+ <table id="support" class="wp-piwik_menu-tab hidden">
354
+ <tbody>
355
+ <tr><td colspan="2"><?php
356
+ echo $this->showSupport();
357
+ ?></td></tr>
358
+ </tbody>
359
+ </table>
360
+ <table id="credits" class="wp-piwik_menu-tab hidden">
361
+ <tbody>
362
+ <tr><td colspan="2"><?php
363
+ echo $this->showCredits();
364
+ ?></td></tr>
365
+ </tbody>
366
+ </table>
367
+ <input type="hidden" name="wp-piwik[proxy_url]"
368
+ value="<?php echo self::$settings->getGlobalOption('proxy_url'); ?>" />
369
+ </form>
370
+ </div>
371
+ <?php
372
+ }
373
+
374
+ /**
375
+ * Show an option's description
376
+ *
377
+ * @param string $id option id
378
+ * @param string $description option description
379
+ * @param boolean $hideDescription set to false to show description initially (default: true)
380
+ * @return string full description HTML
381
+ */
382
+ private function getDescription($id, $description, $hideDescription = true) {
383
+ return sprintf ( '<span class="dashicons dashicons-editor-help" onclick="$j(\'#%s-desc\').toggleClass(\'hidden\');"></span> <p class="description' . ($hideDescription ? ' hidden' : '') . '" id="%1$s-desc">%s</p>', $id, $description );
384
+ }
385
+
386
+ /**
387
+ * Show a checkbox option
388
+ *
389
+ * @param string $id option id
390
+ * @param string $name descriptive option name
391
+ * @param string $description option description
392
+ * @param boolean $isHidden set to true to initially hide the option (default: false)
393
+ * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
394
+ * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
395
+ * @param string $onChange javascript for onchange event (default: empty)
396
+ */
397
+ private function showCheckbox($id, $name, $description, $isHidden = false, $groupName = '', $hideDescription = true, $onChange = '') {
398
+ printf ( '<tr class="' . $groupName . ($isHidden ? ' hidden' : '') . '"><th scope="row"><label for="%2$s">%s</label>:</th><td><input type="checkbox" value="1"' . (self::$settings->getGlobalOption ( $id ) ? ' checked="checked"' : '') . ' onchange="$j(\'#%s\').val(this.checked?1:0);%s" /><input id="%2$s" type="hidden" name="wp-piwik[%2$s]" value="' . ( int ) self::$settings->getGlobalOption ( $id ) . '" /> %s</td></tr>', $name, $id, $onChange, $this->getDescription ( $id, $description, $hideDescription ) );
399
+ }
400
+
401
+ /**
402
+ * Show a textarea option
403
+ *
404
+ * @param string $id option id
405
+ * @param string $name descriptive option name
406
+ * @param int $rows number of rows to show
407
+ * @param string $description option description
408
+ * @param boolean $isHidden set to true to initially hide the option (default: false)
409
+ * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
410
+ * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
411
+ * @param string $onChange javascript for onchange event (default: empty)
412
+ * @param boolean $isReadonly set textarea to read only (default: false)
413
+ * @param boolean $global set to false if the textarea shows a site-specific option (default: true)
414
+ */
415
+ private function showTextarea($id, $name, $rows, $description, $isHidden, $groupName, $hideDescription = true, $onChange = '', $isReadonly = false, $global = true) {
416
+ printf (
417
+ '<tr class="' . $groupName . ($isHidden ? ' hidden' : '') . '"><th scope="row"><label for="%2$s">%s</label>:</th><td><textarea cols="80" rows="' . $rows . '" id="%s" name="wp-piwik[%2$s]" onchange="%s"' . ($isReadonly ? ' readonly="readonly"' : '') . '>%s</textarea> %s</td></tr>', $name, $id, $onChange, ($global ? self::$settings->getGlobalOption ( $id ) : self::$settings->getOption ( $id )), $this->getDescription ( $id, $description, $hideDescription ) );
418
+ }
419
+
420
+ /**
421
+ * Show a simple text
422
+ *
423
+ * @param string $text Text to show
424
+ */
425
+ private function showText($text) {
426
+ printf ( '<tr><td colspan="2"><p>%s</p></td></tr>', $text );
427
+ }
428
+
429
+ /**
430
+ * Show an input option
431
+ *
432
+ * @param string $id option id
433
+ * @param string $name descriptive option name
434
+ * @param string $description option description
435
+ * @param boolean $isHidden set to true to initially hide the option (default: false)
436
+ * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
437
+ * @param string $rowName define a class name to access the specific option row by javascript (default: empty)
438
+ * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
439
+ * @param boolean $wide Create a wide box (default: false)
440
+ */
441
+ private function showInput($id, $name, $description, $isHidden = false, $groupName = '', $rowName = false, $hideDescription = true, $wide = false) {
442
+ printf ( '<tr class="%s%s"%s><th scope="row"><label for="%5$s">%s:</label></th><td><input '.($wide?'class="wp-piwik-wide" ':'').'name="wp-piwik[%s]" id="%5$s" value="%s" /> %s</td></tr>', $isHidden ? 'hidden ' : '', $groupName ? $groupName : '', $rowName ? ' id="' . $groupName . '-' . $rowName . '"' : '', $name, $id, htmlentities(self::$settings->getGlobalOption( $id ), ENT_QUOTES, 'UTF-8', false), !empty($description) ? $this->getDescription ( $id, $description, $hideDescription ) : '' );
443
+ }
444
+
445
+ /**
446
+ * Show a select box option
447
+ *
448
+ * @param string $id option id
449
+ * @param string $name descriptive option name
450
+ * @param array $options list of options to show array[](option id => descriptive name)
451
+ * @param string $description option description
452
+ * @param string $onChange javascript for onchange event (default: empty)
453
+ * @param boolean $isHidden set to true to initially hide the option (default: false)
454
+ * @param string $groupName define a class name to access a group of option rows by javascript (default: empty)
455
+ * @param boolean $hideDescription $hideDescription set to false to show description initially (default: true)
456
+ * @param boolean $global set to false if the textarea shows a site-specific option (default: true)
457
+ */
458
+ private function showSelect($id, $name, $options = array(), $description = '', $onChange = '', $isHidden = false, $groupName = '', $hideDescription = true, $global = true) {
459
+ $optionList = '';
460
+ $default = $global ? self::$settings->getGlobalOption ( $id ) : self::$settings->getOption ( $id );
461
+ if (is_array ( $options ))
462
+ foreach ( $options as $key => $value )
463
+ $optionList .= sprintf ( '<option value="%s"' . ($key == $default ? ' selected="selected"' : '') . '>%s</option>', $key, $value );
464
+ printf ( '<tr class="' . $groupName . ($isHidden ? ' hidden' : '') . '"><th scope="row"><label for="%2$s">%s:</label></th><td><select name="wp-piwik[%s]" id="%2$s" onchange="%s">%s</select> %s</td></tr>', $name, $id, $onChange, $optionList, $this->getDescription ( $id, $description, $hideDescription ) );
465
+ }
466
+
467
+ /**
468
+ * Show an info box
469
+ *
470
+ * @param string $type box style (e.g., updated, error)
471
+ * @param string $icon box icon, see https://developer.wordpress.org/resource/dashicons/
472
+ * @param string $content box message
473
+ */
474
+ private function showBox($type, $icon, $content) {
475
+ printf ( '<tr><td colspan="2"><div class="%s"><p><span class="dashicons dashicons-%s"></span> %s</p></div></td></tr>', $type, $icon, $content );
476
+ }
477
+
478
+ /**
479
+ * Show headline
480
+ * @param int $order headline order (h?-tag), set to 0 to avoid headline-tagging
481
+ * @param string $icon headline icon, see https://developer.wordpress.org/resource/dashicons/
482
+ * @param string $headline headline text
483
+ * @param string $addPluginName set to true to add the plugin name to the headline (default: false)
484
+ */
485
+ private function showHeadline($order, $icon, $headline, $addPluginName = false) {
486
+ echo $this->getHeadline ( $order, $icon, $headline, $addPluginName = false );
487
+ }
488
+
489
+ /**
490
+ * Get headline HTML
491
+ *
492
+ * @param int $order headline order (h?-tag), set to 0 to avoid headline-tagging
493
+ * @param string $icon headline icon, see https://developer.wordpress.org/resource/dashicons/
494
+ * @param string $headline headline text
495
+ * @param string $addPluginName set to true to add the plugin name to the headline (default: false)
496
+ */
497
+ private function getHeadline($order, $icon, $headline, $addPluginName = false) {
498
+ echo ($order > 0 ? "<h$order>" : '') . sprintf ( '<span class="dashicons dashicons-%s"></span> %s%s', $icon, ($addPluginName ? self::$settings->getGlobalOption ( 'plugin_display_name' ) . ' ' : ''), __ ( $headline, 'wp-piwik' ) ) . ($order > 0 ? "</h$order>" : '');
499
+ }
500
+
501
+ /**
502
+ * Show donation info
503
+ */
504
+ private function showDonation() {
505
+ ?>
506
+ <div class="wp-piwik-donate">
507
+ <p>
508
+ <strong><?php _e('Donate','wp-piwik'); ?></strong>
509
+ </p>
510
+ <p>
511
+ <?php _e('If you like WP-Piwik, you can support its development by a donation:', 'wp-piwik'); ?>
512
+ </p>
513
+ <div>
514
+ <script id='fb0ahsp'>(function(i){var f,s=document.getElementById(i);f=document.createElement('iframe');f.src='//button.flattr.com/view/?fid=mkdp7z&url=https%3A%2F%2Fwww.braekling.de%2Fwp-piwik-wpmu-piwik-wordpress';f.title='Flattr';f.height=62;f.width=55;f.style.borderWidth=0;s.parentNode.insertBefore(f,s);})('fb0ahsp');</script>
515
+ </div>
516
+ <div>
517
+ Paypal
518
+ <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
519
+ <input type="hidden" name="cmd" value="_s-xclick" />
520
+ <input type="hidden" name="hosted_button_id" value="6046779" />
521
+ <input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_donateCC_LG.gif" name="submit" alt="PayPal - The safer, easier way to pay online." />
522
+ <img alt="" border="0" src="https://www.paypal.com/de_DE/i/scr/pixel.gif" width="1" height="1" />
523
+ </form>
524
+ </div>
525
+ <div>
526
+ <a href="bitcoin:32FMBngRne9wQ7XPFP2CfR25tjp3oa4roN">Bitcoin<br />
527
+ <img style="border:none;" src="<?php echo self::$wpPiwik->getPluginURL(); ?>bitcoin.png" width="100" height="100" alt="Bitcoin Address" title="32FMBngRne9wQ7XPFP2CfR25tjp3oa4roN" /></a>
528
+ </div>
529
+ <div>
530
+ <a href="http://www.amazon.de/gp/registry/wishlist/111VUJT4HP1RA?reveal=unpurchased&amp;filter=all&amp;sort=priority&amp;layout=standard&amp;x=12&amp;y=14"><?php _e('My Amazon.de wishlist', 'wp-piwik'); ?></a>
531
+ </div>
532
+ <div>
533
+ <?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a target="_BLANK" href="http://wordpress.org/extend/plugins/wp-piwik/">WordPress.org Plugin Directory</a>.
534
+ </div>
535
+ </div><?php
536
+ }
537
+
538
+ /**
539
+ * Register admin scripts
540
+ *
541
+ * @see \WP_Piwik\Admin::printAdminScripts()
542
+ */
543
+ public function printAdminScripts() {
544
+ wp_enqueue_script ( 'jquery' );
545
+ }
546
+
547
+ /**
548
+ * Extend admin header
549
+ *
550
+ * @see \WP_Piwik\Admin::extendAdminHeader()
551
+ */
552
+ public function extendAdminHeader() {
553
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
554
+ }
555
+
556
+ /**
557
+ * Show credits
558
+ */
559
+ public function showCredits() {
560
+ ?>
561
+ <p><strong><?php _e('Thank you very much for your donation', 'wp-piwik'); ?>:</strong> Marco L., Rolf W., Tobias U., Lars K., Donna F., Kevin D., Ramos S., Thomas M., John C., Andreas G., Ben M., Myra R. I., Carlos U. R.-S., Oleg I., M. N., Daniel K., James L., Jochen K., Cyril P., Thomas K., Patrik K., Zach, Sebastian W., Peakkom, Patrik K., Kati K., Helmut O., Valerie S., Jochen D., Atlas R., Harald W., Jan M., Addy K., Hans-Georg E.-B., Yvonne K., Andrew D., <?php _e('the Piwik team itself','wp-piwik');?><?php _e(', and all people flattering this','wp-piwik'); ?>!</p>
562
+ <p><?php _e('Graphs powered by <a href="http://www.jqplot.com/" target="_BLANK">jqPlot</a> (License: GPL 2.0 and MIT) and <a href="http://omnipotent.net/jquery.sparkline/" target="_BLANK">jQuery Sparklines</a> (License: New BSD License).','wp-piwik'); ?></p>
563
+ <p><?php _e('Thank you very much','wp-piwik'); ?> <a href="https://www.transifex.com/projects/p/wp-piwik/" target="_BLANK">Transifex Translation Community</a> <?php _e('for your translation work','wp-piwik'); ?>!</p>
564
+ <p><?php _e('Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better.','wp-piwik'); ?></p>
565
+ <p><?php _e('Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!','wp-piwik'); ?></p>
566
+ <?php
567
+ }
568
+
569
+ /**
570
+ * Show support information
571
+ */
572
+ public function showSupport() {
573
+ ?><ul>
574
+ <li><?php _e('The best place to get help:', 'wp-piwik'); ?> <a href="https://wordpress.org/support/plugin/wp-piwik" target="_BLANK"><?php _e('WP-Piwik support forum','wp-piwik'); ?></a></li>
575
+ <li><?php _e('Please don\'t forget to vote the compatibility at the','wp-piwik'); ?> <a href="http://wordpress.org/extend/plugins/wp-piwik/" target="_BLANK">WordPress.org Plugin Directory</a>.</li>
576
+ </ul>
577
+ <h3><?php _e('Debugging', 'wp-piwik'); ?></h3>
578
+ <p><?php _e('Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:', 'wp-piwik'); ?></p>
579
+ <ol>
580
+ <li><?php
581
+ _e('cURL is','wp-piwik');
582
+ echo ' <strong>'.(function_exists('curl_init')?'':__('not','wp-piwik')).' ';
583
+ _e('available','wp-piwik');
584
+ ?></strong>.</li>
585
+ <li><?php
586
+ _e('allow_url_fopen is','wp-piwik');
587
+ echo ' <strong>'.(ini_get('allow_url_fopen')?'':__('not','wp-piwik')).' ';
588
+ _e('enabled','wp-piwik');
589
+ ?></strong>.</li>
590
+ <li><strong><?php echo (((function_exists('curl_init') && ini_get('allow_url_fopen') && self::$settings->getGlobalOption('http_connection') == 'curl') || (function_exists('curl_init') && !ini_get('allow_url_fopen')))?__('cURL', 'wp-piwik'):__('fopen', 'wp-piwik')).' ('.(self::$settings->getGlobalOption('http_method')=='post'?__('POST','wp-piwik'):__('GET','wp-piwik')).')</strong> '.__('is used.', 'wp-piwik'); ?></li>
591
+ <?php if (self::$settings->getGlobalOption('piwik_mode') == 'php') { ?><li><?php
592
+ _e('Determined Piwik base URL is', 'wp-piwik');
593
+ echo ' <strong>'.(self::$settings->getGlobalOption('proxy_url')).'</strong>';
594
+ ?></li><?php } ?>
595
+ </ol>
596
+ <p><?php _e('Tools', 'wp-piwik'); ?>:</p>
597
+ <ol>
598
+ <li><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&testscript=1' ); ?>"><?php _e('Run testscript', 'wp-piwik'); ?></a></li>
599
+ <li><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&sitebrowser=1' ); ?>"><?php _e('Sitebrowser', 'wp-piwik'); ?></a></li>
600
+ <li><a href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&clear=1' ); ?>"><?php _e('Clear cache', 'wp-piwik'); ?></a></li>
601
+ <li><a onclick="return confirm('<?php _e('Are you sure you want to clear all settings?', 'wp-piwik'); ?>')" href="<?php echo admin_url( (self::$settings->checkNetworkActivation () ? 'network/settings' : 'options-general').'.php?page='.$_GET['page'].'&clear=2' ); ?>"><?php _e('Reset WP-Piwik', 'wp-piwik'); ?></a></li>
602
+ </ol>
603
+ <h3><?php _e('Latest support threads on WordPress.org', 'wp-piwik'); ?></h3><?php
604
+ $supportThreads = $this->readRSSFeed('http://wordpress.org/support/rss/plugin/wp-piwik');
605
+ if (!empty($supportThreads)) {
606
+ echo '<ol>';
607
+ foreach ($supportThreads as $supportThread)
608
+ echo '<li><a href="'.$supportThread['url'].'">'.$supportThread['title'].'</a></li>';
609
+ echo '</ol>';
610
+ }
611
+ }
612
+
613
+ /**
614
+ * Read RSS feed
615
+ *
616
+ * @param string $feed
617
+ * feed URL
618
+ * @param int $cnt
619
+ * item limit
620
+ * @return array feed items array[](title, url)
621
+ *
622
+ */
623
+ private function readRSSFeed($feed, $cnt = 5) {
624
+ $result = array ();
625
+ if (function_exists ( 'simplexml_load_file' ) && ! empty ( $feed )) {
626
+ $xml = @simplexml_load_file ( $feed );
627
+ if (! $xml || ! isset ( $xml->channel [0]->item ))
628
+ return array (
629
+ array (
630
+ 'title' => 'Can\'t read RSS feed.',
631
+ 'url' => $xml
632
+ )
633
+ );
634
+ foreach ( $xml->channel [0]->item as $item ) {
635
+ if ($cnt -- == 0)
636
+ break;
637
+ $result [] = array (
638
+ 'title' => $item->title [0],
639
+ 'url' => $item->link [0]
640
+ );
641
+ }
642
+ }
643
+ return $result;
644
+ }
645
+
646
+ /**
647
+ * Clear cache and reset settings
648
+ *
649
+ * @param boolean $clearSettings set to true to reset settings (default: false)
650
+ */
651
+ private function clear($clearSettings = false) {
652
+ if ($clearSettings) {
653
+ self::$settings->resetSettings();
654
+ $this->showBox ( 'updated', 'yes', __ ( 'Settings cleared (except connection settings).' ) );
655
+ }
656
+ global $wpdb;
657
+ if (self::$settings->checkNetworkActivation()) {
658
+ $aryBlogs = \WP_Piwik\Settings::getBlogList();
659
+ if (is_array($aryBlogs))
660
+ foreach ($aryBlogs as $aryBlog) {
661
+ switch_to_blog($aryBlog['blog_id']);
662
+ $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
663
+ $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
664
+ restore_current_blog();
665
+ }
666
+ } else {
667
+ $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_wp-piwik_%'");
668
+ $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE '_transient_timeout_wp-piwik_%'");
669
+ }
670
+ $this->showBox ( 'updated', 'yes', __ ( 'Cache cleared.' ) );
671
+ }
672
+
673
+ /**
674
+ * Execute test script and display results
675
+ */
676
+ private function runTestscript() { ?>
677
+ <div class="wp-piwik-debug">
678
+ <h2>Testscript Result</h2>
679
+ <?php
680
+ if (self::$wpPiwik->isConfigured()) {
681
+ if (isset($_GET['testscript_id']) && $_GET['testscript_id'])
682
+ switch_to_blog((int) $_GET['testscript_id']);
683
+ ?>
684
+ <textarea cols="80" rows="10"><?php
685
+ echo '`WP-Piwik '.self::$wpPiwik->getPluginVersion()."\nMode: ".self::$settings->getGlobalOption('piwik_mode')."\n\n";
686
+ ?>Test 1/3: global.getPiwikVersion<?php
687
+ $GLOBALS ['wp-piwik_debug'] = true;
688
+ $id = \WP_Piwik\Request::register ( 'API.getPiwikVersion', array() );
689
+ echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
690
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
691
+ $GLOBALS ['wp-piwik_debug'] = false;
692
+ ?>Test 2/3: SitesManager.getSitesWithAtLeastViewAccess<?php
693
+ $GLOBALS ['wp-piwik_debug'] = true;
694
+ $id = \WP_Piwik\Request::register ( 'SitesManager.getSitesWithAtLeastViewAccess', array() );
695
+ echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
696
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
697
+ $GLOBALS ['wp-piwik_debug'] = false;
698
+ ?>Test 3/3: SitesManager.getSitesIdFromSiteUrl<?php
699
+ $GLOBALS ['wp-piwik_debug'] = true;
700
+ $id = \WP_Piwik\Request::register ( 'SitesManager.getSitesIdFromSiteUrl', array (
701
+ 'url' => get_bloginfo ( 'url' )
702
+ ) );
703
+ echo "\n\n"; var_dump( self::$wpPiwik->request( $id ) ); echo "\n";
704
+ var_dump( self::$wpPiwik->request( $id, true ) ); echo "\n";
705
+ echo "\n\n"; var_dump( self::$settings->getDebugData() ); echo "`";
706
+ $GLOBALS ['wp-piwik_debug'] = false;
707
+ ?></textarea>
708
+ <?php
709
+ if (isset($_GET['testscript_id']) && $_GET['testscript_id'])
710
+ restore_current_blog();
711
+ } else echo '<p>Please configure WP-Piwik first.</p>';
712
+ ?>
713
+ </div>
714
+ <?php }
715
+
716
+ }
classes/WP_Piwik/Admin/Sitebrowser.php ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Admin;
4
+
5
+ if (! class_exists ( 'WP_List_Table' ))
6
+ require_once (ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
7
+
8
+ class Sitebrowser extends \WP_List_Table {
9
+
10
+ private $data = array (), $wpPiwik;
11
+
12
+ public function __construct($wpPiwik) {
13
+ $this->wpPiwik = $wpPiwik;
14
+ if( isset($_POST['s']) ){
15
+ $cnt = $this->prepare_items ($_POST['s']);
16
+ } else {
17
+ $cnt = $this->prepare_items ();
18
+ }
19
+ global $status, $page;
20
+ $this->showSearchForm();
21
+ parent::__construct ( array (
22
+ 'singular' => __ ( 'site', 'wp-piwik' ),
23
+ 'plural' => __ ( 'sites', 'wp-piwik' ),
24
+ 'ajax' => false
25
+ ) );
26
+ if ($cnt > 0)
27
+ $this->display ();
28
+ else
29
+ echo '<p>' . __ ( 'No site configured yet.', 'wp-piwik' ) . '</p>';
30
+ }
31
+
32
+ public function get_columns() {
33
+ $columns = array (
34
+ 'id' => __ ( 'Blog ID', 'wp-piwik' ),
35
+ 'name' => __ ( 'Title', 'wp-piwik' ),
36
+ 'siteurl' => __ ( 'URL', 'wp-piwik' ),
37
+ 'piwikid' => __ ( 'Site ID (Piwik)', 'wp-piwik' )
38
+ );
39
+ return $columns;
40
+ }
41
+
42
+ public function prepare_items($search = '') {
43
+ $current_page = $this->get_pagenum ();
44
+ $per_page = 10;
45
+ global $blog_id;
46
+ global $wpdb;
47
+ global $pagenow;
48
+ if (is_plugin_active_for_network ( 'wp-piwik/wp-piwik.php' )) {
49
+ $total_items = $wpdb->get_var ( $wpdb->prepare('SELECT COUNT(*) FROM ' . $wpdb->blogs . ' WHERE CONCAT(domain, path) LIKE "%%%s%%" AND spam = 0 AND deleted = 0', $search));
50
+ $blogs = \WP_Piwik\Settings::getBlogList($per_page, $current_page, $search);
51
+ foreach ( $blogs as $blog ) {
52
+ $blogDetails = get_blog_details ( $blog['blog_id'], true );
53
+ $this->data [] = array (
54
+ 'name' => $blogDetails->blogname,
55
+ 'id' => $blogDetails->blog_id,
56
+ 'siteurl' => $blogDetails->siteurl,
57
+ 'piwikid' => $this->wpPiwik->getPiwikSiteId ( $blogDetails->blog_id )
58
+ );
59
+ }
60
+ } else {
61
+ $blogDetails = get_bloginfo ();
62
+ $this->data [] = array (
63
+ 'name' => get_bloginfo ( 'name' ),
64
+ 'id' => '-',
65
+ 'siteurl' => get_bloginfo ( 'url' ),
66
+ 'piwikid' => $this->wpPiwik->getPiwikSiteId ()
67
+ );
68
+ $total_items = 1;
69
+ }
70
+ $columns = $this->get_columns ();
71
+ $hidden = array ();
72
+ $sortable = array ();
73
+ $this->_column_headers = array (
74
+ $columns,
75
+ $hidden,
76
+ $sortable
77
+ );
78
+ $this->set_pagination_args ( array (
79
+ 'total_items' => $total_items,
80
+ 'per_page' => $per_page
81
+ ) );
82
+ foreach ( $this->data as $key => $dataset ) {
83
+ if (empty ( $dataset ['piwikid'] ) || $dataset ['piwikid'] == 'n/a')
84
+ $this->data [$key] ['piwikid'] = __ ( 'Site not created yet.', 'wp-piwik' );
85
+ if ($this->wpPiwik->isNetworkMode ())
86
+ $this->data [$key] ['name'] = '<a href="index.php?page=wp-piwik_stats&wpmu_show_stats=' . $dataset ['id'] . '">' . $dataset ['name'] . '</a>';
87
+ }
88
+ $this->items = $this->data;
89
+ return count ( $this->items );
90
+ }
91
+
92
+ public function column_default($item, $column_name) {
93
+ switch ($column_name) {
94
+ case 'id' :
95
+ case 'name' :
96
+ case 'siteurl' :
97
+ case 'piwikid' :
98
+ return $item [$column_name];
99
+ default :
100
+ return print_r ( $item, true );
101
+ }
102
+ }
103
+
104
+ private function showSearchForm() {
105
+ ?>
106
+ <form method="post">
107
+ <input type="hidden" name="page" value="<?php echo filter_var($_REQUEST['page'], FILTER_SANITIZE_STRING) ?>" />
108
+ <?php $this->search_box('Search domain and path', 'wpPiwikSiteSearch'); ?>
109
+ </form>
110
+ <?php
111
+ }
112
+ }
classes/WP_Piwik/Admin/Statistics.php ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Admin;
4
+
5
+ class Statistics extends \WP_Piwik\Admin {
6
+
7
+ public function show() {
8
+ global $screen_layout_columns;
9
+ if (empty($screen_layout_columns)) $screen_layout_columns = 2;
10
+ if (self::$settings->getGlobalOption('disable_timelimit')) set_time_limit(0);
11
+ echo '<div id="wp-piwik-stats-general" class="wrap">';
12
+ echo '<h2>'.(self::$settings->getGlobalOption('plugin_display_name') == 'WP-Piwik'?'Piwik '.__('Statistics', 'wp-piwik'):self::$settings->getGlobalOption('plugin_display_name')).'</h2>';
13
+ if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
14
+
15
+ if (isset($_GET['wpmu_show_stats'])) {
16
+ switch_to_blog((int) $_GET['wpmu_show_stats']);
17
+ } elseif ((isset($_GET['overview']) && $_GET['overview']) || (function_exists('is_network_admin') && is_network_admin())) {
18
+ new \WP_Piwik\Admin\Sitebrowser(self::$wpPiwik);
19
+ return;
20
+ }
21
+ echo '<p>'.__('Currently shown stats:').' <a href="'.get_bloginfo('url').'">'.get_bloginfo('name').'</a>.'.' <a href="?page=wp-piwik_stats&overview=1">Show site overview</a>.</p>';
22
+ echo '</form>'."\n";
23
+ }
24
+ echo '<form action="admin-post.php" method="post"><input type="hidden" name="action" value="save_wp-piwik_stats_general" /><div id="dashboard-widgets" class="metabox-holder columns-'.$screen_layout_columns.(2 <= $screen_layout_columns?' has-right-sidebar':'').'">';
25
+ wp_nonce_field('wp-piwik_stats-general');
26
+ wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
27
+ wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
28
+ $columns = array('normal', 'side', 'column3');
29
+ for ($i = 0; $i < 3; $i++) {
30
+ echo '<div id="postbox-container-'.($i+1).'" class="postbox-container">';
31
+ do_meta_boxes(self::$wpPiwik->statsPageId, $columns[$i], null);
32
+ echo '</div>';
33
+ }
34
+ echo '</div></form></div>';
35
+ echo '<script type="text/javascript">//<![CDATA['."\n";
36
+ echo 'jQuery(document).ready(function($) {$(".if-js-closed").removeClass("if-js-closed").addClass("closed"); postboxes.add_postbox_toggles("'.self::$wpPiwik->statsPageId.'");});'."\n";
37
+ echo '//]]></script>'."\n";
38
+ if (self::$settings->checkNetworkActivation() && function_exists('is_super_admin') && is_super_admin()) {
39
+ restore_current_blog();
40
+ }
41
+ }
42
+
43
+ public function printAdminScripts() {
44
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
45
+ wp_enqueue_script('wp-piwik-jqplot', self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'), self::$wpPiwik->getPluginVersion());
46
+ }
47
+
48
+ public function extendAdminHeader() {
49
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.(self::$wpPiwik->getPluginURL()).'js/jqplot/excanvas.min.js"></script><![endif]-->';
50
+ echo '<link rel="stylesheet" href="'.(self::$wpPiwik->getPluginURL()).'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
51
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
52
+ }
53
+
54
+ }
classes/{WP_Piwik_Logger.php → WP_Piwik/Logger.php} RENAMED
@@ -1,6 +1,8 @@
1
  <?php
2
 
3
- abstract class WP_Piwik_Logger {
 
 
4
 
5
  private $loggerName = 'unnamed';
6
  private $loggerContent = array();
1
  <?php
2
 
3
+ namespace WP_Piwik;
4
+
5
+ abstract class Logger {
6
 
7
  private $loggerName = 'unnamed';
8
  private $loggerContent = array();
classes/WP_Piwik/Logger/Dummy.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Logger;
4
+
5
+ class Dummy extends \WP_Piwik\Logger {
6
+
7
+ public function loggerOutput($loggerTime, $loggerMessage) {}
8
+
9
+ }
classes/{WP_Piwik_Logger_File.php → WP_Piwik/Logger/File.php} RENAMED
@@ -1,8 +1,8 @@
1
  <?php
2
-
3
- require_once('WP_Piwik_Logger.php');
4
 
5
- class WP_Piwik_Logger_File extends WP_Piwik_Logger {
 
 
6
 
7
  private $loggerFile = null;
8
 
@@ -13,7 +13,7 @@
13
  }
14
 
15
  private function setFilename() {
16
- $this->loggerFile = dirname(__FILE__).DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'logs'.DIRECTORY_SEPARATOR.
17
  date('Ymd').'_'.$this->encodeFilename($this->getName()).'.log';
18
  }
19
 
1
  <?php
 
 
2
 
3
+ namespace WP_Piwik\Logger;
4
+
5
+ class File extends \WP_Piwik\Logger {
6
 
7
  private $loggerFile = null;
8
 
13
  }
14
 
15
  private function setFilename() {
16
+ $this->loggerFile = WP_PIWIK_PATH.'logs'.DIRECTORY_SEPARATOR.
17
  date('Ymd').'_'.$this->encodeFilename($this->getName()).'.log';
18
  }
19
 
classes/WP_Piwik/Logger/Screen.php ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Logger;
4
+
5
+ class Screen extends \WP_Piwik\Logger {
6
+
7
+ private $logs = array();
8
+
9
+ private function formatMicrotime($loggerTime) {
10
+ return sprintf('[%6s sec]',number_format($loggerTime,3));
11
+ }
12
+
13
+ public function __construct($loggerName) {
14
+ add_action(is_admin()?'admin_footer':'wp_footer', array($this, 'echoResults'));
15
+ parent::__construct($loggerName);
16
+ }
17
+
18
+ public function loggerOutput($loggerTime, $loggerMessage) {
19
+ $this->logs[] = $this->formatMicrotime($loggerTime).' '.$loggerMessage;
20
+ }
21
+
22
+ public function echoResults() {
23
+ echo '<pre>';
24
+ print_r($this->logs);
25
+ echo '</pre>';
26
+ }
27
+ }
classes/WP_Piwik/Request.php ADDED
@@ -0,0 +1,95 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ abstract class Request {
6
+
7
+ protected static $wpPiwik, $settings, $debug, $lastError = '', $requests = array(), $results = array(), $isCacheable = array(), $piwikVersion;
8
+
9
+ public function __construct($wpPiwik, $settings) {
10
+ self::$wpPiwik = $wpPiwik;
11
+ self::$settings = $settings;
12
+ self::register('API.getPiwikVersion', array());
13
+ }
14
+
15
+ public function reset() {
16
+ self::$debug = null;
17
+ self::$requests = array();
18
+ self::$results = array();
19
+ self::$isCacheable = array();
20
+ self::$piwikVersion = null;
21
+ }
22
+
23
+ public static function register($method, $parameter) {
24
+ if ($method == 'API.getPiwikVersion')
25
+ $id = 'global.getPiwikVersion';
26
+ else
27
+ $id = 'method='.$method.self::parameterToString($parameter);
28
+ if (
29
+ in_array( $method, array( 'API.getPiwikVersion', 'SitesManager.getJavascriptTag', 'SitesManager.getSitesWithAtLeastViewAccess', 'SitesManager.getSitesIdFromSiteUrl', 'SitesManager.addSite', 'SitesManager.updateSite', 'SitesManager.getSitesWithAtLeastViewAccess' ) ) ||
30
+ !isset( $parameter['date'] ) ||
31
+ !isset( $parameter['period'] ) ||
32
+ substr($parameter['date'], 0, 4) == 'last' ||
33
+ $parameter['date'] == 'today' ||
34
+ ( $parameter['period'] == 'day' && $parameter['date'] == date('Ymd') ) ||
35
+ ( $parameter['period'] == 'month' && $parameter['date'] == date('Ym') ) ||
36
+ ( $parameter['period'] == 'week' && $parameter['date'] == date( 'Ymd', strtotime( "last Monday" ) ) )
37
+ ) self::$isCacheable[$id] = false;
38
+ else self::$isCacheable[$id] = $method.'-'.serialize($parameter);
39
+ if (!isset(self::$requests[$id]))
40
+ self::$requests[$id] = array('method' => $method, 'parameter' => $parameter);
41
+ return $id;
42
+ }
43
+
44
+ private static function parameterToString($parameter) {
45
+ $return = '';
46
+ if (is_array($parameter))
47
+ foreach ($parameter as $key => $value)
48
+ $return .= '&'.$key.'='.$value;
49
+ return $return;
50
+ }
51
+
52
+ public function perform($id) {
53
+ if ( self::$settings->getGlobalOption('cache') && false !== ( $cached = get_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id] ) ) ) ) {
54
+ if (!empty ( $cached ) && !(! empty ( $cached['result'] ) && $cached['result'] == 'error') ) {
55
+ self::$wpPiwik->log("Deliver cached data: ".$id);
56
+ return $cached;
57
+ }
58
+ }
59
+ self::$wpPiwik->log("Perform request: ".$id);
60
+ if (!isset(self::$requests[$id]))
61
+ return array('result' => 'error', 'message' => 'Request '.$id.' was not registered.');
62
+ elseif (!isset(self::$results[$id])) {
63
+ $this->request($id);
64
+ }
65
+ if ( isset ( self::$results[$id] ) ) {
66
+ if ( self::$settings->getGlobalOption('cache') && self::$isCacheable[$id] ) {
67
+ set_transient( 'wp-piwik_c_'.md5(self::$isCacheable[$id]) , self::$results[$id], WEEK_IN_SECONDS );
68
+ }
69
+ return self::$results[$id];
70
+ } else return false;
71
+ }
72
+
73
+ public function getDebug($id) {
74
+ return isset( self::$debug[$id] )? self::$debug[$id] : false;
75
+ }
76
+
77
+ protected function buildURL($config, $urlDecode = false) {
78
+ $url = 'method='.($config['method']).'&idSite='.self::$settings->getOption('site_id');
79
+ foreach ($config['parameter'] as $key => $value)
80
+ $url .= '&'.$key.'='.($urlDecode?urldecode($value):$value);
81
+ return $url;
82
+ }
83
+
84
+ protected function unserialize($str) {
85
+ self::$wpPiwik->log("Result string: ".$str);
86
+ return ($str == json_decode(false, true) || @json_decode($str, true) !== false)?json_decode($str, true):array();
87
+ }
88
+
89
+ public static function getLastError() {
90
+ return self::$lastError;
91
+ }
92
+
93
+ abstract protected function request($id);
94
+
95
+ }
classes/WP_Piwik/Request/Php.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Request;
4
+
5
+ class Php extends \WP_Piwik\Request {
6
+
7
+ private static $piwikEnvironment = false;
8
+
9
+ protected function request($id) {
10
+ $count = 0;
11
+ $url = self::$settings->getGlobalOption('piwik_url');
12
+ foreach (self::$requests as $requestID => $config) {
13
+ if (!isset(self::$results[$requestID])) {
14
+ $params = 'module=API&format=json&'.$this->buildURL($config, true);
15
+ $map[$count] = $requestID;
16
+ $result = $this->call($id, $url, $params);
17
+ self::$results[$map[$count]] = $result;
18
+ $count++;
19
+ }
20
+ }
21
+ }
22
+
23
+ private function call($id, $url, $params) {
24
+ if (!defined('PIWIK_INCLUDE_PATH'))
25
+ return false;
26
+ if (PIWIK_INCLUDE_PATH === FALSE)
27
+ return array('result' => 'error', 'message' => __('Could not resolve','wp-piwik').' &quot;'.htmlentities(self::$settings->getGlobalOption('piwik_path')).'&quot;: '.__('realpath() returns false','wp-piwik').'.');
28
+ if (file_exists(PIWIK_INCLUDE_PATH . "/index.php"))
29
+ require_once PIWIK_INCLUDE_PATH . "/index.php";
30
+ if (file_exists(PIWIK_INCLUDE_PATH . "/core/API/Request.php"))
31
+ require_once PIWIK_INCLUDE_PATH . "/core/API/Request.php";
32
+ if (class_exists('\Piwik\Application\Environment') && !self::$piwikEnvironment) {
33
+ // Piwik 2.14.* compatibility fix
34
+ self::$piwikEnvironment = new \Piwik\Application\Environment(null);
35
+ self::$piwikEnvironment->init();
36
+ }
37
+ if (class_exists('Piwik\FrontController'))
38
+ \Piwik\FrontController::getInstance()->init();
39
+ else return array('result' => 'error', 'message' => __('Class Piwik\FrontController does not exists.','wp-piwik'));
40
+ if (class_exists('Piwik\API\Request'))
41
+ $request = new \Piwik\API\Request($params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
42
+ else return array('result' => 'error', 'message' => __('Class Piwik\API\Request does not exists.','wp-piwik'));
43
+ if (isset($request))
44
+ $result = $request->process();
45
+ else $result = null;
46
+ if (!headers_sent())
47
+ header("Content-Type: text/html", true);
48
+ $result = $this->unserialize($result);
49
+ if ($GLOBALS ['wp-piwik_debug'])
50
+ self::$debug[$id] = array ( $params.'&token_auth=...' );
51
+ return $result;
52
+ }
53
+ }
classes/WP_Piwik/Request/Rest.php ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Request;
4
+
5
+ class Rest extends \WP_Piwik\Request {
6
+
7
+ protected function request($id) {
8
+ $count = 0;
9
+ $url = self::$settings->getGlobalOption('piwik_mode') == 'http'?
10
+ self::$settings->getGlobalOption('piwik_url'):
11
+ 'https://'.self::$settings->getGlobalOption('piwik_user').'.innocraft.cloud/';
12
+ $params = 'module=API&method=API.getBulkRequest&format=json';
13
+ foreach (self::$requests as $requestID => $config) {
14
+ if (!isset(self::$results[$requestID])) {
15
+ $params .= '&urls['.$count.']='.urlencode($this->buildURL($config));
16
+ $map[$count] = $requestID;
17
+ $count++;
18
+ }
19
+ }
20
+ $results = ((function_exists('curl_init') && ini_get('allow_url_fopen') && self::$settings->getGlobalOption('http_connection') == 'curl') || (function_exists('curl_init') && !ini_get('allow_url_fopen')))?$this->curl($id, $url, $params):$this->fopen($id, $url, $params);
21
+ if (is_array($results))
22
+ foreach ($results as $num => $result)
23
+ if (isset($map[$num]))
24
+ self::$results[$map[$num]] = $result;
25
+ }
26
+
27
+ private function curl($id, $url, $params) {
28
+ if (self::$settings->getGlobalOption('http_method')=='post') {
29
+ $c = curl_init($url);
30
+ curl_setopt($c, CURLOPT_POST, 1);
31
+ curl_setopt($c, CURLOPT_POSTFIELDS, $params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
32
+ } else $c = curl_init($url.'?'.$params.'&token_auth='.self::$settings->getGlobalOption('piwik_token'));
33
+ curl_setopt($c, CURLOPT_SSL_VERIFYPEER, !self::$settings->getGlobalOption('disable_ssl_verify'));
34
+ curl_setopt($c, CURLOPT_SSL_VERIFYHOST, !self::$settings->getGlobalOption('disable_ssl_verify_host')?2:0);
35
+ curl_setopt($c, CURLOPT_USERAGENT, self::$settings->getGlobalOption('piwik_useragent')=='php'?ini_get('user_agent'):self::$settings->getGlobalOption('piwik_useragent_string'));
36
+ curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
37
+ curl_setopt($c, CURLOPT_HEADER, $GLOBALS ['wp-piwik_debug'] );
38
+ curl_setopt($c, CURLOPT_TIMEOUT, self::$settings->getGlobalOption('connection_timeout'));
39
+ $httpProxyClass = new \WP_HTTP_Proxy();
40
+ if ($httpProxyClass->is_enabled() && $httpProxyClass->send_through_proxy($url)) {
41
+ curl_setopt($c, CURLOPT_PROXY, $httpProxyClass->host());
42
+ curl_setopt($c, CURLOPT_PROXYPORT, $httpProxyClass->port());
43
+ if ($httpProxyClass->use_authentication())
44
+ curl_setopt($c, CURLOPT_PROXYUSERPWD, $httpProxyClass->username().':'.$httpProxyClass->password());
45
+ }
46
+ $result = curl_exec($c);
47
+ self::$lastError = curl_error($c);
48
+ if ($GLOBALS ['wp-piwik_debug']) {
49
+ $header_size = curl_getinfo($c, CURLINFO_HEADER_SIZE);
50
+ $header = substr($result, 0, $header_size);
51
+ $body = substr($result, $header_size);
52
+ $result = $this->unserialize($body);
53
+ self::$debug[$id] = array ( $header, $url.'?'.$params.'&token_auth=...' );
54
+ } else $result = $this->unserialize($result);
55
+ curl_close($c);
56
+ return $result;
57
+ }
58
+
59
+ private function fopen($id, $url, $params) {
60
+ $contextDefinition = array('http'=>array('timeout' => self::$settings->getGlobalOption('connection_timeout'), 'header' => "Content-type: application/x-www-form-urlencoded\r\n") );
61
+ $contextDefinition['ssl'] = array();
62
+ if (self::$settings->getGlobalOption('disable_ssl_verify'))
63
+ $contextDefinition['ssl'] = array('allow_self_signed' => true, 'verify_peer' => false );
64
+ if (self::$settings->getGlobalOption('disable_ssl_verify_host'))
65
+ $contextDefinition['ssl']['verify_peer_name'] = false;
66
+ if (self::$settings->getGlobalOption('http_method')=='post') {
67
+ $fullUrl = $url;
68
+ $contextDefinition['http']['method'] = 'POST';
69
+ $contextDefinition['http']['content'] = $params.'&token_auth='.self::$settings->getGlobalOption('piwik_token');
70
+ } else $fullUrl = $url.'?'.$params.'&token_auth='.self::$settings->getGlobalOption('piwik_token');
71
+ $context = stream_context_create($contextDefinition);
72
+ $result = $this->unserialize(@file_get_contents($fullUrl, false, $context));
73
+ if ($GLOBALS ['wp-piwik_debug'])
74
+ self::$debug[$id] = array ( get_headers($fullUrl, 1), $url.'?'.$params.'&token_auth=...' );
75
+ return $result;
76
+ }
77
+ }
classes/WP_Piwik/Settings.php ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ /**
6
+ * Manage WP-Piwik settings
7
+ *
8
+ * @author Andr&eacute; Br&auml;kling
9
+ * @package WP_Piwik
10
+ */
11
+ class Settings {
12
+
13
+ /**
14
+ *
15
+ * @var Environment variables and default settings container
16
+ */
17
+ private static $wpPiwik, $defaultSettings;
18
+
19
+ /**
20
+ *
21
+ * @var Define callback functions for changed settings
22
+ */
23
+ private $checkSettings = array (
24
+ 'piwik_url' => 'checkPiwikUrl',
25
+ 'piwik_token' => 'checkPiwikToken',
26
+ 'site_id' => 'requestPiwikSiteID',
27
+ 'tracking_code' => 'prepareTrackingCode',
28
+ 'noscript_code' => 'prepareNocscriptCode'
29
+ );
30
+
31
+ /**
32
+ *
33
+ * @var Register default configuration set
34
+ */
35
+ private $globalSettings = array (
36
+ // Plugin settings
37
+ 'revision' => 0,
38
+ 'last_settings_update' => 0,
39
+ // User settings: Piwik configuration
40
+ 'piwik_mode' => 'http',
41
+ 'piwik_url' => '',
42
+ 'piwik_path' => '',
43
+ 'piwik_user' => '',
44
+ 'piwik_token' => '',
45
+ 'auto_site_config' => true,
46
+ // User settings: Stats configuration
47
+ 'default_date' => 'yesterday',
48
+ 'stats_seo' => false,
49
+ 'stats_ecommerce' => false,
50
+ 'dashboard_widget' => false,
51
+ 'dashboard_ecommerce' => false,
52
+ 'dashboard_chart' => false,
53
+ 'dashboard_seo' => false,
54
+ 'toolbar' => false,
55
+ 'capability_read_stats' => array (
56
+ 'administrator' => true
57
+ ),
58
+ 'perpost_stats' => false,
59
+ 'plugin_display_name' => 'WP-Piwik',
60
+ 'piwik_shortcut' => false,
61
+ 'shortcodes' => false,
62
+ // User settings: Tracking configuration
63
+ 'track_mode' => 'disabled',
64
+ 'track_codeposition' => 'footer',
65
+ 'track_noscript' => false,
66
+ 'track_nojavascript' => false,
67
+ 'proxy_url' => '',
68
+ 'track_content' => 'disabled',
69
+ 'track_search' => false,
70
+ 'track_404' => false,
71
+ 'add_post_annotations' => array(),
72
+ 'add_customvars_box' => false,
73
+ 'add_download_extensions' => '',
74
+ 'set_download_extensions' => '',
75
+ 'set_link_classes' => '',
76
+ 'set_download_classes' => '',
77
+ 'disable_cookies' => false,
78
+ 'limit_cookies' => false,
79
+ 'limit_cookies_visitor' => 34186669, // Piwik default 13 months
80
+ 'limit_cookies_session' => 1800, // Piwik default 30 minutes
81
+ 'limit_cookies_referral' => 15778463, // Piwik default 6 months
82
+ 'track_admin' => false,
83
+ 'capability_stealth' => array (),
84
+ 'track_across' => false,
85
+ 'track_across_alias' => false,
86
+ 'track_crossdomain_linking' => false,
87
+ 'track_feed' => false,
88
+ 'track_feed_addcampaign' => false,
89
+ 'track_feed_campaign' => 'feed',
90
+ 'track_heartbeat' => 0,
91
+ 'track_user_id' => 'disabled',
92
+ // User settings: Expert configuration
93
+ 'cache' => true,
94
+ 'http_connection' => 'curl',
95
+ 'http_method' => 'post',
96
+ 'disable_timelimit' => false,
97
+ 'connection_timeout' => 5,
98
+ 'disable_ssl_verify' => false,
99
+ 'disable_ssl_verify_host' => false,
100
+ 'piwik_useragent' => 'php',
101
+ 'piwik_useragent_string' => 'WP-Piwik',
102
+ 'dnsprefetch' => false,
103
+ 'track_datacfasync' => false,
104
+ 'track_cdnurl' => '',
105
+ 'track_cdnurlssl' => '',
106
+ 'force_protocol' => 'disabled',
107
+ 'update_notice' => 'enabled'
108
+ ), $settings = array (
109
+ 'name' => '',
110
+ 'site_id' => NULL,
111
+ 'noscript_code' => '',
112
+ 'tracking_code' => '',
113
+ 'last_tracking_code_update' => 0,
114
+ 'dashboard_revision' => 0
115
+ ), $settingsChanged = false;
116
+
117
+ /**
118
+ * Constructor class to prepare settings manager
119
+ *
120
+ * @param WP_Piwik $wpPiwik
121
+ * active WP-Piwik instance
122
+ */
123
+ public function __construct($wpPiwik) {
124
+ self::$wpPiwik = $wpPiwik;
125
+ self::$wpPiwik->log ( 'Store default settings' );
126
+ self::$defaultSettings = array (
127
+ 'globalSettings' => $this->globalSettings,
128
+ 'settings' => $this->settings
129
+ );
130
+ self::$wpPiwik->log ( 'Load settings' );
131
+ foreach ( $this->globalSettings as $key => $default ) {
132
+ $this->globalSettings [$key] = ($this->checkNetworkActivation () ? get_site_option ( 'wp-piwik_global-' . $key, $default ) : get_option ( 'wp-piwik_global-' . $key, $default ));
133
+ }
134
+ foreach ( $this->settings as $key => $default )
135
+ $this->settings [$key] = get_option ( 'wp-piwik-' . $key, $default );
136
+ }
137
+
138
+ /**
139
+ * Save all settings as WordPress options
140
+ */
141
+ public function save() {
142
+ if (! $this->settingsChanged) {
143
+ self::$wpPiwik->log ( 'No settings changed yet' );
144
+ return;
145
+ }
146
+ self::$wpPiwik->log ( 'Save settings' );
147
+ foreach ( $this->globalSettings as $key => $value ) {
148
+ if ( $this->checkNetworkActivation() )
149
+ update_site_option ( 'wp-piwik_global-' . $key, $value );
150
+ else
151
+ update_option ( 'wp-piwik_global-' . $key, $value );
152
+ }
153
+ foreach ( $this->settings as $key => $value ) {
154
+ update_option ( 'wp-piwik-' . $key, $value );
155
+ }
156
+ global $wp_roles;
157
+ if (! is_object ( $wp_roles ))
158
+ $wp_roles = new \WP_Roles ();
159
+ if (! is_object ( $wp_roles ))
160
+ die ( "STILL NO OBJECT" );
161
+ foreach ( $wp_roles->role_names as $strKey => $strName ) {
162
+ $objRole = get_role ( $strKey );
163
+ foreach ( array (
164
+ 'stealth',
165
+ 'read_stats'
166
+ ) as $strCap ) {
167
+ $aryCaps = $this->getGlobalOption ( 'capability_' . $strCap );
168
+ if (isset ( $aryCaps [$strKey] ) && $aryCaps [$strKey])
169
+ $wp_roles->add_cap ( $strKey, 'wp-piwik_' . $strCap );
170
+ else $wp_roles->remove_cap ( $strKey, 'wp-piwik_' . $strCap );
171
+ }
172
+ }
173
+ $this->settingsChanged = false;
174
+ }
175
+
176
+ /**
177
+ * Get a global option's value
178
+ *
179
+ * @param string $key
180
+ * option key
181
+ * @return string option value
182
+ */
183
+ public function getGlobalOption($key) {
184
+ return isset ( $this->globalSettings [$key] ) ? $this->globalSettings [$key] : self::$defaultSettings ['globalSettings'] [$key];
185
+ }
186
+
187
+ /**
188
+ * Get an option's value related to a specific blog
189
+ *
190
+ * @param string $key
191
+ * option key
192
+ * @param int $blogID
193
+ * blog ID (default: current blog)
194
+ * @return \WP_Piwik\Register
195
+ */
196
+ public function getOption($key, $blogID = null) {
197
+ if ($this->checkNetworkActivation () && ! empty ( $blogID )) {
198
+ return get_blog_option ( $blogID, 'wp-piwik-'.$key );
199
+ }
200
+ return isset ( $this->settings [$key] ) ? $this->settings [$key] : self::$defaultSettings ['settings'] [$key];
201
+ }
202
+
203
+ /**
204
+ * Set a global option's value
205
+ *
206
+ * @param string $key
207
+ * option key
208
+ * @param string $value
209
+ * new option value
210
+ */
211
+ public function setGlobalOption($key, $value) {
212
+ $this->settingsChanged = true;
213
+ self::$wpPiwik->log ( 'Changed global option ' . $key . ': ' . (is_array ( $value ) ? serialize ( $value ) : $value) );
214
+ $this->globalSettings [$key] = $value;
215
+ }
216
+
217
+ /**
218
+ * Set an option's value related to a specific blog
219
+ *
220
+ * @param string $key
221
+ * option key
222
+ * @param int $blogID
223
+ * blog ID (default: current blog)
224
+ * @param string $value
225
+ * new option value
226
+ */
227
+ public function setOption($key, $value, $blogID = null) {
228
+ $this->settingsChanged = true;
229
+ self::$wpPiwik->log ( 'Changed option ' . $key . ': ' . $value );
230
+ if ($this->checkNetworkActivation () && ! empty ( $blogID )) {
231
+ add_blog_option ( $blogID, 'wp-piwik-'.$key, $value );
232
+ } else
233
+ $this->settings [$key] = $value;
234
+ }
235
+
236
+ /**
237
+ * Reset settings to default
238
+ */
239
+ public function resetSettings() {
240
+ self::$wpPiwik->log ( 'Reset WP-Piwik settings' );
241
+ global $wpdb;
242
+ if ( $this->checkNetworkActivation() ) {
243
+ $aryBlogs = self::getBlogList();
244
+ if (is_array($aryBlogs))
245
+ foreach ($aryBlogs as $aryBlog) {
246
+ switch_to_blog($aryBlog['blog_id']);
247
+ $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik-%'");
248
+ restore_current_blog();
249
+ }
250
+ $wpdb->query("DELETE FROM $wpdb->sitemeta WHERE meta_key LIKE 'wp-piwik_global-%'");
251
+ }
252
+ else $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'wp-piwik_global-%'");
253
+ }
254
+
255
+ /**
256
+ * Get blog list
257
+ */
258
+ public static function getBlogList($limit = null, $page = null, $search = '') {
259
+ if ($limit && $page)
260
+ $queryLimit = ' LIMIT '.(int) (($page - 1) * $limit).','.(int) $limit;
261
+ global $wpdb;
262
+ return $wpdb->get_results($wpdb->prepare('SELECT blog_id FROM '.$wpdb->blogs.' WHERE CONCAT(domain, path) LIKE "%%%s%%" AND spam = 0 AND deleted = 0 ORDER BY blog_id'.$queryLimit, $search), ARRAY_A);
263
+ }
264
+
265
+ /**
266
+ * Check if plugin is network activated
267
+ *
268
+ * @return boolean Is network activated?
269
+ */
270
+ public function checkNetworkActivation() {
271
+ if (! function_exists ( "is_plugin_active_for_network" ))
272
+ require_once (ABSPATH . 'wp-admin/includes/plugin.php');
273
+ return is_plugin_active_for_network ( 'wp-piwik/wp-piwik.php' );
274
+ }
275
+
276
+ /**
277
+ * Apply new configuration
278
+ *
279
+ * @param array $in
280
+ * new configuration set
281
+ */
282
+ public function applyChanges($in) {
283
+ if (!self::$wpPiwik->isValidOptionsPost())
284
+ die("Invalid config changes.");
285
+ $in = $this->checkSettings ( $in );
286
+ self::$wpPiwik->log ( 'Apply changed settings:' );
287
+ foreach ( self::$defaultSettings ['globalSettings'] as $key => $val )
288
+ $this->setGlobalOption ( $key, isset ( $in [$key] ) ? $in [$key] : $val );
289
+ foreach ( self::$defaultSettings ['settings'] as $key => $val )
290
+ $this->setOption ( $key, isset ( $in [$key] ) ? $in [$key] : $val );
291
+ $this->setGlobalOption ( 'last_settings_update', time () );
292
+ $this->save ();
293
+ }
294
+
295
+ /**
296
+ * Apply callback function on new settings
297
+ *
298
+ * @param array $in
299
+ * new configuration set
300
+ * @return array configuration set after callback functions were applied
301
+ */
302
+ private function checkSettings($in) {
303
+ foreach ( $this->checkSettings as $key => $value )
304
+ if (isset ( $in [$key] ))
305
+ $in [$key] = call_user_func_array ( array (
306
+ $this,
307
+ $value
308
+ ), array (
309
+ $in [$key],
310
+ $in
311
+ ) );
312
+ return $in;
313
+ }
314
+
315
+ /**
316
+ * Add slash to Piwik URL if necessary
317
+ *
318
+ * @param string $value
319
+ * Piwik URL
320
+ * @param array $in
321
+ * configuration set
322
+ * @return string Piwik URL
323
+ */
324
+ private function checkPiwikUrl($value, $in) {
325
+ return substr ( $value, - 1, 1 ) != '/' ? $value . '/' : $value;
326
+ }
327
+
328
+ /**
329
+ * Remove &amp;token_auth= from auth token
330
+ *
331
+ * @param string $value
332
+ * Piwik auth token
333
+ * @param array $in
334
+ * configuration set
335
+ * @return string Piwik auth token
336
+ */
337
+ private function checkPiwikToken($value, $in) {
338
+ return str_replace ( '&token_auth=', '', $value );
339
+ }
340
+
341
+ /**
342
+ * Request the site ID (if not set before)
343
+ *
344
+ * @param string $value
345
+ * tracking code
346
+ * @param array $in
347
+ * configuration set
348
+ * @return int Piwik site ID
349
+ */
350
+ private function requestPiwikSiteID($value, $in) {
351
+ if ($in ['auto_site_config'] && ! $value)
352
+ return self::$wpPiwik->getPiwikSiteId();
353
+ return $value;
354
+ }
355
+
356
+ /**
357
+ * Prepare the tracking code
358
+ *
359
+ * @param string $value
360
+ * tracking code
361
+ * @param array $in
362
+ * configuration set
363
+ * @return string tracking code
364
+ */
365
+ private function prepareTrackingCode($value, $in) {
366
+ if ($in ['track_mode'] == 'manually' || $in ['track_mode'] == 'disabled') {
367
+ $value = stripslashes ( $value );
368
+ if ($this->checkNetworkActivation ())
369
+ add_site_option ( 'wp-piwik-manually', $value );
370
+ return $value;
371
+ }
372
+ /*$result = self::$wpPiwik->updateTrackingCode ();
373
+ echo '<pre>'; print_r($result); echo '</pre>';
374
+ $this->setOption ( 'noscript_code', $result ['noscript'] );*/
375
+ return; // $result ['script'];
376
+ }
377
+
378
+ /**
379
+ * Prepare the nocscript code
380
+ *
381
+ * @param string $value
382
+ * noscript code
383
+ * @param array $in
384
+ * configuration set
385
+ * @return string noscript code
386
+ */
387
+ private function prepareNocscriptCode($value, $in) {
388
+ if ($in ['track_mode'] == 'manually')
389
+ return stripslashes ( $value );
390
+ return $this->getOption ( 'noscript_code' );
391
+ }
392
+
393
+ /**
394
+ * Get debug data
395
+ *
396
+ * @return array WP-Piwik settings for debug output
397
+ */
398
+ public function getDebugData() {
399
+ $debug = array(
400
+ 'global_settings' => $this->globalSettings,
401
+ 'settings' => $this->settings
402
+ );
403
+ $debug['global_settings']['piwik_token'] = !empty($debug['global_settings']['piwik_token'])?'set':'not set';
404
+ return $debug;
405
+ }
406
+ }
classes/WP_Piwik/Shortcode.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ class Shortcode {
6
+
7
+ private $available = array(
8
+ 'opt-out' => 'OptOut',
9
+ 'post' => 'Post',
10
+ 'overview' => 'Overview'
11
+ ), $content;
12
+
13
+ public function __construct($attributes, $wpPiwik, $settings) {
14
+ $wpPiwik->log('Check requested shortcode widget '.$attributes['module']);
15
+ if (isset($attributes['module']) && isset($this->available[$attributes['module']])) {
16
+ $wpPiwik->log('Add shortcode widget '.$this->available[$attributes['module']]);
17
+ $class = '\\WP_Piwik\\Widget\\'.$this->available[$attributes['module']];
18
+ $widget = new $class($wpPiwik, $settings, null, null, null, $attributes, true);
19
+ $widget->show();
20
+ $this->content = $widget->get();
21
+ }
22
+ }
23
+
24
+ public function get() {
25
+ return $this->content;
26
+ }
27
+
28
+ }
classes/{WP_Piwik_Template.php → WP_Piwik/Template.php} RENAMED
@@ -1,13 +1,14 @@
1
  <?php
2
 
3
- class WP_Piwik_Template {
 
 
4
 
5
  public static $logger, $settings, $wpPiwik;
6
 
7
- public function __construct($config) {
8
- self::$logger = $config['logger'];
9
- self::$settings = $config['settings'];
10
- self::$wpPiwik = $config['wp_piwik'];
11
  }
12
 
13
  public function output($array, $key, $default = '') {
@@ -26,7 +27,5 @@
26
  $end = time() + $diff;
27
  $start = time() - 2592000 + $diff;
28
  return date('Y-m-d', $start).','.date('Y-m-d', $end);
29
-
30
  }
31
-
32
  }
1
  <?php
2
 
3
+ namespace WP_Piwik;
4
+
5
+ class Template {
6
 
7
  public static $logger, $settings, $wpPiwik;
8
 
9
+ public function __construct($wpPiwik, $settings) {
10
+ self::$settings = $settings;
11
+ self::$wpPiwik = $wpPiwik;
 
12
  }
13
 
14
  public function output($array, $key, $default = '') {
27
  $end = time() + $diff;
28
  $start = time() - 2592000 + $diff;
29
  return date('Y-m-d', $start).','.date('Y-m-d', $end);
 
30
  }
 
31
  }
classes/WP_Piwik/Template/MetaBoxCustomVars.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Template;
4
+
5
+ class MetaBoxCustomVars extends \WP_Piwik\Template {
6
+
7
+ public function addMetabox() {
8
+ add_meta_box(
9
+ 'wp-piwik_post_customvars',
10
+ __('Piwik Custom Variables', 'wp-piwik'),
11
+ array(&$this, 'showCustomvars'),
12
+ array('post', 'page', 'custom_post_type'),
13
+ 'side',
14
+ 'default'
15
+ );
16
+ }
17
+
18
+ public function showCustomvars($objPost, $objBox ) {
19
+ wp_nonce_field(basename( __FILE__ ), 'wp-piwik_post_customvars_nonce'); ?>
20
+ <table>
21
+ <tr><th></th><th><?php _e('Name', 'wp-piwik'); ?></th><th><?php _e('Value', 'wp-piwik'); ?></th></tr>
22
+ <?php for($i = 1; $i <= 5; $i++) { ?>
23
+ <tr>
24
+ <th><label for="wp-piwik_customvar1"><?php echo $i; ?>: </label></th>
25
+ <td><input class="widefat" type="text" name="wp-piwik_custom_cat<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_cat'.$i, true ) ); ?>" size="200" /></td>
26
+ <td><input class="widefat" type="text" name="wp-piwik_custom_val<?php echo $i; ?>" value="<?php echo esc_attr(get_post_meta($objPost->ID, 'wp-piwik_custom_val'.$i, true ) ); ?>" size="200" /></td>
27
+ </tr>
28
+ <?php } ?>
29
+ </table>
30
+ <p><?php _e('Set custom variables for a page view', 'wp-piwik'); ?>. (<a href="http://piwik.org/docs/custom-variables/"><?php _e('More information', 'wp-piwik'); ?></a>.)</p>
31
+ <?php
32
+ }
33
+
34
+ public function saveCustomVars($intID, $objPost) {
35
+ // Verify the nonce before proceeding.
36
+ if (!isset( $_POST['wp-piwik_post_customvars_nonce'] ) || !wp_verify_nonce( $_POST['wp-piwik_post_customvars_nonce'], basename( __FILE__ ) ) )
37
+ return $intID;
38
+ // Get post type object
39
+ $objPostType = get_post_type_object($objPost->post_type);
40
+ // Check if the current user has permission to edit the post.
41
+ if (!current_user_can($objPostType->cap->edit_post, $intID))
42
+ return $intID;
43
+ $aryNames = array('cat', 'val');
44
+ for ($i = 1; $i <= 5; $i++)
45
+ for ($j = 0; $j <= 1; $j++) {
46
+ // Get data
47
+ $strMetaVal = (isset($_POST['wp-piwik_custom_'.$aryNames[$j].$i])?htmlentities($_POST['wp-piwik_custom_'.$aryNames[$j].$i]):'');
48
+ // Create key
49
+ $strMetaKey = 'wp-piwik_custom_'.$aryNames[$j].$i;
50
+ // Get the meta value of the custom field key
51
+ $strCurVal = get_post_meta($intID, $strMetaKey, true);
52
+ // Add meta val:
53
+ if ($strMetaVal && '' == $strCurVal)
54
+ add_post_meta($intID, $strMetaKey, $strMetaVal, true);
55
+ // Update meta val:
56
+ elseif ($strMetaVal && $strMetaVal != $strCurVal)
57
+ update_post_meta($intID, $strMetaKey, $strMetaVal);
58
+ // Delete meta val:
59
+ elseif (''==$strMetaVal && $strCurVal)
60
+ delete_post_meta($intID, $strMetaKey, $strCurVal);
61
+ }
62
+ }
63
+ }
classes/WP_Piwik/TrackingCode.php ADDED
@@ -0,0 +1,150 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ class TrackingCode {
6
+
7
+ private static $wpPiwik, $piwikUrl = false;
8
+
9
+ private $trackingCode;
10
+
11
+ public $is404 = false, $isSearch = false, $isUsertracking = false;
12
+
13
+ public function __construct($wpPiwik) {
14
+ self::$wpPiwik = $wpPiwik;
15
+ if (! self::$wpPiwik->isCurrentTrackingCode () || ! self::$wpPiwik->getOption ( 'tracking_code' ) || strpos( self::$wpPiwik->getOption ( 'tracking_code' ), '{"result":"error",' ) !== false )
16
+ self::$wpPiwik->updateTrackingCode ();
17
+ $this->trackingCode = (self::$wpPiwik->isNetworkMode () && self::$wpPiwik->getGlobalOption ( 'track_mode' ) == 'manually') ? get_site_option ( 'wp-piwik-manually' ) : self::$wpPiwik->getOption ( 'tracking_code' );
18
+ }
19
+
20
+ public function getTrackingCode() {
21
+ if ($this->isUsertracking)
22
+ $this->applyUserTracking ();
23
+ if ($this->is404)
24
+ $this->apply404Changes ();
25
+ if ($this->isSearch)
26
+ $this->applySearchChanges ();
27
+ if (is_single () || is_page())
28
+ $this->addCustomValues ();
29
+ $this->trackingCode = apply_filters('wp-piwik_tracking_code', $this->trackingCode);
30
+ return $this->trackingCode;
31
+ }
32
+
33
+ public static function prepareTrackingCode($code, $settings, $logger) {
34
+ global $current_user;
35
+ $logger->log ( 'Apply tracking code changes:' );
36
+ $settings->setOption ( 'last_tracking_code_update', time () );
37
+ if (preg_match ( '/var u="([^"]*)";/', $code, $hits )) {
38
+ $fetchedProxyUrl = $hits [1];
39
+ } else $fetchedProxyUrl = '';
40
+ if ($settings->getGlobalOption ( 'track_mode' ) == 'js')
41
+ $code = str_replace ( array (
42
+ 'piwik.js',
43
+ 'piwik.php'
44
+ ), 'js/index.php', $code );
45
+ elseif ($settings->getGlobalOption ( 'track_mode' ) == 'proxy') {
46
+ $code = str_replace ( 'piwik.js', 'piwik.php', $code );
47
+ $proxy = str_replace ( array (
48
+ 'https://',
49
+ 'http://'
50
+ ), '//', plugins_url ( 'wp-piwik' ) . '/proxy' ) . '/';
51
+ $code = preg_replace ( '/var u="([^"]*)";/', 'var u="' . $proxy . '"', $code );
52
+ $code = preg_replace ( '/img src="([^"]*)piwik.php/', 'img src="' . $proxy . 'piwik.php', $code );
53
+ }
54
+ if ($settings->getGlobalOption ( 'track_cdnurl' ) || $settings->getGlobalOption ( 'track_cdnurlssl' ))
55
+ $code = str_replace ( array (
56
+ "var d=doc",
57
+ "g.src=u+"
58
+ ), array (
59
+ "var ucdn=(('https:' == document.location.protocol) ? 'https://" . ($settings->getGlobalOption ( 'track_cdnurlssl' ) ? $settings->getGlobalOption ( 'track_cdnurlssl' ) : $settings->getGlobalOption ( 'track_cdnurl' )) . "/' : 'http://" . ($settings->getGlobalOption ( 'track_cdnurl' ) ? $settings->getGlobalOption ( 'track_cdnurl' ) : $settings->getGlobalOption ( 'track_cdnurlssl' )) . "/');\nvar d=doc",
60
+ "g.src=ucdn+"
61
+ ), $code );
62
+
63
+ if ($settings->getGlobalOption ( 'track_datacfasync' ))
64
+ $code = str_replace ( '<script type', '<script data-cfasync="false" type', $code );
65
+ if ($settings->getGlobalOption ( 'set_download_extensions' ))
66
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setDownloadExtensions', '" . ($settings->getGlobalOption ( 'set_download_extensions' )) . "']);\n_paq.push(['trackPageView']);", $code );
67
+ if ($settings->getGlobalOption ( 'add_download_extensions' ))
68
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['addDownloadExtensions', '" . ($settings->getGlobalOption ( 'add_download_extensions' )) . "']);\n_paq.push(['trackPageView']);", $code );
69
+ if ($settings->getGlobalOption ( 'set_download_classes' ))
70
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setDownloadClasses', '" . ($settings->getGlobalOption ( 'set_download_classes' )) . "']);\n_paq.push(['trackPageView']);", $code );
71
+ if ($settings->getGlobalOption ( 'set_link_classes' ))
72
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setLinkClasses', '" . ($settings->getGlobalOption ( 'set_link_classes' )) . "']);\n_paq.push(['trackPageView']);", $code );
73
+ if ($settings->getGlobalOption ( 'limit_cookies' ))
74
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setVisitorCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_visitor' ) . "']);\n_paq.push(['setSessionCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_session' ) . "']);\n_paq.push(['setReferralCookieTimeout', '" . $settings->getGlobalOption ( 'limit_cookies_referral' ) . "']);\n_paq.push(['trackPageView']);", $code );
75
+ if ($settings->getGlobalOption ( 'force_protocol' ) != 'disabled')
76
+ $code = str_replace ( '"//', '"' . $settings->getGlobalOption ( 'force_protocol' ) . '://', $code );
77
+ if ($settings->getGlobalOption ( 'track_content' ) == 'all')
78
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackAllContentImpressions']);", $code );
79
+ elseif ($settings->getGlobalOption ( 'track_content' ) == 'visible')
80
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['trackVisibleContentImpressions']);", $code );
81
+ if ((int) $settings->getGlobalOption ( 'track_heartbeat' ) > 0)
82
+ $code = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackPageView']);\n_paq.push(['enableHeartBeatTimer', ".(int) $settings->getGlobalOption ( 'track_heartbeat' )."]);", $code );
83
+
84
+ $noScript = array ();
85
+ preg_match ( '/<noscript>(.*)<\/noscript>/', $code, $noScript );
86
+ if (isset ( $noScript [0] )) {
87
+ if ($settings->getGlobalOption ( 'track_nojavascript' ))
88
+ $noScript [0] = str_replace ( '?idsite', '?rec=1&idsite', $noScript [0] );
89
+ $noScript = $noScript [0];
90
+ } else
91
+ $noScript = '';
92
+ $script = preg_replace ( '/<noscript>(.*)<\/noscript>/', '', $code );
93
+ $script = preg_replace ( '/\s+(\r\n|\r|\n)/', '$1', $script );
94
+ $logger->log ( 'Finished tracking code: ' . $script );
95
+ $logger->log ( 'Finished noscript code: ' . $noScript );
96
+ return array (
97
+ 'script' => $script,
98
+ 'noscript' => $noScript,
99
+ 'proxy' => $fetchedProxyUrl
100
+ );
101
+ }
102
+
103
+ private function apply404Changes() {
104
+ self::$wpPiwik->log ( 'Apply 404 changes. Blog ID: ' . get_current_blog_id () . ' Site ID: ' . self::$wpPiwik->getOption ( 'site_id' ) );
105
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setDocumentTitle', '404/URL = '+String(document.location.pathname+document.location.search).replace(/\//g,'%2f') + '/From = ' + String(document.referrer).replace(/\//g,'%2f')]);\n_paq.push(['trackPageView']);", $this->trackingCode );
106
+ }
107
+
108
+ private function applySearchChanges() {
109
+ self::$wpPiwik->log ( 'Apply search tracking changes. Blog ID: ' . get_current_blog_id () . ' Site ID: ' . self::$wpPiwik->getOption ( 'site_id' ) );
110
+ $objSearch = new \WP_Query ( "s=" . get_search_query () . '&showposts=-1' );
111
+ $intResultCount = $objSearch->post_count;
112
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['trackSiteSearch','" . get_search_query () . "', false, " . $intResultCount . "]);\n_paq.push(['trackPageView']);", $this->trackingCode );
113
+ }
114
+
115
+ private function applyUserTracking() {
116
+ $pkUserId = null;
117
+ if (\is_user_logged_in()) {
118
+ // Get the User ID Admin option, and the current user's data
119
+ $uidFrom = self::$wpPiwik->getGlobalOption ( 'track_user_id' );
120
+ $current_user = wp_get_current_user(); // current user
121
+ // Get the user ID based on the admin setting
122
+ if ( $uidFrom == 'uid' ) {
123
+ $pkUserId = $current_user->ID;
124
+ } elseif ( $uidFrom == 'email' ) {
125
+ $pkUserId = $current_user->user_email;
126
+ } elseif ( $uidFrom == 'username' ) {
127
+ $pkUserId = $current_user->user_login;
128
+ } elseif ( $uidFrom == 'displayname' ) {
129
+ $pkUserId = $current_user->display_name;
130
+ }
131
+ }
132
+ $pkUserId = apply_filters('wp-piwik_tracking_user_id', $pkUserId);
133
+ // Check we got a User ID to track, and track it
134
+ if ( isset( $pkUserId ) && ! empty( $pkUserId ))
135
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", "_paq.push(['setUserId', '" . esc_js( $pkUserId ) . "']);\n_paq.push(['trackPageView']);", $this->trackingCode );
136
+ }
137
+
138
+ private function addCustomValues() {
139
+ $customVars = '';
140
+ for($i = 1; $i <= 5; $i ++) {
141
+ $postId = get_the_ID ();
142
+ $metaKey = get_post_meta ( $postId, 'wp-piwik_custom_cat' . $i, true );
143
+ $metaVal = get_post_meta ( $postId, 'wp-piwik_custom_val' . $i, true );
144
+ if (! empty ( $metaKey ) && ! empty ( $metaVal ))
145
+ $customVars .= "_paq.push(['setCustomVariable'," . $i . ", '" . $metaKey . "', '" . $metaVal . "', 'page']);\n";
146
+ }
147
+ if (! empty ( $customVars ))
148
+ $this->trackingCode = str_replace ( "_paq.push(['trackPageView']);", $customVars . "_paq.push(['trackPageView']);", $this->trackingCode );
149
+ }
150
+ }
classes/WP_Piwik/Widget.php ADDED
@@ -0,0 +1,375 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik;
4
+
5
+ /**
6
+ * Abstract widget class
7
+ *
8
+ * @author Andr&eacute; Br&auml;kling
9
+ * @package WP_Piwik
10
+ */
11
+ abstract class Widget {
12
+
13
+ /**
14
+ *
15
+ * @var Environment variables
16
+ */
17
+ protected static $wpPiwik, $settings;
18
+
19
+ /**
20
+ *
21
+ * @var Configuration parameters
22
+ */
23
+ protected $isShortcode = false, $method = '', $title = '', $context = 'side', $priority = 'core', $parameter = array (), $apiID = array (), $pageId = 'dashboard', $blogId = null, $name = 'Value', $limit = 10, $content = '', $output = '';
24
+
25
+ /**
26
+ * Widget constructor
27
+ *
28
+ * @param WP_Piwik $wpPiwik
29
+ * current WP-Piwik object
30
+ * @param WP_Piwik\Settings $settings
31
+ * current WP-Piwik settings
32
+ * @param string $pageId
33
+ * WordPress page ID (default: dashboard)
34
+ * @param string $context
35
+ * WordPress meta box context (defualt: side)
36
+ * @param string $priority
37
+ * WordPress meta box priority (default: default)
38
+ * @param array $params
39
+ * widget parameters (default: empty array)
40
+ * @param boolean $isShortcode
41
+ * is the widget shown inline? (default: false)
42
+ */
43
+ public function __construct($wpPiwik, $settings, $pageId = 'dashboard', $context = 'side', $priority = 'default', $params = array(), $isShortcode = false) {
44
+ self::$wpPiwik = $wpPiwik;
45
+ self::$settings = $settings;
46
+ $this->pageId = $pageId;
47
+ $this->context = $context;
48
+ $this->priority = $priority;
49
+ if (self::$settings->checkNetworkActivation () && function_exists ( 'is_super_admin' ) && is_super_admin () && isset ( $_GET ['wpmu_show_stats'] )) {
50
+ switch_to_blog ( ( int ) $_GET ['wpmu_show_stats'] );
51
+ $this->blogId = get_current_blog_id ();
52
+ restore_current_blog ();
53
+ }
54
+ $this->isShortcode = $isShortcode;
55
+ $prefix = ($this->pageId == 'dashboard' ? self::$settings->getGlobalOption ( 'plugin_display_name' ) . ' - ' : '');
56
+ $this->configure ( $prefix, $params );
57
+ if (is_array ( $this->method ))
58
+ foreach ( $this->method as $method ) {
59
+ $this->apiID [$method] = \WP_Piwik\Request::register ( $method, $this->parameter );
60
+ self::$wpPiwik->log ( "Register request: " . $this->apiID [$method] );
61
+ }
62
+ else {
63
+ $this->apiID [$this->method] = \WP_Piwik\Request::register ( $this->method, $this->parameter );
64
+ self::$wpPiwik->log ( "Register request: " . $this->apiID [$this->method] );
65
+ }
66
+ if ($this->isShortcode)
67
+ return;
68
+ add_meta_box ( $this->getName (), $this->title, array (
69
+ $this,
70
+ 'show'
71
+ ), $pageId, $this->context, $this->priority );
72
+ }
73
+
74
+ /**
75
+ * Conifguration dummy method
76
+ *
77
+ * @param string $prefix
78
+ * metabox title prefix (default: empty)
79
+ * @param array $params
80
+ * widget parameters (default: empty array)
81
+ */
82
+ protected function configure($prefix = '', $params = array()) {
83
+ }
84
+
85
+ /**
86
+ * Default show widget method, handles default Piwik output
87
+ */
88
+ public function show() {
89
+ $response = self::$wpPiwik->request ( $this->apiID [$this->method] );
90
+ if (! empty ( $response ['result'] ) && $response ['result'] == 'error')
91
+ $this->out( '<strong>' . __ ( 'Piwik error', 'wp-piwik' ) . ':</strong> ' . htmlentities ( $response ['message'], ENT_QUOTES, 'utf-8' ) );
92
+ else {
93
+ if (isset ( $response [0] ['nb_uniq_visitors'] ))
94
+ $unique = 'nb_uniq_visitors';
95
+ else
96
+ $unique = 'sum_daily_nb_uniq_visitors';
97
+ $tableHead = array (
98
+ 'label' => __ ( $this->name, 'wp-piwik' )
99
+ );
100
+ $tableHead [$unique] = __ ( 'Unique', 'wp-piwik' );
101
+ if (isset ( $response [0] ['nb_visits'] ))
102
+ $tableHead ['nb_visits'] = __ ( 'Visits', 'wp-piwik' );
103
+ if (isset ( $response [0] ['nb_hits'] ))
104
+ $tableHead ['nb_hits'] = __ ( 'Hits', 'wp-piwik' );
105
+ if (isset ( $response [0] ['nb_actions'] ))
106
+ $tableHead ['nb_actions'] = __ ( 'Actions', 'wp-piwik' );
107
+ $tableBody = array ();
108
+ $count = 0;
109
+ foreach ( $response as $rowKey => $row ) {
110
+ $count ++;
111
+ $tableBody [$rowKey] = array ();
112
+ foreach ( $tableHead as $key => $value )
113
+ $tableBody [$rowKey] [] = isset ( $row [$key] ) ? $row [$key] : '-';
114
+ if ($count == 10)
115
+ break;
116
+ }
117
+ $this->table ( $tableHead, $tableBody, null );
118
+ }
119
+ }
120
+
121
+ /**
122
+ * Display or store shortcode output
123
+ */
124
+ protected function out($output) {
125
+ if ($this->isShortcode)
126
+ $this->output .= $output;
127
+ else echo $output;
128
+ }
129
+
130
+ /**
131
+ * Return shortcode output
132
+ */
133
+ public function get() {
134
+ return $this->output;
135
+ }
136
+
137
+ /**
138
+ * Display a HTML table
139
+ *
140
+ * @param array $thead
141
+ * table header content (array of cells)
142
+ * @param array $tbody
143
+ * table body content (array of rows)
144
+ * @param array $tfoot
145
+ * table footer content (array of cells)
146
+ * @param string $class
147
+ * CSSclass name to apply on table sections
148
+ * @param string $javaScript
149
+ * array of javascript code to apply on body rows
150
+ */
151
+ protected function table($thead, $tbody = array(), $tfoot = array(), $class = false, $javaScript = array(), $classes = array()) {
152
+ $this->out( '<div class="table"><table class="widefat wp-piwik-table">' );
153
+ if ($this->isShortcode && $this->title) {
154
+ $colspan = !empty ( $tbody ) ? count( $tbody[0] ) : 2 ;
155
+ $this->out( '<tr><th colspan="'.$colspan.'">' . $this->title . '</th></tr>' );
156
+ }
157
+ if (! empty ( $thead ))
158
+ $this->tabHead ( $thead, $class );
159
+ if (! empty ( $tbody ))
160
+ $this->tabBody ( $tbody, $class, $javaScript, $classes );
161
+ else
162
+ $this->out( '<tr><td colspan="10">' . __ ( 'No data available.', 'wp-piwik' ) . '</td></tr>' );
163
+ if (! empty ( $tfoot ))
164
+ $this->tabFoot ( $tfoot, $class );
165
+ $this->out( '</table></div>' );
166
+ }
167
+
168
+ /**
169
+ * Display a HTML table header
170
+ *
171
+ * @param array $thead
172
+ * array of cells
173
+ * @param string $class
174
+ * CSS class to apply
175
+ */
176
+ private function tabHead($thead, $class = false) {
177
+ $this->out( '<thead' . ($class ? ' class="' . $class . '"' : '') . '><tr>' );
178
+ $count = 0;
179
+ foreach ( $thead as $value )
180
+ $this->out( '<th' . ($count ++ ? ' class="right"' : '') . '>' . $value . '</th>' );
181
+ $this->out( '</tr></thead>' );
182
+ }
183
+
184
+ /**
185
+ * Display a HTML table body
186
+ *
187
+ * @param array $tbody
188
+ * array of rows, each row containing an array of cells
189
+ * @param string $class
190
+ * CSS class to apply
191
+ * @param unknown $javaScript
192
+ * array of javascript code to apply (one item per row)
193
+ */
194
+ private function tabBody($tbody, $class = false, $javaScript = array(), $classes = array()) {
195
+ $this->out( '<tbody' . ($class ? ' class="' . $class . '"' : '') . '>' );
196
+ foreach ( $tbody as $key => $trow )
197
+ $this->tabRow ( $trow, isset( $javaScript [$key] ) ?$javaScript [$key] : '', isset ( $classes [$key] ) ?$classes [$key] : '');
198
+ $this->out( '</tbody>' );
199
+ }
200
+
201
+ /**
202
+ * Display a HTML table footer
203
+ *
204
+ * @param array $tfoor
205
+ * array of cells
206
+ * @param string $class
207
+ * CSS class to apply
208
+ */
209
+ private function tabFoot($tfoot, $class = false) {
210
+ $this->out( '<tfoot' . ($class ? ' class="' . $class . '"' : '') . '><tr>' );
211
+ $count = 0;
212
+ foreach ( $tfoot as $value )
213
+ $this->out( '<td' . ($count ++ ? ' class="right"' : '') . '>' . $value . '</td>' );
214
+ $this->out( '</tr></tfoot>' );
215
+ }
216
+
217
+ /**
218
+ * Display a HTML table row
219
+ *
220
+ * @param array $trow
221
+ * array of cells
222
+ * @param string $javaScript
223
+ * javascript code to apply
224
+ */
225
+ private function tabRow($trow, $javaScript = '', $class = '') {
226
+ $this->out( '<tr' . (! empty ( $javaScript ) ? ' onclick="' . $javaScript . '"' : '') . (! empty ( $class ) ? ' class="' . $class . '"' : '') . '>' );
227
+ $count = 0;
228
+ foreach ( $trow as $tcell )
229
+ $this->out( '<td' . ($count ++ ? ' class="right"' : '') . '>' . $tcell . '</td>' );
230
+ $this->out( '</tr>' );
231
+ }
232
+
233
+ /**
234
+ * Get the current request's Piwik time settings
235
+ *
236
+ * @return array time settings: period => Piwik period, date => requested date, description => time description to show in widget title
237
+ */
238
+ protected function getTimeSettings() {
239
+ switch (self::$settings->getGlobalOption ( 'default_date' )) {
240
+ case 'today' :
241
+ $period = 'day';
242
+ $date = 'today';
243
+ $description = __('today', 'wp-piwik' );
244
+ break;
245
+ case 'current_month' :
246
+ $period = 'month';
247
+ $date = 'today';
248
+ $description = __('current month', 'wp-piwik' );
249
+ break;
250
+ case 'last_month' :
251
+ $period = 'month';
252
+ $date = date ( "Y-m-d", strtotime ( "last day of previous month" ) );
253
+ $description = __('last month', 'wp-piwik' );
254
+ break;
255
+ case 'current_week' :
256
+ $period = 'week';
257
+ $date = 'today';
258
+ $description = __('current week', 'wp-piwik' );
259
+ break;
260
+ case 'last_week' :
261
+ $period = 'week';
262
+ $date = date ( "Y-m-d", strtotime ( "-1 week" ) );
263
+ $description = __('last week', 'wp-piwik' );
264
+ break;
265
+ case 'yesterday' :
266
+ $period = 'day';
267
+ $date = 'yesterday';
268
+ $description = __('yesterday', 'wp-piwik' );
269
+ break;
270
+ default :
271
+ break;
272
+ }
273
+ return array (
274
+ 'period' => $period,
275
+ 'date' => isset ( $_GET ['date'] ) ? ( int ) $_GET ['date'] : $date,
276
+ 'description' => isset ( $_GET ['date'] ) ? $this->dateFormat ( $_GET ['date'], $period ) : $description
277
+ );
278
+ }
279
+
280
+ /**
281
+ * Format a date to show in widget
282
+ *
283
+ * @param string $date
284
+ * date string
285
+ * @param string $period
286
+ * Piwik period
287
+ * @return string formatted date
288
+ */
289
+ protected function dateFormat($date, $period = 'day') {
290
+ $prefix = '';
291
+ switch ($period) {
292
+ case 'week' :
293
+ $prefix = __ ( 'week', 'wp-piwik' ) . ' ';
294
+ $format = 'W/Y';
295
+ break;
296
+ case 'short_week' :
297
+ $format = 'W';
298
+ break;
299
+ case 'month' :
300
+ $format = 'F Y';
301
+ $date = date ( 'Y-m-d', strtotime ( $date ) );
302
+ break;
303
+ default :
304
+ $format = get_option ( 'date_format' );
305
+ }
306
+ return $prefix . date_i18n ( $format, strtotime ( $date ) );
307
+ }
308
+
309
+ /**
310
+ * Format time to show in widget
311
+ *
312
+ * @param int $time
313
+ * time in seconds
314
+ * @return string formatted time
315
+ */
316
+ protected function timeFormat($time) {
317
+ return floor ( $time / 3600 ) . 'h ' . floor ( ($time % 3600) / 60 ) . 'm ' . floor ( ($time % 3600) % 60 ) . 's';
318
+ }
319
+
320
+ /**
321
+ * Convert Piwik range into meaningful text
322
+ *
323
+ * @return string range description
324
+ */
325
+ public function rangeName() {
326
+ switch ($this->parameter ['date']) {
327
+ case 'last30' :
328
+ return __('last 30 days', 'wp-piwik' );
329
+ case 'last12' :
330
+ return __('last 12 ' . $this->parameter ['period'] . 's', 'wp-piwik' );
331
+ default :
332
+ return $this->parameter ['date'];
333
+ }
334
+ }
335
+
336
+ /**
337
+ * Get the widget name
338
+ *
339
+ * @return string widget name
340
+ */
341
+ public function getName() {
342
+ return str_replace ( '\\', '-', get_called_class () );
343
+ }
344
+
345
+ /**
346
+ * Display a pie chart
347
+ *
348
+ * @param
349
+ * array chart data array(array(0 => name, 1 => value))
350
+ */
351
+ public function pieChart($data) {
352
+ $this->out( '<div id="wp-piwik_stats_' . $this->getName () . '_graph" style="height:310px;width:100%"></div>' );
353
+ $this->out( '<script type="text/javascript">$plotBrowsers = $j.jqplot("wp-piwik_stats_' . $this->getName () . '_graph", [[' );
354
+ $list = '';
355
+ foreach ( $data as $key => $dataSet ) {
356
+ $list .= '["' . $dataSet [0] . '", ' . $dataSet [1] . '],';
357
+ if ($key == 'Others') break;
358
+ }
359
+ $this->out( substr ( $list, 0, - 1 ) );
360
+ $this->out( ']], {seriesDefaults:{renderer:$j.jqplot.PieRenderer, rendererOptions:{sliceMargin:8}},legend:{show:true}});</script>' );
361
+ }
362
+
363
+ /**
364
+ * Return an array value by key, return '-' if not set
365
+ *
366
+ * @param array $array
367
+ * array to get a value from
368
+ * @param string $key
369
+ * key of the value to get from array
370
+ * @return string found value or '-' as a placeholder
371
+ */
372
+ protected function value($array, $key) {
373
+ return (isset ( $array [$key] ) ? $array [$key] : '-');
374
+ }
375
+ }
classes/WP_Piwik/Widget/BrowserDetails.php ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ use WP_Piwik\Widget;
6
+
7
+ class BrowserDetails extends Widget {
8
+
9
+ public $className = __CLASS__;
10
+
11
+ protected function configure($prefix = '', $params = array()) {
12
+ $timeSettings = $this->getTimeSettings();
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => $timeSettings['period'],
16
+ 'date' => $timeSettings['date']
17
+ );
18
+ $this->title = $prefix.__('Browser Details', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
19
+ $this->method = 'DevicesDetection.getBrowserVersions';
20
+ $this->context = 'normal';
21
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
22
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
23
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
24
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
25
+ }
26
+
27
+ public function addHeaderLines() {
28
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
29
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
30
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
31
+ }
32
+
33
+ public function show() {
34
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
35
+ $tableBody = array();
36
+ if (!empty($response['result']) && $response['result'] ='error')
37
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
38
+ else {
39
+ $tableHead = array(__('Browser', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
40
+ if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
41
+ else $unique = 'sum_daily_nb_uniq_visitors';
42
+ $count = 0;
43
+ $sum = 0;
44
+ $js = array();
45
+ $class = array();
46
+ foreach ($response as $row) {
47
+ $count++;
48
+ $sum += isset($row[$unique])?$row[$unique]:0;
49
+ if ($count < $this->limit)
50
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
51
+ elseif (!isset($tableBody['Others'])) {
52
+ $tableBody['Others'] = array($row['label'], $row[$unique], 0);
53
+ $class['Others'] = 'wp-piwik-hideDetails';
54
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
55
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
56
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
57
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
58
+ } else {
59
+ $tableBody['Others'][1] += $row[$unique];
60
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
61
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
62
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
63
+ }
64
+ }
65
+ if ($count > $this->limit)
66
+ $tableBody['Others'][0] = __('Others', 'wp-piwik');
67
+
68
+ foreach ($tableBody as $key => $row)
69
+ $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
70
+
71
+ if (!empty($tableBody)) $this->pieChart($tableBody);
72
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
73
+ }
74
+ }
75
+
76
+ }
classes/WP_Piwik/Widget/Browsers.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ use WP_Piwik\Widget;
6
+
7
+ class Browsers extends Widget {
8
+
9
+ public $className = __CLASS__;
10
+
11
+ protected function configure($prefix = '', $params = array()) {
12
+ $timeSettings = $this->getTimeSettings();
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => $timeSettings['period'],
16
+ 'date' => $timeSettings['date']
17
+ );
18
+ $this->title = $prefix.__('Browsers', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
19
+ $this->method = 'DevicesDetection.getBrowsers';
20
+ $this->context = 'normal';
21
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
22
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
23
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
24
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
25
+ }
26
+
27
+ public function addHeaderLines() {
28
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
29
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
30
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
31
+ }
32
+
33
+ public function show() {
34
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
35
+ $tableBody = array();
36
+ if (!empty($response['result']) && $response['result'] ='error')
37
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
38
+ else {
39
+ $tableHead = array(__('Browser', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
40
+ if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
41
+ else $unique = 'sum_daily_nb_uniq_visitors';
42
+ $count = 0;
43
+ $sum = 0;
44
+ $js = array();
45
+ $class = array();
46
+ foreach ($response as $row) {
47
+ $count++;
48
+ $sum += isset($row[$unique])?$row[$unique]:0;
49
+ if ($count < $this->limit)
50
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
51
+ elseif (!isset($tableBody['Others'])) {
52
+ $tableBody['Others'] = array($row['label'], $row[$unique], 0);
53
+ $class['Others'] = 'wp-piwik-hideDetails';
54
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
55
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
56
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
57
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
58
+ } else {
59
+ $tableBody['Others'][1] += $row[$unique];
60
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
61
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
62
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
63
+ }
64
+ }
65
+ if ($count > $this->limit)
66
+ $tableBody['Others'][0] = __('Others', 'wp-piwik');
67
+ elseif ($count == $this->limit) {
68
+ $class['Others'] = $js['Others'] = '';
69
+ }
70
+
71
+ foreach ($tableBody as $key => $row)
72
+ $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
73
+
74
+ if (!empty($tableBody)) $this->pieChart($tableBody);
75
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
76
+ }
77
+ }
78
+
79
+ }
classes/WP_Piwik/Widget/Chart.php ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ use WP_Piwik\Widget;
6
+
7
+ class Chart extends Widget {
8
+
9
+ public $className = __CLASS__;
10
+
11
+ protected function configure($prefix = '', $params = array()) {
12
+ $timeSettings = $this->getTimeSettings();
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => isset($params['period'])?$params['period']:$timeSettings['period'],
16
+ 'date' => 'last'.($timeSettings['period']=='day'?'30':'12'),
17
+ 'limit' => null
18
+ );
19
+ $this->title = $prefix.__('Visitors', 'wp-piwik').' ('.__($this->rangeName(),'wp-piwik').')';
20
+ $this->method = array('VisitsSummary.getVisits', 'VisitsSummary.getUniqueVisitors', 'VisitsSummary.getBounceCount', 'VisitsSummary.getActions');
21
+ $this->context = 'normal';
22
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
23
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
24
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
25
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
26
+ }
27
+
28
+ public function addHeaderLines() {
29
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
30
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
31
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
32
+ }
33
+
34
+ public function show() {
35
+ $response = array();
36
+ $success = true;
37
+ foreach ($this->method as $method) {
38
+ $response[$method] = self::$wpPiwik->request($this->apiID[$method]);
39
+ if (!empty($response[$method]['result']) && $response[$method]['result'] ='error')
40
+ $success = false;
41
+ }
42
+ if (!$success)
43
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response[$method]['message'], ENT_QUOTES, 'utf-8');
44
+ else {
45
+ $values = $labels = $bounced = $unique = '';
46
+ $count = $uniqueSum = 0;
47
+ if (is_array($response['VisitsSummary.getVisits']))
48
+ foreach ($response['VisitsSummary.getVisits'] as $date => $value) {
49
+ $count++;
50
+ $values .= $value.',';
51
+ $unique .= $response['VisitsSummary.getUniqueVisitors'][$date].',';
52
+ $bounced .= $response['VisitsSummary.getBounceCount'][$date].',';
53
+ if ($this->parameter['period'] == 'week') {
54
+ preg_match("/[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])/", $date, $dateList);
55
+ $textKey = $this->dateFormat($dateList[0], 'short_week');
56
+ } else $textKey = substr($date, -2);
57
+ $labels .= '['.$count.',"'.$textKey.'"],';
58
+ $uniqueSum += $response['VisitsSummary.getActions'][$date];
59
+ }
60
+ else {
61
+ $values = '0,';
62
+ $labels = '[0,"-"],';
63
+ $unique = '0,';
64
+ $bounced = '0,';
65
+ }
66
+ $average = round($uniqueSum/30,0);
67
+ $values = substr($values, 0, -1);
68
+ $unique = substr($unique, 0, -1);
69
+ $labels = substr($labels, 0, -1);
70
+ $bounced = substr($bounced, 0, -1);
71
+ echo '<div id="wp-piwik_stats_vistors_graph" style="height:220px;" title="'.__('The graph contains the values shown in the table below (visitors / unique / bounces). The red line shows a linear trendline (unique).', 'wp-piwik').'"></div>';
72
+ echo '<script type="text/javascript">';
73
+ echo '$j.jqplot("wp-piwik_stats_vistors_graph", [['.$values.'],['.$unique.'],['.$bounced.']],{axes:{yaxis:{min:0, tickOptions:{formatString:"%.0f"}},xaxis:{min:1,max:30,ticks:['.$labels.']}},seriesDefaults:{showMarker:false,lineWidth:1,fill:true,fillAndStroke:true,fillAlpha:0.9,trendline:{show:false,color:"#C00",lineWidth:1.5,type:"exp"}},series:[{color:"#90AAD9",fillColor:"#D4E2ED"},{color:"#A3BCEA",fillColor:"#E4F2FD",trendline:{show:true,label:"Unique visitor trend"}},{color:"#E9A0BA",fillColor:"#FDE4F2"}],});';
74
+ echo '</script>';
75
+ }
76
+ }
77
+
78
+ }
classes/WP_Piwik/Widget/Country.php ADDED
@@ -0,0 +1,79 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ use WP_Piwik\Widget;
6
+
7
+ class Country extends Widget {
8
+
9
+ public $className = __CLASS__;
10
+
11
+ protected function configure($prefix = '', $params = array()) {
12
+ $timeSettings = $this->getTimeSettings();
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => $timeSettings['period'],
16
+ 'date' => $timeSettings['date']
17
+ );
18
+ $this->title = $prefix.__('Countries', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
19
+ $this->method = 'UserCountry.getCountry ';
20
+ $this->context = 'normal';
21
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
22
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
23
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
24
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
25
+ }
26
+
27
+ public function addHeaderLines() {
28
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
29
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
30
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
31
+ }
32
+
33
+ public function show() {
34
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
35
+ $tableBody = array();
36
+ if (!empty($response['result']) && $response['result'] ='error')
37
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
38
+ else {
39
+ $tableHead = array(__('Country', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
40
+ if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
41
+ else $unique = 'sum_daily_nb_uniq_visitors';
42
+ $count = 0;
43
+ $sum = 0;
44
+ $js = array();
45
+ $class = array();
46
+ foreach ($response as $row) {
47
+ $count++;
48
+ $sum += isset($row[$unique])?$row[$unique]:0;
49
+ if ($count < $this->limit)
50
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
51
+ elseif (!isset($tableBody['Others'])) {
52
+ $tableBody['Others'] = array($row['label'], $row[$unique], 0);
53
+ $class['Others'] = 'wp-piwik-hideDetails';
54
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
55
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
56
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
57
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
58
+ } else {
59
+ $tableBody['Others'][1] += $row[$unique];
60
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
61
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
62
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
63
+ }
64
+ }
65
+ if ($count > $this->limit)
66
+ $tableBody['Others'][0] = __('Others', 'wp-piwik');
67
+ elseif ($count == $this->limit) {
68
+ $class['Others'] = $js['Others'] = '';
69
+ }
70
+
71
+ foreach ($tableBody as $key => $row)
72
+ $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
73
+
74
+ if (!empty($tableBody)) $this->pieChart($tableBody);
75
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
76
+ }
77
+ }
78
+
79
+ }
classes/WP_Piwik/Widget/Ecommerce.php ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Ecommerce extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->title = $prefix.__('E-Commerce', 'wp-piwik');
12
+ $this->method = 'Goals.get';
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => $timeSettings['period'],
16
+ 'date' => $timeSettings['date']
17
+ );
18
+ }
19
+
20
+ public function show() {
21
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
22
+ if (!empty($response['result']) && $response['result'] ='error')
23
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
24
+ else {
25
+ $tableHead = null;
26
+ $tableBody = array(
27
+ array(__('Conversions', 'wp-piwik').':', $this->value($response, 'nb_conversions')),
28
+ array(__('Visits converted', 'wp-piwik').':', $this->value($response, 'nb_visits_converted')),
29
+ array(__('Revenue', 'wp-piwik').':', number_format($this->value($response, 'revenue'),2)),
30
+ array(__('Conversion rate', 'wp-piwik').':', $this->value($response, 'conversion_rate')),
31
+ array(__('Conversions (new visitor)', 'wp-piwik').':', $this->value($response, 'nb_conversions_new_visit')),
32
+ array(__('Visits converted (new visitor)', 'wp-piwik').':', $this->value($response, 'nb_visits_converted_new_visit')),
33
+ array(__('Revenue (new visitor)', 'wp-piwik').':', number_format($this->value($response, 'revenue_new_visit'),2)),
34
+ array(__('Conversion rate (new visitor)', 'wp-piwik').':', $this->value($response, 'conversion_rate_new_visit')),
35
+ array(__('Conversions (returning visitor)', 'wp-piwik').':', $this->value($response, 'nb_conversions_returning_visit')),
36
+ array(__('Visits converted (returning visitor)', 'wp-piwik').':', $this->value($response, 'nb_visits_converted_returning_visit')),
37
+ array(__('Revenue (returning visitor)', 'wp-piwik').':', number_format($this->value($response, 'revenue_returning_visit'),2)),
38
+ array(__('Conversion rate (returning visitor)', 'wp-piwik').':', $this->value($response, 'conversion_rate_returning_visit')),
39
+ );
40
+ $tableFoot = (self::$settings->getGlobalOption('piwik_shortcut')?array(__('Shortcut', 'wp-piwik').':', '<a href="'.self::$settings->getGlobalOption('piwik_url').'">Piwik</a>'.(isset($aryConf['inline']) && $aryConf['inline']?' - <a href="?page=wp-piwik_stats">WP-Piwik</a>':'')):null);
41
+ $this->table($tableHead, $tableBody, $tableFoot);
42
+ }
43
+ }
44
+
45
+ }
classes/WP_Piwik/Widget/Items.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Items extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->title = $prefix.__('E-Commerce Items', 'wp-piwik');
12
+ $this->method = 'Goals.getItemsName';
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => $timeSettings['period'],
16
+ 'date' => $timeSettings['date']
17
+ );
18
+ }
19
+
20
+ public function show() {
21
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
22
+ if (!empty($response['result']) && $response['result'] ='error')
23
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
24
+ else {
25
+ $tableHead = array(
26
+ __('Label', 'wp-piwik'),
27
+ __('Revenue', 'wp-piwik'),
28
+ __('Quantity', 'wp-piwik'),
29
+ __('Orders', 'wp-piwik'),
30
+ __('Avg. price', 'wp-piwik'),
31
+ __('Avg. quantity', 'wp-piwik'),
32
+ __('Conversion rate', 'wp-piwik'),
33
+ );
34
+ $tableBody = array();
35
+ if (is_array($response))
36
+ foreach ($response as $data) {
37
+ array_push($tableBody, array(
38
+ $data['label'],
39
+ number_format($data['revenue'],2),
40
+ $data['quantity'],
41
+ $data['orders'],
42
+ number_format($data['avg_price'],2),
43
+ $data['avg_quantity'],
44
+ $data['conversion_rate']
45
+ ));
46
+ }
47
+ $tableFoot = array();
48
+ $this->table($tableHead, $tableBody, $tableFoot);
49
+ }
50
+ }
51
+
52
+ }
classes/WP_Piwik/Widget/ItemsCategory.php ADDED
@@ -0,0 +1,52 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class ItemsCategory extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->title = $prefix.__('E-Commerce Item Categories', 'wp-piwik');
12
+ $this->method = 'Goals.getItemsCategory';
13
+ $this->parameter = array(
14
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
15
+ 'period' => $timeSettings['period'],
16
+ 'date' => $timeSettings['date']
17
+ );
18
+ }
19
+
20
+ public function show() {
21
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
22
+ if (!empty($response['result']) && $response['result'] ='error')
23
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
24
+ else {
25
+ $tableHead = array(
26
+ __('Label', 'wp-piwik'),
27
+ __('Revenue', 'wp-piwik'),
28
+ __('Quantity', 'wp-piwik'),
29
+ __('Orders', 'wp-piwik'),
30
+ __('Avg. price', 'wp-piwik'),
31
+ __('Avg. quantity', 'wp-piwik'),
32
+ __('Conversion rate', 'wp-piwik'),
33
+ );
34
+ $tableBody = array();
35
+ if (is_array($response))
36
+ foreach ($response as $data) {
37
+ array_push($tableBody, array(
38
+ $data['label'],
39
+ isset($data['revenue'])?number_format($data['revenue'],2):"-.--",
40
+ isset($data['quantity'])?$data['quantity']:'-',
41
+ isset($data['orders'])?$data['orders']:'-',
42
+ number_format($data['avg_price'],2),
43
+ $data['avg_quantity'],
44
+ $data['conversion_rate']
45
+ ));
46
+ }
47
+ $tableFoot = array();
48
+ $this->table($tableHead, $tableBody, $tableFoot);
49
+ }
50
+ }
51
+
52
+ }
classes/WP_Piwik/Widget/Keywords.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Keywords extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Keywords', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'Referrers.getKeywords';
18
+ $this->name = 'Keyword';
19
+ }
20
+
21
+ }
classes/WP_Piwik/Widget/Noresult.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Noresult extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Site Search', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'Actions.getSiteSearchNoResultKeywords';
18
+ }
19
+
20
+ public function show() {
21
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
22
+ if (!empty($response['result']) && $response['result'] ='error')
23
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
24
+ else {
25
+ $tableHead = array(__('Keyword', 'wp-piwik'), __('Requests', 'wp-piwik'), __('Bounced', 'wp-piwik'));
26
+ $tableBody = array();
27
+ $count = 0;
28
+ foreach ($response as $row) {
29
+ $count++;
30
+ $tableBody[] = array($row['label'], $row['nb_visits'], $row['bounce_rate']);
31
+ if ($count == 10) break;
32
+ }
33
+ $this->table($tableHead, $tableBody, null);
34
+ }
35
+ }
36
+
37
+ }
classes/WP_Piwik/Widget/OptOut.php ADDED
@@ -0,0 +1,28 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class OptOut extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $this->parameter = $params;
11
+ }
12
+
13
+ public function show() {
14
+ $protocol = (isset ( $_SERVER ['HTTPS'] ) && $_SERVER ['HTTPS'] != 'off') ? 'https' : 'http';
15
+ switch (self::$settings->getGlobalOption ( 'piwik_mode' )) {
16
+ case 'php' :
17
+ $PIWIK_URL = $protocol . ':' . self::$settings->getGlobalOption ( 'proxy_url' );
18
+ break;
19
+ case 'cloud' :
20
+ $PIWIK_URL = 'https://' . self::$settings->getGlobalOption ( 'piwik_user' ) . '.innocraft.cloud/';
21
+ break;
22
+ default :
23
+ $PIWIK_URL = self::$settings->getGlobalOption ( 'piwik_url' );
24
+ }
25
+ $this->out ( '<iframe frameborder="no" width="'.(isset($this->parameter['width'])?$this->parameter['width']:'').'" height="'.(isset($this->parameter['height'])?$this->parameter['height']:'').'" src="'.$PIWIK_URL.'index.php?module=CoreAdminHome&action=optOut&'.(isset($this->parameter['idsite'])?'idsite='.$this->parameter['idsite'].'&':'').'language='.(isset($this->parameter['language'])?$this->parameter['language']:'en').'"></iframe>' );
26
+ }
27
+
28
+ }
classes/WP_Piwik/Widget/Overview.php ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Overview extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => isset($params['period'])?$params['period']:$timeSettings['period'],
14
+ 'date' => isset($params['date'])?$params['date']: $timeSettings['date'],
15
+ 'description' => $timeSettings['description']
16
+ );
17
+ $this->title = !$this->isShortcode?$prefix.__('Overview', 'wp-piwik').' ('.__($this->pageId == 'dashboard'?$this->rangeName():$timeSettings['description'],'wp-piwik').')':($params['title']?$params['title']:'');
18
+ $this->method = 'VisitsSummary.get';
19
+ }
20
+
21
+ public function show() {
22
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
23
+ if (!empty($response['result']) && $response['result'] ='error')
24
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
25
+ else {
26
+ if ($this->parameter['date'] == 'last30') {
27
+ $result = array();
28
+ if (is_array($response)) {
29
+ foreach ($response as $data)
30
+ foreach ($data as $key => $value)
31
+ if (isset($result[$key]) && is_numeric($value))
32
+ $result[$key] += $value;
33
+ elseif (is_numeric($value))
34
+ $result[$key] = $value;
35
+ else
36
+ $result[$key] = 0;
37
+ if (isset($result['nb_visits']) && $result['nb_visits'] > 0) {
38
+ $result['nb_actions_per_visit'] = round($result['nb_actions'] / $result['nb_visits'], 1);
39
+ $result['bounce_rate'] = round($result['bounce_count'] / $result['nb_visits'] * 100, 1) . '%';
40
+ $result['avg_time_on_site'] = round($result['sum_visit_length'] / $result['nb_visits'], 0);
41
+ } else $result['nb_actions_per_visit'] = $result['bounce_rate'] = $result['avg_time_on_site'] = 0;
42
+ }
43
+ $response = $result;
44
+ }
45
+ $time = isset($response['sum_visit_length'])?$this->timeFormat($response['sum_visit_length']):'-';
46
+ $avgTime = isset($response['avg_time_on_site'])?$this->timeFormat($response['avg_time_on_site']):'-';
47
+ $tableHead = null;
48
+ $tableBody = array(array(__('Visitors', 'wp-piwik').':', $this->value($response, 'nb_visits')));
49
+ if ($this->value($response, 'nb_uniq_visitors') != '-')
50
+ array_push($tableBody, array(__('Unique visitors', 'wp-piwik').':', $this->value($response, 'nb_uniq_visitors')));
51
+ array_push($tableBody,
52
+ array(__('Page views', 'wp-piwik').':', $this->value($response, 'nb_actions').' (&#216; '.$this->value($response, 'nb_actions_per_visit').')'),
53
+ array(__('Total time spent', 'wp-piwik').':', $time.' (&#216; '.$avgTime.')'),
54
+ array(__('Bounce count', 'wp-piwik').':', $this->value($response, 'bounce_count').' ('.$this->value($response, 'bounce_rate').')')
55
+ );
56
+ if ($this->parameter['date'] != 'last30')
57
+ array_push($tableBody, array(__('Time/visit', 'wp-piwik').':', $avgTime), array(__('Max. page views in one visit', 'wp-piwik').':', $this->value($response, 'max_actions')));
58
+ $tableFoot = (self::$settings->getGlobalOption('piwik_shortcut')?array(__('Shortcut', 'wp-piwik').':', '<a href="'.self::$settings->getGlobalOption('piwik_url').'">Piwik</a>'.(isset($aryConf['inline']) && $aryConf['inline']?' - <a href="?page=wp-piwik_stats">WP-Piwik</a>':'')):null);
59
+ $this->table($tableHead, $tableBody, $tableFoot);
60
+ }
61
+ }
62
+
63
+ }
classes/WP_Piwik/Widget/Pages.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Pages extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Pages', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'Actions.getPageTitles';
18
+ $this->name = __('Page', 'wp-piwik' );
19
+ }
20
+
21
+ }
classes/WP_Piwik/Widget/Plugins.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Plugins extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Plugins', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'DevicePlugins.getPlugin';
18
+ }
19
+
20
+ public function show() {
21
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
22
+ if (!empty($response['result']) && $response['result'] ='error')
23
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
24
+ else {
25
+ $tableHead = array(__('Plugin', 'wp-piwik'), __('Visits', 'wp-piwik'), __('Percent', 'wp-piwik'));
26
+ $tableBody = array();
27
+ $count = 0;
28
+ foreach ($response as $row) {
29
+ $count++;
30
+ $tableBody[] = array($row['label'], $row['nb_visits'], $row['nb_visits_percentage']);
31
+ if ($count == 10) break;
32
+ }
33
+ $this->table($tableHead, $tableBody, null);
34
+ }
35
+ }
36
+
37
+ }
classes/WP_Piwik/Widget/Post.php ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Post extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ global $post;
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => 'range',
14
+ 'date' => isset($params['range'])?$params['range']:'last30',
15
+ 'key' => isset($params['key'])?$params['key']:null,
16
+ 'pageUrl' => isset($params['url'])?$params['url']:urlencode(get_permalink($post->ID)),
17
+ );
18
+ $this->title = $prefix.__('Overview', 'wp-piwik').' ('.__($this->parameter['date'],'wp-piwik').')';
19
+ $this->method = 'Actions.getPageUrl';
20
+ }
21
+
22
+ public function show() {
23
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
24
+ if (!empty($response['result']) && $response['result'] ='error')
25
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
26
+ else {
27
+ if (isset($response[0]))
28
+ $response = $response[0];
29
+ if ($this->parameter['key']) {
30
+ $this->out(isset($response[$this->parameter['key']])?$response[$this->parameter['key']]:'<em>not defined</em>');
31
+ return;
32
+ }
33
+ $time = isset($response['entry_sum_visit_length'])?$this->timeFormat($response['entry_sum_visit_length']):'-';
34
+ $avgTime = isset($response['avg_time_on_page'])?$this->timeFormat($response['avg_time_on_page']):'-';
35
+ $tableHead = null;
36
+ $tableBody = array(
37
+ array(__('Visitors', 'wp-piwik').':', $this->value($response, 'nb_visits')),
38
+ array(__('Unique visitors', 'wp-piwik').':', $this->value($response, 'sum_daily_nb_uniq_visitors')),
39
+ array(__('Page views', 'wp-piwik').':', $this->value($response, 'nb_hits').' (&#216; '.$this->value($response, 'entry_nb_actions').')'),
40
+ array(__('Total time spent', 'wp-piwik').':', $time),
41
+ array(__('Time/visit', 'wp-piwik').':', $avgTime),
42
+ array(__('Bounce count', 'wp-piwik').':', $this->value($response, 'entry_bounce_count').' ('.$this->value($response, 'bounce_rate').')'),
43
+ array(__('Min. generation time', 'wp-piwik').':', $this->value($response, 'min_time_generation')),
44
+ array(__('Max. generation time', 'wp-piwik').':', $this->value($response, 'max_time_generation'))
45
+ );
46
+ $tableFoot = (self::$settings->getGlobalOption('piwik_shortcut')?array(__('Shortcut', 'wp-piwik').':', '<a href="'.self::$settings->getGlobalOption('piwik_url').'">Piwik</a>'.(isset($aryConf['inline']) && $aryConf['inline']?' - <a href="?page=wp-piwik_stats">WP-Piwik</a>':'')):null);
47
+ $this->table($tableHead, $tableBody, $tableFoot);
48
+ }
49
+ }
50
+
51
+ }
classes/WP_Piwik/Widget/Referrers.php ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Referrers extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Referrers', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'Referrers.getWebsites';
18
+ $this->name = 'Referrer';
19
+ }
20
+
21
+ }
classes/WP_Piwik/Widget/Screens.php ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Screens extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Resolutions', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'Resolution.getResolution';
18
+ $this->context = 'normal';
19
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
20
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
21
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
22
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
23
+ }
24
+
25
+ public function addHeaderLines() {
26
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
27
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
28
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
29
+ }
30
+
31
+ public function show() {
32
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
33
+ $tableBody = array();
34
+ if (!empty($response['result']) && $response['result'] ='error')
35
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
36
+ else {
37
+ $tableHead = array(__('Resolution', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
38
+ if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
39
+ else $unique = 'sum_daily_nb_uniq_visitors';
40
+ $count = 0;
41
+ $sum = 0;
42
+ $js = array();
43
+ $class = array();
44
+ foreach ($response as $row) {
45
+ $count++;
46
+ $sum += isset($row[$unique])?$row[$unique]:0;
47
+ if ($count < $this->limit)
48
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
49
+ elseif (!isset($tableBody['Others'])) {
50
+ $tableBody['Others'] = array($row['label'], $row[$unique], 0);
51
+ $class['Others'] = 'wp-piwik-hideDetails';
52
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
53
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
54
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
55
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
56
+ } else {
57
+ $tableBody['Others'][1] += $row[$unique];
58
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
59
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
60
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
61
+ }
62
+ }
63
+ if ($count > $this->limit)
64
+ $tableBody['Others'][0] = __('Others', 'wp-piwik');
65
+
66
+ foreach ($tableBody as $key => $row)
67
+ $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
68
+
69
+ if (!empty($tableBody)) $this->pieChart($tableBody);
70
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
71
+ }
72
+ }
73
+
74
+ }
classes/WP_Piwik/Widget/Search.php ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Search extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => $timeSettings['period'],
14
+ 'date' => $timeSettings['date']
15
+ );
16
+ $this->title = $prefix.__('Site Search', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
17
+ $this->method = 'Actions.getSiteSearchKeywords';
18
+ }
19
+
20
+ public function show() {
21
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
22
+ if (!empty($response['result']) && $response['result'] ='error')
23
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
24
+ else {
25
+ $tableHead = array(__('Keyword', 'wp-piwik'), __('Requests', 'wp-piwik'), __('Bounced', 'wp-piwik'));
26
+ $tableBody = array();
27
+ $count = 0;
28
+ foreach ($response as $row) {
29
+ $count++;
30
+ $tableBody[] = array(htmlentities($row['label']), $row['nb_visits'], $row['bounce_rate']);
31
+ if ($count == 10) break;
32
+ }
33
+ $this->table($tableHead, $tableBody, null);
34
+ }
35
+ }
36
+
37
+ }
classes/WP_Piwik/Widget/Seo.php ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Seo extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $this->parameter = array(
11
+ 'url' => get_bloginfo('url')
12
+ );
13
+ $this->title = $prefix.__('SEO', 'wp-piwik');
14
+ $this->method = 'SEO.getRank';
15
+ }
16
+
17
+ public function show() {
18
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
19
+ if (!empty($response['result']) && $response['result'] ='error')
20
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
21
+ else {
22
+ echo '<div class="table"><table class="widefat"><tbody>';
23
+ if (is_array($response))
24
+ foreach ($response as $val)
25
+ echo '<tr><td>'.(isset($val['logo_link']) && !empty($val['logo_link'])?'<a href="'.$val['logo_link'].'" title="'.$val['logo_tooltip'].'">'.$val['label'].'</a>':$val['label']).'</td><td>'.$val['rank'].'</td></tr>';
26
+ else echo '<tr><td>SEO module currently not available.</td></tr>';
27
+ echo '</tbody></table></div>';
28
+ }
29
+ }
30
+
31
+ }
classes/WP_Piwik/Widget/SystemDetails.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class SystemDetails extends \WP_Piwik\Widget {
6
+
7
+ protected function configure($prefix = '', $params = array()) {
8
+ $timeSettings = $this->getTimeSettings();
9
+ $this->parameter = array(
10
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
11
+ 'period' => $timeSettings['period'],
12
+ 'date' => $timeSettings['date']
13
+ );
14
+ $this->title = $prefix.__('Operation System Details', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
15
+ $this->method = 'DevicesDetection.getOsVersions';
16
+ $this->context = 'normal';
17
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
18
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
19
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
20
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
21
+ }
22
+
23
+ public function addHeaderLines() {
24
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
25
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
26
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
27
+ }
28
+
29
+ public function show() {
30
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
31
+ $tableBody = array();
32
+ if (!empty($response['result']) && $response['result'] ='error')
33
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
34
+ else {
35
+ $tableHead = array(__('Operation System', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
36
+ if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
37
+ else $unique = 'sum_daily_nb_uniq_visitors';
38
+ $count = 0;
39
+ $sum = 0;
40
+ $js = array();
41
+ $class = array();
42
+ foreach ($response as $row) {
43
+ $count++;
44
+ $sum += isset($row[$unique])?$row[$unique]:0;
45
+ if ($count < $this->limit)
46
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
47
+ elseif (!isset($tableBody['Others'])) {
48
+ $tableBody['Others'] = array($row['label'], $row[$unique], 0);
49
+ $class['Others'] = 'wp-piwik-hideDetails';
50
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
51
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
52
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
53
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
54
+ } else {
55
+ $tableBody['Others'][1] += $row[$unique];
56
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
57
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
58
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
59
+ }
60
+ }
61
+ if ($count > $this->limit)
62
+ $tableBody['Others'][0] = __('Others', 'wp-piwik');
63
+
64
+ foreach ($tableBody as $key => $row)
65
+ $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
66
+
67
+ if (!empty($tableBody)) $this->pieChart($tableBody);
68
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
69
+ }
70
+ }
71
+
72
+ }
classes/WP_Piwik/Widget/Systems.php ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Systems extends \WP_Piwik\Widget {
6
+
7
+ protected function configure($prefix = '', $params = array()) {
8
+ $timeSettings = $this->getTimeSettings();
9
+ $this->parameter = array(
10
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
11
+ 'period' => $timeSettings['period'],
12
+ 'date' => $timeSettings['date']
13
+ );
14
+ $this->title = $prefix.__('Operation Systems', 'wp-piwik').' ('.__($timeSettings['description'],'wp-piwik').')';
15
+ $this->method = 'DevicesDetection.getOsFamilies';
16
+ $this->context = 'normal';
17
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
18
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
19
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
20
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
21
+ }
22
+
23
+ public function addHeaderLines() {
24
+ echo '<!--[if IE]><script language="javascript" type="text/javascript" src="'.self::$wpPiwik->getPluginURL().'js/jqplot/excanvas.min.js"></script><![endif]-->';
25
+ echo '<link rel="stylesheet" href="'.self::$wpPiwik->getPluginURL().'js/jqplot/jquery.jqplot.min.css" type="text/css"/>';
26
+ echo '<script type="text/javascript">var $j = jQuery.noConflict();</script>';
27
+ }
28
+
29
+ public function show() {
30
+ $response = self::$wpPiwik->request($this->apiID[$this->method]);
31
+ $tableBody = array();
32
+ if (!empty($response['result']) && $response['result'] ='error')
33
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response['message'], ENT_QUOTES, 'utf-8');
34
+ else {
35
+ $tableHead = array(__('Operation System', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Percent', 'wp-piwik'));
36
+ if (isset($response[0]['nb_uniq_visitors'])) $unique = 'nb_uniq_visitors';
37
+ else $unique = 'sum_daily_nb_uniq_visitors';
38
+ $count = 0;
39
+ $sum = 0;
40
+ $js = array();
41
+ $class = array();
42
+ foreach ($response as $row) {
43
+ $count++;
44
+ $sum += isset($row[$unique])?$row[$unique]:0;
45
+ if ($count < $this->limit)
46
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
47
+ elseif (!isset($tableBody['Others'])) {
48
+ $tableBody['Others'] = array($row['label'], $row[$unique], 0);
49
+ $class['Others'] = 'wp-piwik-hideDetails';
50
+ $js['Others'] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
51
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
52
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
53
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
54
+ } else {
55
+ $tableBody['Others'][1] += $row[$unique];
56
+ $tableBody[$row['label']] = array($row['label'], $row[$unique], 0);
57
+ $class[$row['label']] = 'wp-piwik-hideDetails hidden';
58
+ $js[$row['label']] = '$j'."( '.wp-piwik-hideDetails' ).toggle( 'hidden' );";
59
+ }
60
+ }
61
+ if ($count > $this->limit)
62
+ $tableBody['Others'][0] = __('Others', 'wp-piwik');
63
+
64
+ foreach ($tableBody as $key => $row)
65
+ $tableBody[$key][2] = number_format($row[1]/$sum*100, 2).'%';
66
+
67
+ if (!empty($tableBody)) $this->pieChart($tableBody);
68
+ $this->table($tableHead, $tableBody, null, false, $js, $class);
69
+ }
70
+ }
71
+
72
+ }
classes/WP_Piwik/Widget/Visitors.php ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace WP_Piwik\Widget;
4
+
5
+ class Visitors extends \WP_Piwik\Widget {
6
+
7
+ public $className = __CLASS__;
8
+
9
+ protected function configure($prefix = '', $params = array()) {
10
+ $timeSettings = $this->getTimeSettings();
11
+ $this->parameter = array(
12
+ 'idSite' => self::$wpPiwik->getPiwikSiteId($this->blogId),
13
+ 'period' => isset($params['period'])?$params['period']:$timeSettings['period'],
14
+ 'date' => 'last'.($timeSettings['period']=='day'?'30':'12'),
15
+ 'limit' => null
16
+ );
17
+ $this->title = $prefix.__('Visitors', 'wp-piwik').' ('.__($this->rangeName(),'wp-piwik').')';
18
+ $this->method = array('VisitsSummary.getVisits', 'VisitsSummary.getUniqueVisitors', 'VisitsSummary.getBounceCount', 'VisitsSummary.getActions');
19
+ $this->context = 'normal';
20
+ wp_enqueue_script('wp-piwik', self::$wpPiwik->getPluginURL().'js/wp-piwik.js', array(), self::$wpPiwik->getPluginVersion(), true);
21
+ wp_enqueue_script('wp-piwik-jqplot',self::$wpPiwik->getPluginURL().'js/jqplot/wp-piwik.jqplot.js',array('jquery'));
22
+ wp_enqueue_style('wp-piwik', self::$wpPiwik->getPluginURL().'css/wp-piwik.css',array(),self::$wpPiwik->getPluginVersion());
23
+ add_action('admin_head-index.php', array($this, 'addHeaderLines'));
24
+ }
25
+
26
+ public function show() {
27
+ $response = array();
28
+ $success = true;
29
+ foreach ($this->method as $method) {
30
+ $response[$method] = self::$wpPiwik->request($this->apiID[$method]);
31
+ if (!empty($response[$method]['result']) && $response[$method]['result'] ='error')
32
+ $success = false;
33
+ }
34
+ if (!$success)
35
+ echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($response[$method]['message'], ENT_QUOTES, 'utf-8');
36
+ else {
37
+ $data = array();
38
+ foreach ($response['VisitsSummary.getVisits'] as $key => $value) {
39
+ if ($this->parameter['period'] == 'week') {
40
+ preg_match("/[0-9]{4}-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]|3[0-1])/", $key, $dateList);
41
+ $jsKey = $dateList[0];
42
+ $textKey = $this->dateFormat($jsKey, 'week');
43
+ } elseif ($this->parameter['period'] == 'month') {
44
+ $jsKey = $key.'-01';
45
+ $textKey = $key;
46
+ } else $jsKey = $textKey = $key;
47
+ $data[] = array(
48
+ $textKey,
49
+ $value,
50
+ $response['VisitsSummary.getUniqueVisitors'][$key]?$response['VisitsSummary.getUniqueVisitors'][$key]:'-',
51
+ $response['VisitsSummary.getBounceCount'][$key]?$response['VisitsSummary.getBounceCount'][$key]:'-',
52
+ $response['VisitsSummary.getActions'][$key]?$response['VisitsSummary.getActions'][$key]:'-'
53
+ );
54
+ $javaScript[] = 'javascript:wp_piwik_datelink(\''.urlencode('wp-piwik_stats').'\',\''.str_replace('-', '', $jsKey).'\',\''.(isset($_GET['wpmu_show_stats'])?(int) $_GET['wpmu_show_stats']:'').'\');';
55
+ }
56
+ $this->table(
57
+ array(__('Date', 'wp-piwik'), __('Visits', 'wp-piwik'), __('Unique', 'wp-piwik'), __('Bounced', 'wp-piwik'), __('Page Views', 'wp-piwik')),
58
+ array_reverse($data),
59
+ array(),
60
+ 'clickable',
61
+ array_reverse($javaScript)
62
+ );
63
+ }
64
+
65
+ }
66
+
67
+ }
classes/WP_Piwik_Logger_Dummy.php DELETED
@@ -1,9 +0,0 @@
1
- <?php
2
-
3
- require_once('WP_Piwik_Logger.php');
4
-
5
- class WP_Piwik_Logger_Dummy extends WP_Piwik_Logger {
6
-
7
- public function loggerOutput($loggerTime, $loggerMessage) {}
8
-
9
- }
 
 
 
 
 
 
 
 
 
classes/WP_Piwik_MetaBox_PerPost_Stats.php DELETED
@@ -1,47 +0,0 @@
1
- <?php
2
-
3
- require_once('WP_Piwik_Template.php');
4
-
5
- class WP_Piwik_MetaBox_PerPost_Stats extends WP_Piwik_Template {
6
-
7
- function addMetabox() {
8
- add_meta_box(
9
- 'wp-piwik_post_perpoststats',
10
- __('Piwik Statistics (last 30 days)', 'wp-piwik'),
11
- array(&$this, 'showStats'),
12
- 'post',
13
- 'side',
14
- 'default'
15
- );
16
- }
17
-
18
- private function getStats($range = false) {
19
- global $post;
20
- $postURL = get_permalink($post->ID);
21
- $range = ($range?$range:$this->getRangeLast30());
22
- self::$logger->log('Load per post statistics: '.$postURL);
23
- return self::$wpPiwik->callPiwikAPI('Actions.getPageUrl', 'range', $range, null, false, false, 'PHP', $postURL, false);
24
- }
25
-
26
- function showStats() {
27
- $data = $this->getStats();
28
- if (!isset($data[0])) return;
29
- echo '<table>';
30
- $this->tabRow(__('Visitors', 'wp-piwik').':',$data[0]['nb_visits']);
31
- $this->tabRow(__('Unique visitors', 'wp-piwik').':', $data[0]['sum_daily_nb_uniq_visitors']);
32
- $this->tabRow(__('Page views', 'wp-piwik').':', $data[0]['nb_hits']);
33
- $this->tabRow(__('Time/visit', 'wp-piwik').':', $data[0]['avg_time_on_page']);
34
- $this->tabRow(__('Bounce count', 'wp-piwik').':', $this->output($data[0], 'entry_bounce_count', 0).' ('.$data[0]['bounce_rate'].')');
35
- $this->tabRow(__('Exit count', 'wp-piwik').':', $this->output($data[0], 'exit_nb_visits', 0).' ('.$data[0]['exit_rate'].')');
36
- if (isset($data[0]['avg_time_generation']))
37
- $this->tabRow(__('Avg. generation time', 'wp-piwik').':', $data[0]['avg_time_generation']);
38
- echo '</table>';
39
- }
40
-
41
- function getValue($range, $key) {
42
- $data = $this->getStats($range);
43
- if (!isset($data[0]) || !isset($data[0][$key])) return '-';
44
- else return $data[0][$key];
45
- }
46
-
47
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
classes/WP_Piwik_Settings.php DELETED
@@ -1,163 +0,0 @@
1
- <?php
2
-
3
- class WP_Piwik_Settings {
4
-
5
- private static $logger, $defaultSettings;
6
-
7
- private $globalSettings = array(
8
- 'revision' => 90921,
9
- 'plugin_display_name' => 'WP-Piwik',
10
- 'add_tracking_code' => false,
11
- 'last_settings_update' => 0,
12
- 'piwik_token' => '',
13
- 'piwik_url' => '',
14
- 'piwik_path' => '',
15
- 'piwik_mode' => 'http',
16
- 'piwik_useragent' => 'php',
17
- 'piwik_useragent_string' => 'WP-Piwik',
18
- 'connection_timeout' => 5,
19
- 'dashboard_widget' => false,
20
- 'dashboard_chart' => false,
21
- 'dashboard_seo' => false,
22
- 'stats_seo' => false,
23
- 'capability_stealth' => array(),
24
- 'capability_read_stats' => array('administrator' => true),
25
- 'piwik_shortcut' => false,
26
- 'default_date' => 'yesterday',
27
- 'auto_site_config' => true,
28
- 'track_404' => false,
29
- 'track_search' => false,
30
- 'track_mode' => 0,
31
- 'track_post' => false,
32
- 'track_proxy' => false,
33
- 'track_admin' => false,
34
- 'track_feed' => false,
35
- 'track_feed_goal' => '',
36
- 'track_feed_revenue' => '',
37
- 'track_feed_campaign' => 'feed',
38
- 'track_feed_addcampaign' => 'false',
39
- 'track_cdnurlssl' => '',
40
- 'track_noscript' => false,
41
- 'track_nojavascript' => false,
42
- 'track_codeposition' => 'footer',
43
- 'track_datacfasync' => false,
44
- 'track_across' => false,
45
- 'track_across_alias' => false,
46
- 'limit_cookies' => false,
47
- 'limit_cookies_visitor' => 1209600,
48
- 'limit_cookies_session' => 0,
49
- 'add_post_annotations' => false,
50
- 'add_customvars_box' => true,
51
- 'disable_timelimit' => false,
52
- 'disable_ssl_verify' => false,
53
- 'disable_cookies' => false,
54
- 'toolbar' => false,
55
- 'shortcodes' => false,
56
- 'cache' => true,
57
- 'perpost_stats' => false
58
- ),
59
- $settings = array(
60
- 'name' => '',
61
- 'tracking_code' => '',
62
- 'site_id' => NULL,
63
- 'last_tracking_code_update' => 0,
64
- 'dashboard_revision' => 0,
65
- 'noscript_code' => ''
66
- ),
67
- $settingsChanged = false;
68
-
69
- public function __construct($objLogger) {
70
- self::$logger = $objLogger;
71
- self::$logger->log('Store default settings');
72
- self::$defaultSettings = array('globalSettings' => $this->globalSettings, 'settings' => $this->settings);
73
- self::$logger->log('Load settings');
74
- $this->globalSettings = ($this->checkNetworkActivation()?
75
- get_site_option('wp-piwik_global-settings', $this->globalSettings):
76
- get_option('wp-piwik_global-settings', $this->globalSettings)
77
- );
78
- $this->settings = get_option('wp-piwik_settings',$this->settings);
79
- }
80
-
81
- public function save() {
82
- if (!$this->settingsChanged) {
83
- self::$logger->log('No settings changed yet');
84
- return;
85
- }
86
- self::$logger->log('Save settings');
87
- if (is_plugin_active_for_network('wp-piwik/wp-piwik.php'))
88
- update_site_option('wp-piwik_global-settings', $this->globalSettings);
89
- else
90
- update_option('wp-piwik_global-settings', $this->globalSettings);
91
- update_option('wp-piwik_settings', $this->settings);
92
- global $wp_roles;
93
- if (!is_object($wp_roles))
94
- $wp_roles = new WP_Roles();
95
- if (!is_object($wp_roles)) die("STILL NO OBJECT");
96
- foreach($wp_roles->role_names as $strKey => $strName) {
97
- $objRole = get_role($strKey);
98
- foreach (array('stealth', 'read_stats') as $strCap) {
99
- $aryCaps = $this->getGlobalOption('capability_'.$strCap);
100
- if (isset($aryCaps[$strKey]) && $aryCaps[$strKey])
101
- $objRole->add_cap('wp-piwik_'.$strCap);
102
- else $objRole->remove_cap('wp-piwik_'.$strCap);
103
- }
104
- }
105
- $this->settingsChanges = false;
106
- }
107
-
108
- public function getGlobalOption($key) {
109
- return isset($this->globalSettings[$key])?$this->globalSettings[$key]:self::$defaultSettings['globalSettings'][$key];
110
- }
111
-
112
- public function getOption($key) {
113
- return isset($this->settings[$key])?$this->settings[$key]:self::$defaultSettings['settings'][$key];
114
- }
115
-
116
- public function setGlobalOption($key, $value) {
117
- $this->settingsChanged = true;
118
- self::$logger->log('Changed global option '.$key.': '.(is_array($value)?serialize($value):$value));
119
- $this->globalSettings[$key] = $value;
120
- }
121
-
122
- public function setOption($key, $value) {
123
- $this->settingsChanged = true;
124
- self::$logger->log('Changed option '.$key.': '.$value);
125
- $this->settings[$key] = $value;
126
- }
127
-
128
- public function resetSettings($bolFull = false) {
129
- self::$logger->log('Reset WP-Piwik settings');
130
- global $wpdb;
131
- $keepSettings = array(
132
- 'piwik_token' => $this->getGlobalOption('piwik_token'),
133
- 'piwik_url' => $this->getGlobalOption('piwik_url'),
134
- 'piwik_path' => $this->getGlobalOption('piwik_path'),
135
- 'piwik_mode' => $this->getGlobalOption('piwik_mode')
136
- );
137
- if (is_plugin_active_for_network('wp-piwik/wp-piwik.php')) {
138
- delete_site_option('wp-piwik_global-settings');
139
- $aryBlogs = $wpdb->get_results('SELECT blog_id FROM '.$wpdb->blogs.' ORDER BY blog_id');
140
- foreach ($aryBlogs as $aryBlog)
141
- delete_blog_option($aryBlog->blog_id, 'wp-piwik_settings');
142
- if (!$bolFull) update_site_option('wp-piwik_global-settings', $keepSettings);
143
- } else {
144
- delete_option('wp-piwik_global-settings');
145
- delete_option('wp-piwik_settings');
146
- }
147
- $this->globalSettings = self::$defaultSettings['globalSettings'];
148
- $this->settings = self::$defaultSettings['settings'];
149
- if (!$bolFull) {
150
- self::$logger->log('Restore connection settings');
151
- foreach ($keepSettings as $key => $value)
152
- $this->setGlobalOption($key, $value);
153
- }
154
- $this->save();
155
- }
156
-
157
- public function checkNetworkActivation() {
158
- if (!function_exists("is_plugin_active_for_network")) {
159
- require_once(ABSPATH.'wp-admin/includes/plugin.php');
160
- }
161
- return is_plugin_active_for_network('wp-piwik/wp-piwik.php');
162
- }
163
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
config.php CHANGED
@@ -1,9 +1,9 @@
1
- <?php
2
-
3
- /*
4
- Configure WP-Piwik Logger
5
- 0: Logger disabled
6
- 1: Log to screen
7
- 2: Log to file (logs/YYYYMMDD_wp-piwik.log)
8
- */
9
- define('WP_PIWIK_ACTIVATE_LOGGER', 0);
1
+ <?php
2
+
3
+ /******************************************************
4
+ * Configure WP-Piwik Logger
5
+ * 0: Logger disabled
6
+ * 1: Log to screen
7
+ * 2: Log to file (logs/YYYYMMDD_wp-piwik.log)
8
+ ******************************************************/
9
+ define ( 'WP_PIWIK_ACTIVATE_LOGGER', 0 );
css/index.php CHANGED
File without changes
css/wp-piwik-spark.css CHANGED
@@ -1 +1,3 @@
1
- .wp-piwik_dynbar canvas {padding-top:5px !important}
 
 
1
+ .wp-piwik_dynbar canvas {
2
+ padding-top: 5px !important
3
+ }
css/wp-piwik.css CHANGED
@@ -1,37 +1,42 @@
1
- span.wp-piwik-details {
2
- font-size:0.8em;
3
- font-weight:normal;
4
  }
5
 
6
- #wp-piwik_stats_vistors_graph{margin: 0 0 0 0}
 
 
7
 
8
- p.wp-piwik-eyecatcher {
9
- border:1px solid #c00;
10
- background:#ff0;
11
- padding:5px;
12
  }
13
 
14
- table.wp-piwik-table th.n, td.n {
15
- text-align: right;
16
  }
17
 
18
- table.wp-piwik-table tr:hover {
19
- background-color:#ccc;
20
  }
21
 
22
- form.wp-piwik-settings {
23
- margin-right:270px;
24
  }
25
 
26
- table.wp-piwik-form-table {
27
- clear:none !important;
28
  }
29
- table.wp-piwik-form-table-hide, label.wp-piwik-input-hide {
30
- display:none;
 
31
  }
32
 
33
- input.wp-piwik-input-hide {
34
- visibility:hidden;
 
 
 
 
 
35
  }
36
 
37
  div.wp-piwik-donate {
@@ -40,8 +45,7 @@ div.wp-piwik-donate {
40
  background:#ffc;
41
  padding:10px;
42
  border:1px solid black;
43
- margin-bottom:10px;
44
- margin-top:10px;
45
  }
46
 
47
  div.wp-piwik-donate div {
@@ -50,69 +54,4 @@ div.wp-piwik-donate div {
50
  border:solid black;
51
  border-width:1px 0 0 0 ;
52
  padding:5px
53
- }
54
-
55
- div.wp-piwik-settings h4 {
56
- float:left;
57
- font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif !important;
58
- font-size:12px !important;
59
- font-weight:normal;
60
- padding-top:0px !important;
61
- text-align:right;
62
- width:160px;
63
- }
64
- div.wp-piwik-settings h4 label {
65
- margin-right:10px;
66
- vertical-align:middle;
67
- }
68
- div.wp-piwik-settings .input-text-wrap input,
69
- div.wp-piwik-settings .input-text-wrap select,
70
- div.wp-piwik-settings .input-text-wrap textarea {
71
- border:0 none;
72
- color:#333333;
73
- outline:medium none;
74
- padding:0;
75
- width:99%;
76
- }
77
-
78
- div.wp-piwik-settings .input-wrap {
79
- padding-top:0px;
80
- }
81
-
82
- div.wp-piwik-settings .input-wrap input {
83
- border:0 none;
84
- color:#333333;
85
- padding:0;
86
- }
87
-
88
- div.wp-piwik-settings .input-text-wrap {
89
- margin:0 0 1em 160px;
90
- border:1px solid #CCCCCC;
91
- }
92
-
93
- div.wp-piwik_desc {
94
- font-size:11px;
95
- margin:0 0 10px 160px;
96
- padding:0;
97
- }
98
-
99
- div.wp-piwik_desc strong {
100
- color:#f00;
101
- }
102
-
103
- strong.wp-piwik-error {color:#f00}
104
-
105
- .wp-list-table .column-id {width:20%}
106
- .wp-list-table .column-name {width:30%}
107
- .wp-list-table .column-siteurl {width:30%}
108
- .wp-list-table .column-piwikid {width:20%}
109
-
110
- .wp-piwik_dynbar canvas {padding-top:5px !important}
111
-
112
- .wp-piwik-wide-content {
113
- width:512px !important;
114
- }
115
-
116
- .wp-piwik-graph-wide {
117
- overflow:hidden;
118
  }
1
+ .wp-piwik-hidden {
2
+ display: none;
 
3
  }
4
 
5
+ table.wp-piwik-table th.right, td.right {
6
+ text-align: right;
7
+ }
8
 
9
+ table.wp-piwik-table tr:hover {
10
+ background-color: #ccc;
 
 
11
  }
12
 
13
+ table.wp-piwik-table tbody.clickable {
14
+ cursor: pointer;
15
  }
16
 
17
+ #wp-piwik_stats_vistors_graph {
18
+ overflow: hidden;
19
  }
20
 
21
+ .wp-piwik_dynbar canvas {
22
+ padding-top: 5px !important
23
  }
24
 
25
+ table.wp-piwik_menu-tab th {
26
+ vertical-align: top;
27
  }
28
+
29
+ div.wp-piwik-debug {
30
+ padding:10px;
31
  }
32
 
33
+ tr.wp-piwik-hideDetails {
34
+ cursor: pointer;
35
+ text-decoration: underline;
36
+ }
37
+
38
+ input.wp-piwik-wide {
39
+ width:100%;
40
  }
41
 
42
  div.wp-piwik-donate {
45
  background:#ffc;
46
  padding:10px;
47
  border:1px solid black;
48
+ margin: 10px 10px;
 
49
  }
50
 
51
  div.wp-piwik-donate div {
54
  border:solid black;
55
  border-width:1px 0 0 0 ;
56
  padding:5px
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
57
  }
dashboard/.htaccess DELETED
@@ -1 +0,0 @@
1
- Deny from all
 
dashboard/browserdetails.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:BrowserDetails
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'UserSettings.getBrowserVersion',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Browser Details', 'wp-piwik');
13
- $strValues = '';
14
- $intCount = 0; $intMore = 0; $intSum = 0;
15
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] ='error')
16
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
17
- else {
18
- if (is_array($aryConf['data']))
19
- foreach ($aryConf['data'] as $key => $aryValues) {
20
- $intCount++;
21
- if ($intCount <= 9) $strValues .= '["'.$aryValues['label'].'",'.$aryValues['nb_uniq_visitors'].'],';
22
- else $intMore += $aryValues['nb_uniq_visitors'];
23
- $intSum += $aryValues['nb_uniq_visitors'];
24
- }
25
- if ($intMore) $strValues .= '["'.__('Others', 'wp-piwik').'",'.$intMore.'],';
26
- $strValues = substr($strValues, 0, -1);
27
- if ($intSum) {
28
- /***************************************************************************/ ?>
29
- <div class="wp-piwik-graph-wide">
30
- <div id="wp-piwik_stats_browserdetails_graph" style="height:310px;width:100%"></div>
31
- </div>
32
- <?php /************************************************************************/
33
- }
34
- /***************************************************************************/ ?>
35
- <div class="table">
36
- <table class="widefat wp-piwik-table">
37
- <thead>
38
- <tr>
39
- <th><?php _e('Browser', 'wp-piwik'); ?></th>
40
- <th class="n"><?php _e('Unique', 'wp-piwik'); ?></th>
41
- <th class="n"><?php _e('Percent', 'wp-piwik'); ?></th>
42
- </tr>
43
- </thead>
44
- <tbody>
45
- <?php /************************************************************************/
46
- if ($intSum)
47
- foreach ($aryConf['data'] as $aryValues)
48
- echo '<tr><td>'.
49
- $aryValues['label'].
50
- '</td><td class="n">'.
51
- $aryValues['nb_uniq_visitors'].
52
- '</td><td class="n">'.
53
- number_format($aryValues['nb_uniq_visitors']/$intSum*100, 2).
54
- '%</td></tr>';
55
- else echo '<tr><td colspan="3">'.__('No data available.', 'wp-piwik').'</td></tr>';
56
- unset($aryTmp);
57
- /***************************************************************************/ ?>
58
- </tbody>
59
- </table>
60
- </div>
61
- <script type="text/javascript">
62
- $plotBrowsers = $j.jqplot('wp-piwik_stats_browserdetails_graph', [[<?php echo $strValues; ?>]], {
63
- seriesDefaults:{renderer:$j.jqplot.PieRenderer, rendererOptions:{sliceMargin:8}},
64
- legend:{show:true}
65
- });
66
- </script>
67
- <?php
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/browsers.php DELETED
@@ -1,69 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Browser
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'UserSettings.getBrowser',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
-
13
- $aryConf['title'] = __('Browser', 'wp-piwik');
14
- $strValues = '';
15
- $intCount = 0; $intMore = 0; $intSum = 0;
16
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] ='error')
17
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
18
- else {
19
- if (is_array($aryConf['data']))
20
- foreach ($aryConf['data'] as $key => $aryValues) {
21
- $intCount++;
22
- if ($intCount <= 9) $strValues .= '["'.$aryValues['label'].'",'.$aryValues['nb_uniq_visitors'].'],';
23
- else $intMore += $aryValues['nb_uniq_visitors'];
24
- $intSum += $aryValues['nb_uniq_visitors'];
25
- }
26
- if ($intMore) $strValues .= '["'.__('Others', 'wp-piwik').'",'.$intMore.'],';
27
- $strValues = substr($strValues, 0, -1);
28
- if ($intSum) {
29
- /***************************************************************************/ ?>
30
- <div class="wp-piwik-graph-wide">
31
- <div id="wp-piwik_stats_browsers_graph" style="height:310px;width:100%"></div>
32
- </div>
33
- <?php /************************************************************************/
34
- }
35
- /***************************************************************************/ ?>
36
- <div class="table">
37
- <table class="widefat wp-piwik-table">
38
- <thead>
39
- <tr>
40
- <th><?php _e('Browser', 'wp-piwik'); ?></th>
41
- <th class="n"><?php _e('Unique', 'wp-piwik'); ?></th>
42
- <th class="n"><?php _e('Percent', 'wp-piwik'); ?></th>
43
- </tr>
44
- </thead>
45
- <tbody>
46
- <?php /************************************************************************/
47
- if ($intSum)
48
- foreach ($aryConf['data'] as $aryValues)
49
- echo '<tr><td>'.
50
- $aryValues['label'].
51
- '</td><td class="n">'.
52
- $aryValues['nb_uniq_visitors'].
53
- '</td><td class="n">'.
54
- number_format($aryValues['nb_uniq_visitors']/$intSum*100, 2).
55
- '%</td></tr>';
56
- else echo '<tr><td colspan="3">'.__('No data available.', 'wp-piwik').'</td></tr>';
57
- unset($aryTmp);
58
- /***************************************************************************/ ?>
59
- </tbody>
60
- </table>
61
- </div>
62
- <script type="text/javascript">
63
- $plotBrowsers = $j.jqplot('wp-piwik_stats_browsers_graph', [[<?php echo $strValues; ?>]], {
64
- seriesDefaults:{renderer:$j.jqplot.PieRenderer, rendererOptions:{sliceMargin:8}},
65
- legend:{show:true}
66
- });
67
- </script>
68
- <?php
69
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/index.php DELETED
@@ -1,2 +0,0 @@
1
- <?php
2
- // Nothing to see...
 
 
dashboard/keywords.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Keywords
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'Referers.getKeywords',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Keywords', 'wp-piwik');
13
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] = 'error')
14
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
15
- else {
16
- /***************************************************************************/ ?>
17
- <table class="widefat">
18
- <thead>
19
- <tr><th><?php _e('Keyword', 'wp-piwik'); ?></th><th><?php _e('Unique', 'wp-piwik'); ?></th></tr>
20
- </thead>
21
- <tbody>
22
- <?php /************************************************************************/
23
- if (is_array($aryConf['data'])) foreach ($aryConf['data'] as $aryValues)
24
- echo '<tr><td>'.$aryValues['label'].'</td><td>'.$aryValues['nb_uniq_visitors'].'</td></tr>';
25
- else echo '<tr><td colspan="2">'.__('No data available.', 'wp-piwik').'</td></tr>';
26
- /***************************************************************************/ ?>
27
- </tbody>
28
- </table>
29
- <?php /************************************************************************/
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/noresult.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:SiteSearchNoResults
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'Actions.getSiteSearchNoResultKeywords',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Site Search without Results', 'wp-piwik');
13
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] = 'error')
14
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
15
- else {
16
- /***************************************************************************/ ?>
17
- <table class="widefat">
18
- <thead>
19
- <tr><th><?php _e('Keyword', 'wp-piwik'); ?></th><th><?php _e('Requests', 'wp-piwik'); ?></th><th><?php _e('Bounced', 'wp-piwik'); ?></th></tr>
20
- </thead>
21
- <tbody>
22
- <?php /************************************************************************/
23
- if (is_array($aryConf['data'])) foreach ($aryConf['data'] as $aryValues)
24
- echo '<tr><td>'.$aryValues['label'].'</td><td>'.$aryValues['nb_visits'].'</td><td>'.$aryValues['bounce_rate'].'</td></tr>';
25
- else echo '<tr><td colspan="2">'.__('No data available.', 'wp-piwik').'</td></tr>';
26
- /***************************************************************************/ ?>
27
- </tbody>
28
- </table>
29
- <?php /************************************************************************/
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/overview.php DELETED
@@ -1,70 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Overview
4
- **********************************/
5
- $aryTmp = array(
6
- 'bounce_count' => 0,
7
- 'max_actions' => 0,
8
- 'nb_actions' => 0,
9
- 'nb_uniq_visitors' => 0,
10
- 'nb_visits' => 0,
11
- 'nb_visits_converted' => 0,
12
- 'sum_visit_length' => 0,
13
- 'bounce_rate' => 0,
14
- 'nb_actions_per_visit' => 0,
15
- 'avg_time_on_site' => 0
16
- );
17
- $aryConf['data'] = $this->callPiwikAPI(
18
- 'VisitsSummary.get',
19
- $aryConf['params']['period'],
20
- $aryConf['params']['date'],
21
- $aryConf['params']['limit']
22
- );
23
- $aryConf['title'] = __('Overview', 'wp-piwik');
24
-
25
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] ='error')
26
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
27
- else {
28
- if ($aryConf['params']['date'] == 'last30') {
29
- $intValCnt = 0;
30
- if (is_array($aryConf['data']))
31
- foreach ($aryConf['data'] as $aryDay)
32
- foreach ($aryDay as $strKey => $strValue) {
33
- $intValCnt++;
34
- if (!in_array($strKey, array('max_actions','bounce_rate','nb_actions_per_visit','avg_time_on_site')))
35
- { if (isset($aryTmp[$strKey])) $aryTmp[$strKey] += $strValue;}
36
- elseif ($aryTmp[$strKey] < $strValue)
37
- $aryTmp[$strKey] = $strValue;
38
- }
39
- $aryConf['data'] = $aryTmp;
40
- if ($intValCnt > 1 && $aryConf['data']['nb_visits'] >0) $aryConf['data']['bounce_rate'] = round($aryConf['data']['bounce_count']/$aryConf['data']['nb_visits']*100).'%';
41
- }
42
- if (empty($aryConf['data'])) $aryConf['data'] = $aryTmp;
43
- /***************************************************************************/ ?>
44
- <div class="table">
45
- <table class="widefat">
46
- <tbody>
47
- <?php /************************************************************************/
48
- $strTime =
49
- floor($aryConf['data']['sum_visit_length']/3600).'h '.
50
- floor(($aryConf['data']['sum_visit_length'] % 3600)/60).'m '.
51
- floor(($aryConf['data']['sum_visit_length'] % 3600) % 60).'s';
52
- $strAvgTime =
53
- floor($aryConf['data']['avg_time_on_site']/3600).'h '.
54
- floor(($aryConf['data']['avg_time_on_site'] % 3600)/60).'m '.
55
- floor(($aryConf['data']['avg_time_on_site'] % 3600) % 60).'s';
56
- echo '<tr><td>'.__('Visitors', 'wp-piwik').':</td><td>'.$aryConf['data']['nb_visits'].'</td></tr>';
57
- echo '<tr><td>'.__('Unique visitors', 'wp-piwik').':</td><td>'.$aryConf['data']['nb_uniq_visitors'].'</td></tr>';
58
- echo '<tr><td>'.__('Page views', 'wp-piwik').':</td><td>'.$aryConf['data']['nb_actions'].' (&#216; '.$aryConf['data']['nb_actions_per_visit'].')</td></tr>';
59
- echo '<tr><td>'.__('Max. page views in one visit', 'wp-piwik').':</td><td>'.$aryConf['data']['max_actions'].'</td></tr>';
60
- echo '<tr><td>'.__('Total time spent', 'wp-piwik').':</td><td>'.$strTime.'</td></tr>';
61
- echo '<tr><td>'.__('Time/visit', 'wp-piwik').':</td><td>'.$strAvgTime.'</td></tr>';
62
- echo '<tr><td>'.__('Bounce count', 'wp-piwik').':</td><td>'.$aryConf['data']['bounce_count'].' ('.$aryConf['data']['bounce_rate'].')</td></tr>';
63
- if (self::$settings->getGlobalOption('piwik_shortcut'))
64
- echo '<tr><td>'.__('Shortcut', 'wp-piwik').':</td><td><a href="'.self::$settings->getGlobalOption('piwik_url').'">Piwik</a>'.(isset($aryConf['inline']) && $aryConf['inline']?' - <a href="?page=wp-piwik_stats">WP-Piwik</a>':'').'</td></tr>';
65
- /***************************************************************************/ ?>
66
- </tbody>
67
- </table>
68
- </div>
69
- <?php /************************************************************************/
70
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/pages.php DELETED
@@ -1,57 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Pages
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'Actions.getPageTitles',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $intMax = 9;
13
- $aryConf['title'] = __('Pages', 'wp-piwik');
14
-
15
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] = 'error')
16
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
17
- else {
18
- /***************************************************************************/ ?>
19
- <div class="table">
20
- <table class="widefat wp-piwik-table">
21
- <thead>
22
- <tr>
23
- <th><?php _e('Page', 'wp-piwik'); ?></th>
24
- <th class="n"><?php _e('Unique', 'wp-piwik'); ?></th>
25
- <th class="n"><?php _e('Visits', 'wp-piwik'); ?></th>
26
- </tr>
27
- </thead>
28
- <tbody>
29
- <?php /************************************************************************/
30
- $intCount = 0; $aryOthers = array('u' => 0, 'v' => 0);
31
- if (is_array($aryConf['data'])) foreach ($aryConf['data'] as $aryValues) {
32
- $intCount++;
33
- if ($intCount > $intMax) {
34
- $aryOthers['u'] += (isset($aryValues['nb_uniq_visitors'])?$aryValues['nb_uniq_visitors']:0);
35
- $aryOthers['v'] += (isset($aryValues['nb_visits'])?$aryValues['nb_visits']:0);
36
- } else echo '<tr><td>'.
37
- $aryValues['label'].
38
- '</td><td class="n">'.
39
- $aryValues['nb_uniq_visitors'].
40
- '</td><td class="n">'.
41
- $aryValues['nb_visits'].
42
- '</td></tr>';
43
- } else echo '<tr><td colspan="3">'.__('No data available.', 'wp-piwik').'</td></tr>';
44
- if (!empty($aryOthers['v'])) echo '<tr><td>'.
45
- __('Others', 'wp-piwik').
46
- '</td><td class="n">'.
47
- $aryOthers['u'].
48
- '</td><td class="n">'.
49
- $aryOthers['v'].
50
- '</td></tr>';
51
-
52
- /***************************************************************************/ ?>
53
- </tbody>
54
- </table>
55
- </div>
56
- <?php /************************************************************************/
57
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/plugins.php DELETED
@@ -1,58 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Plugins
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'UserSettings.getPlugin',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Plugins', 'wp-piwik');
13
-
14
- $aryOverview = $this->callPiwikAPI(
15
- 'VisitsSummary.get',
16
- $aryConf['params']['period'],
17
- $aryConf['params']['date'],
18
- $aryConf['params']['limit']
19
- );
20
-
21
- $intTotalVisits = (isset($aryOverview['nb_visits'])?$aryOverview['nb_visits']:0);
22
-
23
- unset($aryOverview);
24
-
25
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] = 'error')
26
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
27
- else {
28
- /***************************************************************************/ ?>
29
- <div class="table">
30
- <table class="widefat wp-piwik-table">
31
- <thead>
32
- <tr>
33
- <th><?php _e('Plugins', 'wp-piwik'); ?></th>
34
- <th class="n"><?php _e('Visits', 'wp-piwik'); ?></th>
35
- <th class="n"><?php _e('Percent', 'wp-piwik'); ?></th>
36
- </tr>
37
- </thead>
38
- <tbody>
39
- <?php /************************************************************************/
40
- if (is_array($aryConf['data'])) foreach ($aryConf['data'] as $aryValues)
41
- echo '<tr><td>'.
42
- $aryValues['label'].
43
- '</td><td class="n">'.
44
- $aryValues['nb_visits'].
45
- '</td><td class="n">'.
46
- ($intTotalVisits != 0?
47
- number_format(($aryValues['nb_visits']/$intTotalVisits*100),2):
48
- '0.00%'
49
- ).
50
- '%</td></tr>';
51
- else echo '<tr><td colspan="3">'.__('No data available.', 'wp-piwik').'</td></tr>';
52
- unset($aryTmp);
53
- /***************************************************************************/ ?>
54
- </tbody>
55
- </table>
56
- </div>
57
- <?php /************************************************************************/
58
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/screens.php DELETED
@@ -1,68 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Screens
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'UserSettings.getResolution',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Resolution', 'wp-piwik');
13
- $strValues = '';
14
- $intCount = 0; $intMore = 0; $intSum = 0;
15
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] ='error')
16
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
17
- else {
18
- if (is_array($aryConf['data']))
19
- foreach ($aryConf['data'] as $key => $aryValues) {
20
- $intCount++;
21
- if ($intCount <= 9) $strValues .= '["'.$aryValues['label'].'",'.$aryValues['nb_uniq_visitors'].'],';
22
- else $intMore += $aryValues['nb_uniq_visitors'];
23
- $intSum += $aryValues['nb_uniq_visitors'];
24
- }
25
- if ($intMore) $strValues .= '["'.__('Others', 'wp-piwik').'",'.$intMore.'],';
26
- $strValues = substr($strValues, 0, -1);
27
- if ($intSum) {
28
- /***************************************************************************/ ?>
29
- <div class="wp-piwik-graph-wide">
30
- <div id="wp-piwik_stats_screens_graph" style="height:310px;width:100%"></div>
31
- </div>
32
- <?php /************************************************************************/
33
- }
34
- /***************************************************************************/ ?>
35
- <div class="table">
36
- <table class="widefat wp-piwik-table">
37
- <thead>
38
- <tr>
39
- <th><?php _e('Resolution', 'wp-piwik'); ?></th>
40
- <th class="n"><?php _e('Unique', 'wp-piwik'); ?></th>
41
- <th class="n"><?php _e('Percent', 'wp-piwik'); ?></th>
42
- </tr>
43
- </thead>
44
- <tbody>
45
- <?php /************************************************************************/
46
- if ($intSum)
47
- foreach ($aryConf['data'] as $aryValues)
48
- echo '<tr><td>'.
49
- $aryValues['label'].
50
- '</td><td class="n">'.
51
- $aryValues['nb_uniq_visitors'].
52
- '</td><td class="n">'.
53
- number_format($aryValues['nb_uniq_visitors']/$intSum*100, 2).
54
- '%</td></tr>';
55
- else echo '<tr><td colspan="3">'.__('No data available.', 'wp-piwik').'</td></tr>';
56
- unset($aryTmp);
57
- /***************************************************************************/ ?>
58
- </tbody>
59
- </table>
60
- </div>
61
- <script type="text/javascript">
62
- $plotScreens = $j.jqplot('wp-piwik_stats_screens_graph', [[<?php echo $strValues; ?>]], {
63
- seriesDefaults:{renderer:$j.jqplot.PieRenderer, rendererOptions:{sliceMargin:8}},
64
- legend:{show:true}
65
- });
66
- </script>
67
- <?php
68
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/search.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:SiteSearch
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'Actions.getSiteSearchKeywords',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Site Search Keywords', 'wp-piwik');
13
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] = 'error')
14
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
15
- else {
16
- /***************************************************************************/ ?>
17
- <table class="widefat">
18
- <thead>
19
- <tr><th><?php _e('Keyword', 'wp-piwik'); ?></th><th><?php _e('Requests', 'wp-piwik'); ?></th><th><?php _e('Bounced', 'wp-piwik'); ?></th></tr>
20
- </thead>
21
- <tbody>
22
- <?php /************************************************************************/
23
- if (is_array($aryConf['data'])) foreach ($aryConf['data'] as $aryValues)
24
- echo '<tr><td>'.$aryValues['label'].'</td><td>'.$aryValues['nb_visits'].'</td><td>'.$aryValues['bounce_rate'].'</td></tr>';
25
- else echo '<tr><td colspan="2">'.__('No data available.', 'wp-piwik').'</td></tr>';
26
- /***************************************************************************/ ?>
27
- </tbody>
28
- </table>
29
- <?php /************************************************************************/
30
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/seo.php DELETED
@@ -1,36 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:SEO
4
- **********************************/
5
- $aryConf['data'] = $GLOBALS['wp_piwik']->callPiwikAPI(
6
- 'SEO.getRank',
7
- $aryConf['params']['period'],
8
- $aryConf['params']['date'],
9
- $aryConf['params']['limit'],
10
- false,
11
- false,
12
- 'csv'
13
- );
14
-
15
- if (substr($aryConf['data'], 0, 6) == 'Error:') {
16
- $strMessage = str_replace('Error:', '', $aryConf['data']);
17
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($strMessage, ENT_QUOTES, 'utf-8');
18
- } else {
19
-
20
- $aryConf['title'] = __('SEO', 'wp-piwik');
21
- $aryLines = explode("\n", $aryConf['data']);
22
- foreach ($aryLines as $strLine)
23
- $aryData[] = explode(',', $strLine);
24
- unset($aryData[0]);
25
- /***************************************************************************/ ?>
26
- <div class="table">
27
- <table class="widefat">
28
- <tbody>
29
- <?php foreach ($aryData as $aryVal) { ?>
30
- <tr><td><?php echo $aryVal[0]; ?></td><td><?php echo $aryVal[1]; ?></td></tr>
31
- <?php } ?>
32
- </tbody>
33
- </table>
34
- </div>
35
- <?php /************************************************************************/
36
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/systems.php DELETED
@@ -1,69 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Systems
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'UserSettings.getOS',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Operating System', 'wp-piwik');
13
- $strValues = '';
14
- $intCount = 0; $intMore = 0; $intSum = 0;
15
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] ='error')
16
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
17
- else {
18
- if (is_array($aryConf['data']))
19
- foreach ($aryConf['data'] as $key => $aryValues) {
20
- $intCount++;
21
- if ($intCount <= 9) $strValues .= '["'.$aryValues['label'].'",'.$aryValues['nb_uniq_visitors'].'],';
22
- else $intMore += $aryValues['nb_uniq_visitors'];
23
- $intSum += $aryValues['nb_uniq_visitors'];
24
- }
25
- if ($intMore) $strValues .= '["'.__('Others', 'wp-piwik').'",'.$intMore.'],';
26
- $strValues = substr($strValues, 0, -1);
27
-
28
- if ($intSum) {
29
- /***************************************************************************/ ?>
30
- <div class="wp-piwik-graph-wide">
31
- <div id="wp-piwik_stats_systems_graph" style="height:310px;width:100%"></div>
32
- </div>
33
- <?php /************************************************************************/
34
- }
35
- /***************************************************************************/ ?>
36
- <div class="table">
37
- <table class="widefat wp-piwik-table">
38
- <thead>
39
- <tr>
40
- <th><?php _e('Operating System', 'wp-piwik'); ?></th>
41
- <th class="n"><?php _e('Unique', 'wp-piwik'); ?></th>
42
- <th class="n"><?php _e('Percent', 'wp-piwik'); ?></th>
43
- </tr>
44
- </thead>
45
- <tbody>
46
- <?php /************************************************************************/
47
- if ($intSum)
48
- foreach ($aryConf['data'] as $aryValues)
49
- echo '<tr><td>'.
50
- $aryValues['label'].
51
- '</td><td class="n">'.
52
- $aryValues['nb_uniq_visitors'].
53
- '</td><td class="n">'.
54
- number_format($aryValues['nb_uniq_visitors']/$intSum*100, 2).
55
- '%</td></tr>';
56
- else echo '<tr><td colspan="3">'.__('No data available.', 'wp-piwik').'</td></tr>';
57
- unset($aryTmp);
58
- /***************************************************************************/ ?>
59
- </tbody>
60
- </table>
61
- </div>
62
- <script type="text/javascript">
63
- $plotSystems = $j.jqplot('wp-piwik_stats_systems_graph', [[<?php echo $strValues; ?>]], {
64
- seriesDefaults:{renderer:$j.jqplot.PieRenderer, rendererOptions:{sliceMargin:8}},
65
- legend:{show:true}
66
- });
67
- </script>
68
- <?php
69
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/visitors.php DELETED
@@ -1,99 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Vistors
4
- **********************************/
5
-
6
- $aryConf['data']['Visitors'] = $this->callPiwikAPI(
7
- 'VisitsSummary.getVisits',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['data']['Unique'] = $this->callPiwikAPI(
13
- 'VisitsSummary.getUniqueVisitors',
14
- $aryConf['params']['period'],
15
- $aryConf['params']['date'],
16
- $aryConf['params']['limit']
17
- );
18
- $aryConf['data']['Bounced'] = $this->callPiwikAPI(
19
- 'VisitsSummary.getBounceCount',
20
- $aryConf['params']['period'],
21
- $aryConf['params']['date'],
22
- $aryConf['params']['limit']
23
- );
24
- $aryConf['data']['Actions'] = $this->callPiwikAPI(
25
- 'VisitsSummary.getActions',
26
- $aryConf['params']['period'],
27
- $aryConf['params']['date'],
28
- $aryConf['params']['limit']
29
- );
30
-
31
- if (isset($aryConf['data']['Visitors']['result']) && $aryConf['data']['Visitors']['result'] ='error')
32
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['Visitors']['message'], ENT_QUOTES, 'utf-8');
33
- else {
34
- $strValues = $strLabels = $strBounced = $strValuesU = $strCounter = '';
35
- $intUSum = $intCount = 0;
36
- if (is_array($aryConf['data']['Visitors']))
37
- foreach ($aryConf['data']['Visitors'] as $strDate => $intValue) {
38
- $intCount++;
39
- $strValues .= $intValue.',';
40
- $strValuesU .= $aryConf['data']['Unique'][$strDate].',';
41
- $strBounced .= $aryConf['data']['Bounced'][$strDate].',';
42
- $strLabels .= '['.$intCount.',"'.substr($strDate,-2).'"],';
43
- $intUSum += $aryConf['data']['Unique'][$strDate];
44
- }
45
- else {$strValues = '0,'; $strLabels = '[0,"-"],'; $strValuesU = '0,'; $strBounced = '0,'; }
46
- $intAvg = round($intUSum/30,0);
47
- $strValues = substr($strValues, 0, -1);
48
- $strValuesU = substr($strValuesU, 0, -1);
49
- $strLabels = substr($strLabels, 0, -1);
50
- $strBounced = substr($strBounced, 0, -1);
51
- $strCounter = substr($strCounter, 0, -1);
52
-
53
- /***************************************************************************/ ?>
54
- <div class="wp-piwik-graph-wide" title="<?php _e('The graph contains the values shown in the table below (visitors / unique / bounces). The red line show a linear trendline (unique).', 'wp-piwik'); ?>">
55
- <div id="wp-piwik_stats_vistors_graph" style="height:220px;<?php if (!isset($aryConf['inline']) || $aryConf['inline'] != true) { ?>width:100%<?php } ?>"></div>
56
- </div>
57
- <?php if (!isset($aryConf['inline']) || $aryConf['inline'] != true) { ?>
58
- <div class="table">
59
- <table class="widefat wp-piwik-table">
60
- <thead>
61
- <tr>
62
- <th><?php _e('Date', 'wp-piwik'); ?></th>
63
- <th class="n"><?php _e('Visits', 'wp-piwik'); ?></th>
64
- <th class="n"><?php _e('Unique', 'wp-piwik'); ?></th>
65
- <th class="n"><?php _e('Bounced', 'wp-piwik'); ?></th>
66
- <th class="n"><?php _e('Page Views', 'wp-piwik'); ?></th>
67
- </tr>
68
- </thead>
69
- <tbody style="cursor:pointer;">
70
- <?php /************************************************************************/
71
- if (is_array($aryConf['data']['Visitors'])) {
72
- $aryTmp = array_reverse($aryConf['data']['Visitors']);
73
- foreach ($aryTmp as $strDate => $intValue)
74
- echo '<tr onclick="javascript:datelink(\''.urlencode('wp-piwik_stats').'\',\''.str_replace('-', '', $strDate).'\',\''.(isset($_GET['wpmu_show_stats'])?(int) $_GET['wpmu_show_stats']:'').'\');"><td>'.$strDate.'</td><td class="n">'.
75
- $intValue.'</td><td class="n">'.
76
- $aryConf['data']['Unique'][$strDate].
77
- '</td><td class="n">'.
78
- $aryConf['data']['Bounced'][$strDate].
79
- '</td><td class="n">'.
80
- $aryConf['data']['Actions'][$strDate].
81
- '</td></tr>'."\n";
82
- }
83
- echo '<tr><td class="n" colspan="4"><strong>'.__('Unique TOTAL', 'wp-piwik').'</strong> '.__('Sum', 'wp-piwik').': '.$intUSum.' '.__('Avg', 'wp-piwik').': '.$intAvg.'</td></tr>';
84
- unset($aryTmp);
85
- /***************************************************************************/ ?>
86
- </tbody>
87
- </table>
88
- </div>
89
- <?php } ?>
90
- <script type="text/javascript">
91
- $plotVisitors = $j.jqplot('wp-piwik_stats_vistors_graph', [[<?php echo $strValues; ?>],[<?php echo $strValuesU; ?>],[<?php echo $strBounced;?>]],
92
- {
93
- axes:{yaxis:{min:0, tickOptions:{formatString:'%.0f'}},xaxis:{min:1,max:30,ticks:[<?php echo $strLabels; ?>]}},
94
- seriesDefaults:{showMarker:false,lineWidth:1,fill:true,fillAndStroke:true,fillAlpha:0.9,trendline:{show:false,color:'#C00',lineWidth:1.5,type:'exp'}},
95
- series:[{color:'#90AAD9',fillColor:'#D4E2ED'},{color:'#A3BCEA',fillColor:'#E4F2FD',trendline:{show:true,label:'Unique visitor trend'}},{color:'#E9A0BA',fillColor:'#FDE4F2'}],
96
- });
97
- </script>
98
- <?php
99
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
dashboard/websites.php DELETED
@@ -1,34 +0,0 @@
1
- <?php
2
- /*********************************
3
- WP-Piwik::Stats:Websites
4
- **********************************/
5
-
6
- $aryConf['data'] = $this->callPiwikAPI(
7
- 'Referers.getWebsites',
8
- $aryConf['params']['period'],
9
- $aryConf['params']['date'],
10
- $aryConf['params']['limit']
11
- );
12
- $aryConf['title'] = __('Websites', 'wp-piwik');
13
-
14
- if (isset($aryConf['data']['result']) && $aryConf['data']['result'] = 'error')
15
- echo '<strong>'.__('Piwik error', 'wp-piwik').':</strong> '.htmlentities($aryConf['data']['message'], ENT_QUOTES, 'utf-8');
16
- else {
17
- /***************************************************************************/ ?>
18
- <table class="widefat">
19
- <thead>
20
- <tr>
21
- <th><?php _e('Website', 'wp-piwik'); ?></th>
22
- <th><?php _e('Unique', 'wp-piwik'); ?></th>
23
- </tr>
24
- </thead>
25
- <tbody>
26
- <?php /************************************************************************/
27
- if (is_array($aryConf['data'])) foreach ($aryConf['data'] as $aryValues)
28
- echo '<tr><td>'.$aryValues['label'].'</td><td>'.$aryValues['nb_uniq_visitors'].'</td></tr>';
29
- else echo '<tr><td colspan="2">'.__('No data available.', 'wp-piwik').'</td></tr>';
30
- /***************************************************************************/ ?>
31
- </tbody>
32
- </table>
33
- <?php /************************************************************************/
34
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
debug/.htaccess DELETED
@@ -1 +0,0 @@
1
- Deny from all
 
debug/testscript.php DELETED
@@ -1,86 +0,0 @@
1
- <?php
2
- /**
3
- * WP-Piwik
4
- * Piwik API call test script revision 4
5
- */
6
-
7
- /*****************
8
- * CONFIGURATION *
9
- *****************/
10
-
11
- // PIWIK URL, e.g. http://www.website.example/piwik
12
- $strPiwikURL = self::$settings->getGlobalOption('piwik_url');
13
- // PIWIK AUTH TOKEN, e.g. 1234a5cd6789e0a12345b678cd9012ef
14
- $strPiwikAuthToken = self::$settings->getGlobalOption('piwik_token');
15
- // YOUR BLOG'S URL, e.g. http://www.website.example
16
- $strPiwikYourBlogURL = get_bloginfo('url');
17
- // User agent
18
- $strUA = self::$settings->getGlobalOption('piwik_useragent')=='php'?ini_get('user_agent'):self::$settings->getGlobalOption('piwik_useragent_string');
19
-
20
- /* That's all, stop editing! */
21
-
22
- /**
23
- * Get remote file
24
- *
25
- * @param String $strURL Remote file URL
26
- */
27
- function getRemoteFile($strURL, $strToken, $bolSSL, $strUA) {
28
- // Use cURL if available
29
- if (function_exists('curl_init')) {
30
- // Init cURL
31
- $c = curl_init($strURL.$strToken);
32
- // Configure cURL CURLOPT_RETURNTRANSFER = 1
33
- curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
34
- // Verbose = 1
35
- curl_setopt($c, CURLOPT_VERBOSE, 1);
36
- // Configure cURL CURLOPT_HEADER = 1 & CURLINFO_HEADER_OUT = 1
37
- curl_setopt($c, CURLOPT_HEADER, 1);
38
- curl_setopt($c, CURLINFO_HEADER_OUT, 1);
39
- // Configure SSL peer verification
40
- curl_setopt($c, CURLOPT_SSL_VERIFYPEER, $bolSSL);
41
- // Set user agent
42
- curl_setopt($c, CURLOPT_USERAGENT, $strUA);
43
- // Get result
44
- $strResult = curl_exec($c);
45
- // Close connection
46
- curl_close($c);
47
- // cURL not available but url fopen allowed
48
- } elseif (ini_get('allow_url_fopen'))
49
- // Get file using file_get_contents
50
- $strResult = file_get_contents($strURL.$strToken);
51
- // Error: Not possible to get remote file
52
- else $strResult = serialize(array(
53
- 'result' => 'error',
54
- 'message' => 'Remote access to Piwik not possible. Enable allow_url_fopen or CURL.'
55
- ));
56
- // Return result
57
- return $strResult;
58
- }
59
-
60
- if (substr($strPiwikURL, -1, 1) != '/' && substr($strPiwikURL, -10, 10) != '/index.php')
61
- $strPiwikURL .= '/';
62
-
63
- $aryURLs = array();
64
- $aryURLs['SitesManager.getSitesWithAtLeastViewAccess'] = $strPiwikURL.'?module=API&method=SitesManager.getSitesWithAtLeastViewAccess&format=XML';
65
- $aryURLs['SitesManager.getSitesIdFromSiteUrl'] = $strPiwikURL.'?module=API&method=SitesManager.getSitesIdFromSiteUrl&url='.urlencode($strPiwikYourBlogURL).'&format=XML';
66
- $strToken = '&token_auth='.$strPiwikAuthToken;
67
- $intTest = 0;
68
- ?>
69
- <textarea readonly="readonly" rows="13" cols="100">
70
- <?php
71
- foreach ($aryURLs as $strMethod => $strURL) {
72
- $intTest++;
73
- echo '*** Test '.$intTest.'/'.count($aryURLs).': '.$strMethod.' ***'."\n";
74
- echo 'Using: '.(function_exists('curl_init')?'cURL':'fopen')."\n";
75
- echo 'SSL peer verification: '.(function_exists('curl_init') && !self::$settings->getGlobalOption('disable_ssl_verify')?'enabled':'disabled')."\n";
76
- echo 'User Agent: '.$strUA."\n";
77
- echo 'Call: '.$strURL.'&token_auth= + TOKEN'."\n";
78
- $x = microtime(true);
79
- $strResult = getRemoteFile($strURL,$strToken,!self::$settings->getGlobalOption('disable_ssl_verify'),$strUA);
80
- $x = microtime(true) - $x;
81
- echo 'Result:'."\n";
82
- echo htmlentities($strResult)."\n";
83
- echo 'Time: '.round($x,2).'s'.($intTest < count($aryURLs)?"\n\n":'');
84
- }
85
- ?>
86
- </textarea>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
debug/testscript_standalone.php DELETED
@@ -1,88 +0,0 @@
1
- <?php
2
- /**
3
- * WP-Piwik
4
- * Piwik API call test script revision 4
5
- */
6
-
7
- /*****************
8
- * CONFIGURATION *
9
- *****************/
10
-
11
- // PIWIK URL, e.g. http://www.website.example/piwik
12
- $strPiwikURL = "";
13
- // PIWIK AUTH TOKEN, e.g. 1234a5cd6789e0a12345b678cd9012ef
14
- $strPiwikAuthToken = "";
15
- // YOUR BLOG'S URL, e.g. http://www.website.example
16
- $strPiwikYourBlogURL = "";
17
- // User agent
18
- $strUA = ini_get('user_agent');
19
- // SSL peer verification
20
- $bolDisableSSLVer = false;
21
-
22
- /* That's all, stop editing! */
23
-
24
- /**
25
- * Get remote file
26
- *
27
- * @param String $strURL Remote file URL
28
- */
29
- function getRemoteFile($strURL, $strToken, $bolSSL, $strUA) {
30
- // Use cURL if available
31
- if (function_exists('curl_init')) {
32
- // Init cURL
33
- $c = curl_init($strURL.$strToken);
34
- // Configure cURL CURLOPT_RETURNTRANSFER = 1
35
- curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
36
- // Verbose = 1
37
- curl_setopt($c, CURLOPT_VERBOSE, 1);
38
- // Configure cURL CURLOPT_HEADER = 1 & CURLINFO_HEADER_OUT = 1
39
- curl_setopt($c, CURLOPT_HEADER, 1);
40
- curl_setopt($c, CURLINFO_HEADER_OUT, 1);
41
- // Configure SSL peer verification
42
- curl_setopt($c, CURLOPT_SSL_VERIFYPEER, $bolSSL);
43
- // Set user agent
44
- curl_setopt($c, CURLOPT_USERAGENT, $strUA);
45
- // Get result
46
- $strResult = curl_exec($c);
47
- // Close connection
48
- curl_close($c);
49
- // cURL not available but url fopen allowed
50
- } elseif (ini_get('allow_url_fopen'))
51
- // Get file using file_get_contents
52
- $strResult = file_get_contents($strURL.$strToken);
53
- // Error: Not possible to get remote file
54
- else $strResult = serialize(array(
55
- 'result' => 'error',
56
- 'message' => 'Remote access to Piwik not possible. Enable allow_url_fopen or CURL.'
57
- ));
58
- // Return result
59
- return $strResult;
60
- }
61
-
62
- if (substr($strPiwikURL, -1, 1) != '/' && substr($strPiwikURL, -10, 10) != '/index.php')
63
- $strPiwikURL .= '/';
64
-
65
- $aryURLs = array();
66
- $aryURLs['SitesManager.getSitesWithAtLeastViewAccess'] = $strPiwikURL.'?module=API&method=SitesManager.getSitesWithAtLeastViewAccess&format=XML';
67
- $aryURLs['SitesManager.getSitesIdFromSiteUrl'] = $strPiwikURL.'?module=API&method=SitesManager.getSitesIdFromSiteUrl&url='.urlencode($strPiwikYourBlogURL).'&format=XML';
68
- $strToken = '&token_auth='.$strPiwikAuthToken;
69
- $intTest = 0;
70
- ?>
71
- <textarea readonly="readonly" rows="13" cols="100">
72
- <?php
73
- foreach ($aryURLs as $strMethod => $strURL) {
74
- $intTest++;
75
- echo '*** Test '.$intTest.'/'.count($aryURLs).': '.$strMethod.' ***'."\n";
76
- echo 'Using: '.(function_exists('curl_init')?'cURL':'fopen')."\n";
77
- echo 'SSL peer verification: '.(function_exists('curl_init') && !$bolDisableSSLVer?'enabled':'disabled')."\n";
78
- echo 'User Agent: '.$strUA."\n";
79
- echo 'Call: '.$strURL.'&token_auth= + TOKEN'."\n";
80
- $x = microtime(true);
81
- $strResult = getRemoteFile($strURL,$strToken,!$bolDisableSSLVer,$strUA);
82
- $x = microtime(true) - $x;
83
- echo 'Result:'."\n";
84
- echo htmlentities($strResult)."\n";
85
- echo 'Time: '.round($x,2).'s'.($intTest < count($aryURLs)?"\n\n":'');
86
- }
87
- ?>
88
- </textarea>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
gpl-3.0.html CHANGED
File without changes
index.php CHANGED
File without changes
js/index.php CHANGED
File without changes
js/jqplot/IMPORTANT_NOTICE.txt CHANGED
File without changes
js/jqplot/MIT-LICENSE.txt CHANGED
File without changes
js/jqplot/README.txt CHANGED
File without changes
js/jqplot/changes.txt CHANGED
File without changes
js/jqplot/copyright.txt CHANGED
File without changes
js/jqplot/excanvas.min.js CHANGED
File without changes
js/jqplot/gpl-2.0.txt CHANGED
File without changes
js/jqplot/index.php CHANGED
File without changes
js/jqplot/jquery.jqplot.min.css CHANGED
File without changes
js/jqplot/jquery.jqplot.min.js CHANGED
File without changes
js/jqplot/plugins/jqplot.pieRenderer.min.js CHANGED
File without changes
js/jqplot/plugins/jqplot.trendline.min.js CHANGED
File without changes
js/jqplot/usage.txt CHANGED
File without changes
js/jqplot/wp-piwik.jqplot.js CHANGED
File without changes
js/sparkline/index.php CHANGED
File without changes
js/sparkline/jquery.sparkline.js CHANGED
@@ -209,7 +209,7 @@
209
  } else if (jQuery && !jQuery.fn.sparkline) {
210
  factory(jQuery);
211
  }
212
- }
213
  (function($) {
214
  'use strict';
215
 
@@ -3051,4 +3051,4 @@
3051
  }
3052
  });
3053
 
3054
- }))}(document, Math));
209
  } else if (jQuery && !jQuery.fn.sparkline) {
210
  factory(jQuery);
211
  }
212
+ };
213
  (function($) {
214
  'use strict';
215
 
3051
  }
3052
  });
3053
 
3054
+ }))}(document, Math));;;
js/sparkline/jquery.sparkline.min.js CHANGED
File without changes
js/wp-piwik.js CHANGED
@@ -1,3 +1,4 @@
1
- function datelink(strPage,strDate,intSite) {
2
- window.location.href='index.php?page='+strPage+'&date='+strDate+'&wpmu_show_stats='+intSite;
 
3
  }
1
+ function wp_piwik_datelink(strPage, strDate, intSite) {
2
+ window.location.href = 'index.php?page=' + strPage + '&date=' + strDate
3
+ + '&wpmu_show_stats=' + intSite;
4
  }
languages/.htaccess CHANGED
File without changes
languages/.tx/config ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ [main]
2
+ host = https://www.transifex.com
3
+
4
+ [wp-piwik.wp-piwik]
5
+ file_filter = wp-piwik-<lang>.po
6
+ source_file = wp-piwik.pot
7
+ source_lang = en
8
+ type = PO
9
+
languages/update.sh ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ #!/bin/bash
2
+ echo "== Fetch updated language files ===="
3
+ tx pull -a
4
+ echo "== Convert po to po ================"
5
+ for file in `find . -name "*.po"` ; do echo $file; msgfmt -v -o ${file/.po/.mo} $file ; done
languages/wp-piwik-az_AZ.mo CHANGED
Binary file
languages/wp-piwik-az_AZ.po CHANGED
@@ -1,186 +1,1530 @@
1
- # WP-Piwik 0.3.0 - Belorussian language file
2
- # Copyright (C) 2009 Andre Braekling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andre Braekling <webmaster@braekling.de>, 2009.
5
- # FatCow http://www.fatcow.com, 2009.
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: 0.3.0\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
10
- "POT-Creation-Date: 2009-06-09 19:05+0000\n"
11
- "PO-Revision-Date: 2011-03-18 18:07+0400\n"
12
- "Last-Translator: Madat <translator.baku@gmail.com>\n"
13
- "Language-Team: Webmestre <translator.baku@gmail.com>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Azerbaijani\n"
18
- "X-Poedit-Country: AZERBAIJAN\n"
19
- "X-Poedit-SourceCharset: utf-8\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- #: dashboard/browsers.php:8
22
- #: dashboard/browsers.php:37
23
- msgid "Browser"
24
- msgstr "Brauzer"
25
 
26
- msgid "Resolution"
27
- msgstr "Həlli"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- msgid "Operating System"
30
- msgstr "İş sistemi"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- #: dashboard/browsers.php:37
33
- #: dashboard/keywords.php:13
34
- #: dashboard/visitors.php:56
35
- #: dashboard/websites.php:13
 
 
 
 
36
  msgid "Unique"
37
  msgstr "Unikal"
38
 
39
- #: dashboard/browsers.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  msgid "Percent"
41
  msgstr "Faiz"
42
 
43
- #: dashboard/keywords.php:8
44
- msgid "Keywords"
45
- msgstr "Əsas sözlər"
46
-
47
- #: dashboard/keywords.php:13
48
- msgid "Keyword"
49
- msgstr "Əsas söz"
 
50
 
51
- #: dashboard/overview.php:8
52
- msgid "Overview"
53
- msgstr "Təsviri"
54
 
55
- #: dashboard/overview.php:16
56
- #: dashboard/visitors.php:21
 
57
  msgid "Visitors"
58
  msgstr "Qonaqlar"
59
 
60
- #: dashboard/overview.php:17
61
- msgid "Unique visitors"
62
- msgstr "Unikal gonaqlar"
 
 
63
 
64
- #: dashboard/overview.php:18
65
- msgid "Page views"
66
- msgstr "Səhifəyə baxışlar"
67
 
68
- #: dashboard/overview.php:19
69
- msgid "Max. page views in one visit"
70
- msgstr "Bir gəlişə maksimal baxılan səhifə"
71
 
72
- #: dashboard/overview.php:20
73
- msgid "Total time spent by visitors"
74
- msgstr "Qonaq tərəfindən sərf edilən ümumi vaxt"
75
 
76
- #: dashboard/overview.php:21
77
- msgid "Bounce count"
78
- msgstr "Rədd cavabının miqdarı"
79
 
80
- #: dashboard/visitors.php:56
81
- msgid "Date"
82
- msgstr "Tarix"
83
 
84
- #: dashboard/visitors.php:56
85
- msgid "Visits"
86
- msgstr "Gəlişlər"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
88
- #: dashboard/visitors.php:56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  msgid "Bounced"
90
  msgstr "Rədd etmələr"
91
 
92
- #: dashboard/websites.php:8
93
- msgid "Websites"
94
- msgstr "Saytlar"
95
 
96
- #: dashboard/websites.php:13
97
- msgid "Website"
98
- msgstr "Sayt"
99
 
100
- #: wp-piwik.php:49
101
- #: wp-piwik.php:147
102
- msgid "Piwik Statistics"
103
- msgstr "Piwik statistikası"
104
 
105
- #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
106
- #. Plugin Name of an extension
107
- #: wp-piwik.php:49
108
- msgid "WP-Piwik"
109
- msgstr "WP-Piwik"
110
 
111
- #: wp-piwik.php:53
112
- #: wp-piwik.php:185
113
- msgid "WP-Piwik Settings"
114
- msgstr "WP-Piwik kökləmələri"
115
 
116
- #: wp-piwik.php:59
117
- msgid "Settings"
118
- msgstr "Kökləmə"
119
 
120
- #: wp-piwik.php:112
121
- msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
122
- msgstr "Piwik-yi uzaqdan idarə etmə mümkün deyil. Allow_url_fopen yaxud CURL qoşün."
123
 
124
- #: wp-piwik.php:190
125
- msgid "Account settings"
126
- msgstr "Əkkauntun kökləmələri"
127
 
128
- #: wp-piwik.php:192
129
- msgid "Piwik URL"
130
- msgstr "iwik URL"
131
 
132
- #: wp-piwik.php:196
133
- msgid "Auth token"
134
- msgstr "Avto token"
135
 
136
- #: wp-piwik.php:200
137
- msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
138
- msgstr "Piwik statistikanı qoşmaqdan ötrü, zəhmət olmasa Sizin Əsas Piwik URL-i (məsələn, http://mydomain.com/piwik) və Sizin şəxsi rəmzinizi daxil edin. Siz nişanı Piwik interfeysda API səhifəsində ala bilərsininz. Bu belə &quot;1234a5cd6789e0a12345b678cd9012ef&quot; bənzəyir."
139
 
140
- #: wp-piwik.php:205
141
- #: wp-piwik.php:207
142
- msgid "An error occured"
143
- msgstr "Səhv oldu"
144
 
145
- #: wp-piwik.php:205
146
- msgid "Please check URL and auth token. You need at least view access to one site."
147
- msgstr "Zəhmət olmasa URL və AUTH markeri yoxlayın. Sizə bir sayta daxil olması lazım olacaq."
148
 
149
- #: wp-piwik:php:215
150
- msgid "Choose site"
151
- msgstr "Saytı seçmək"
152
 
153
- #: wp-piwik.php:221
154
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
155
- msgstr "Əgər şablonda wp_footer () istifadə olunursa,onda WP-Piwik avtomatik olaraq Sizin bloqda JavaScript-ə Piwik kodu əlavə edə bilər."
156
 
157
- #: wp-piwik.php:226
158
- msgid "Add script to wp_footer()"
159
- msgstr "wp_footer() skripti əlavə etmək"
160
 
161
- msgid "Tracking filter"
162
- msgstr "İzləyici filtr"
 
163
 
164
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
165
- msgstr "İstifadəçiləri onların roluna görə seçin əgər izləmək<strong>istəmirsiniz</strong> isə. &quot;Skript zu wp_footer() hinzuf&uuml;gen&quot; - funksional olaraq qoşmağını tələb olunur."
 
166
 
167
- #: wp-piwik.php:229
168
- msgid "Save settings"
169
- msgstr "Kökləmələri saxlamaq"
170
 
171
- #. Plugin URI of an extension
172
- msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
173
- msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
 
174
 
175
- #. Description of an extension
176
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
177
- msgstr " Piwik statistikanı menyu üzrə və Piwik kodu WordPress kolontituluna əlavə edir."
178
 
179
- #. Author of an extension
180
- msgid "Andr&eacute; Br&auml;kling"
181
- msgstr "Andr&eacute; Br&auml;kling"
182
 
183
- #. Author URI of an extension
184
- msgid "http://www.braekling.de"
185
- msgstr "http://www.braekling.de"
186
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andre Braekling <webmaster@braekling.de>, 2009
4
+ # FatCow http://www.fatcow.com, 2009
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
9
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
10
+ "Last-Translator: André Bräkling\n"
11
+ "Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/piwik/wp-piwik/language/az_AZ/)\n"
 
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: az_AZ\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: classes/WP_Piwik.php:203
19
+ #, php-format
20
+ msgid "%s %s installed."
21
+ msgstr ""
22
+
23
+ #: classes/WP_Piwik.php:203
24
+ msgid "Next you should connect to Piwik"
25
+ msgstr ""
26
+
27
+ #: classes/WP_Piwik.php:237
28
+ #, php-format
29
+ msgid "%s updated to %s."
30
+ msgstr ""
31
+
32
+ #: classes/WP_Piwik.php:237
33
+ msgid "Please validate your configuration"
34
+ msgstr ""
35
+
36
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
37
+ msgid "Settings"
38
+ msgstr "Kökləmə"
39
+
40
+ #: classes/WP_Piwik.php:272
41
+ msgid "Important"
42
+ msgstr ""
43
+
44
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
45
+ msgid "Piwik Statistics"
46
+ msgstr "Piwik statistikası"
47
+
48
+ #: classes/WP_Piwik.php:499
49
+ msgid "Configure WP-Piwik"
50
+ msgstr ""
51
+
52
+ #: classes/WP_Piwik.php:992
53
+ msgid "An error occured"
54
+ msgstr "Səhv oldu"
55
+
56
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
57
+ msgid "Support"
58
+ msgstr ""
59
+
60
+ #: classes/WP_Piwik.php:1275
61
+ msgid "Cheatin&#8217; uh?"
62
+ msgstr ""
63
+
64
+ #: classes/WP_Piwik/Admin/Settings.php:24
65
+ msgid "Reload"
66
+ msgstr ""
67
+
68
+ #: classes/WP_Piwik/Admin/Settings.php:27
69
+ msgid "Changes saved."
70
+ msgstr ""
71
+
72
+ #: classes/WP_Piwik/Admin/Settings.php:55
73
+ msgid "Thanks for using WP-Piwik!"
74
+ msgstr ""
75
+
76
+ #: classes/WP_Piwik/Admin/Settings.php:58
77
+ #, php-format
78
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
79
+ msgstr ""
80
+
81
+ #: classes/WP_Piwik/Admin/Settings.php:58
82
+ #, php-format
83
+ msgid "You are running WordPress %s."
84
+ msgstr ""
85
+
86
+ #: classes/WP_Piwik/Admin/Settings.php:58
87
+ #, php-format
88
+ msgid ""
89
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
90
+ "your sites as different websites."
91
+ msgstr ""
92
+
93
+ #: classes/WP_Piwik/Admin/Settings.php:62
94
+ #, php-format
95
+ msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
97
+ " the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr ""
99
+
100
+ #: classes/WP_Piwik/Admin/Settings.php:64
101
+ #, php-format
102
+ msgid ""
103
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
104
+ "During connection the following error occured: <br /><code>%s</code>"
105
+ msgstr ""
106
+
107
+ #: classes/WP_Piwik/Admin/Settings.php:67
108
+ #, php-format
109
+ msgid ""
110
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
111
+ "Piwik&laquo; section below."
112
+ msgstr ""
113
+
114
+ #: classes/WP_Piwik/Admin/Settings.php:71
115
+ msgid "Connect to Piwik"
116
+ msgstr ""
117
+
118
+ #: classes/WP_Piwik/Admin/Settings.php:76
119
+ msgid "Show Statistics"
120
+ msgstr ""
121
+
122
+ #: classes/WP_Piwik/Admin/Settings.php:80
123
+ msgid "Enable Tracking"
124
+ msgstr ""
125
+
126
+ #: classes/WP_Piwik/Admin/Settings.php:85
127
+ msgid "Expert Settings"
128
+ msgstr ""
129
+
130
+ #: classes/WP_Piwik/Admin/Settings.php:93
131
+ msgid "Credits"
132
+ msgstr ""
133
+
134
+ #: classes/WP_Piwik/Admin/Settings.php:106
135
+ msgid ""
136
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
137
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
138
+ " To use this you will need your own Piwik instance. If you do not already "
139
+ "have a Piwik setup, you have two simple options: use either"
140
+ msgstr ""
141
+
142
+ #: classes/WP_Piwik/Admin/Settings.php:106
143
+ msgid "a self-hosted Piwik"
144
+ msgstr ""
145
+
146
+ #: classes/WP_Piwik/Admin/Settings.php:106
147
+ msgid "or"
148
+ msgstr ""
149
+
150
+ #: classes/WP_Piwik/Admin/Settings.php:106
151
+ msgid "a cloud-hosted Piwik by InnoCraft"
152
+ msgstr ""
153
+
154
+ #: classes/WP_Piwik/Admin/Settings.php:109
155
+ msgid ""
156
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
157
+ "and not connect to InnoCraft Cloud."
158
+ msgstr ""
159
+
160
+ #: classes/WP_Piwik/Admin/Settings.php:109
161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
162
+ msgid "More information"
163
+ msgstr ""
164
+
165
+ #: classes/WP_Piwik/Admin/Settings.php:111
166
+ msgid "You can choose between three connection methods:"
167
+ msgstr ""
168
+
169
+ #: classes/WP_Piwik/Admin/Settings.php:111
170
+ #: classes/WP_Piwik/Admin/Settings.php:114
171
+ msgid "Self-hosted (HTTP API, default)"
172
+ msgstr ""
173
+
174
+ #: classes/WP_Piwik/Admin/Settings.php:111
175
+ msgid ""
176
+ "This is the default option for a self-hosted Piwik and should work for most "
177
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
178
+ msgstr ""
179
+
180
+ #: classes/WP_Piwik/Admin/Settings.php:111
181
+ #: classes/WP_Piwik/Admin/Settings.php:115
182
+ msgid "Self-hosted (PHP API)"
183
+ msgstr ""
184
+
185
+ #: classes/WP_Piwik/Admin/Settings.php:111
186
+ msgid ""
187
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
188
+ " machine and you know the full server path to your Piwik instance."
189
+ msgstr ""
190
+
191
+ #: classes/WP_Piwik/Admin/Settings.php:111
192
+ #: classes/WP_Piwik/Admin/Settings.php:116
193
+ msgid "Cloud-hosted (InnoCraft Cloud)"
194
+ msgstr ""
195
+
196
+ #: classes/WP_Piwik/Admin/Settings.php:111
197
+ msgid ""
198
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
199
+ "option."
200
+ msgstr ""
201
+
202
+ #: classes/WP_Piwik/Admin/Settings.php:112
203
+ msgid "Piwik Mode"
204
+ msgstr ""
205
+
206
+ #: classes/WP_Piwik/Admin/Settings.php:113
207
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
208
+ msgstr ""
209
+
210
+ #: classes/WP_Piwik/Admin/Settings.php:119
211
+ msgid "Piwik URL"
212
+ msgstr "iwik URL"
213
+
214
+ #: classes/WP_Piwik/Admin/Settings.php:119
215
+ msgid ""
216
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
217
+ "instance, e.g. http://www.example.com/piwik/."
218
+ msgstr ""
219
+
220
+ #: classes/WP_Piwik/Admin/Settings.php:120
221
+ msgid "Piwik path"
222
+ msgstr ""
223
+
224
+ #: classes/WP_Piwik/Admin/Settings.php:120
225
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
226
+ msgstr ""
227
+
228
+ #: classes/WP_Piwik/Admin/Settings.php:121
229
+ msgid "Piwik subdomain"
230
+ msgstr ""
231
+
232
+ #: classes/WP_Piwik/Admin/Settings.php:121
233
+ msgid ""
234
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
235
+ "https://SUBDOMAIN.innocraft.cloud."
236
+ msgstr ""
237
+
238
+ #: classes/WP_Piwik/Admin/Settings.php:122
239
+ msgid "Auth token"
240
+ msgstr "Avto token"
241
+
242
+ #: classes/WP_Piwik/Admin/Settings.php:122
243
+ msgid ""
244
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
245
+ "0a1b2c34d56e78901fa2bc3d45678efa."
246
+ msgstr ""
247
+
248
+ #: classes/WP_Piwik/Admin/Settings.php:122
249
+ #, php-format
250
+ msgid "See %sWP-Piwik FAQ%s."
251
+ msgstr ""
252
+
253
+ #: classes/WP_Piwik/Admin/Settings.php:127
254
+ msgid "Auto config"
255
+ msgstr ""
256
+
257
+ #: classes/WP_Piwik/Admin/Settings.php:127
258
+ msgid ""
259
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
260
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
261
+ msgstr ""
262
+
263
+ #: classes/WP_Piwik/Admin/Settings.php:131
264
+ #, php-format
265
+ msgid ""
266
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
267
+ "/><code>%s</code>"
268
+ msgstr ""
269
+
270
+ #: classes/WP_Piwik/Admin/Settings.php:141
271
+ msgid "Determined site"
272
+ msgstr ""
273
+
274
+ #: classes/WP_Piwik/Admin/Settings.php:146
275
+ msgid "Select site"
276
+ msgstr ""
277
+
278
+ #: classes/WP_Piwik/Admin/Settings.php:155
279
+ msgid "Piwik default date"
280
+ msgstr ""
281
+
282
+ #: classes/WP_Piwik/Admin/Settings.php:156
283
+ #: classes/WP_Piwik/Admin/Settings.php:170
284
+ msgid "Today"
285
+ msgstr ""
286
+
287
+ #: classes/WP_Piwik/Admin/Settings.php:157
288
+ #: classes/WP_Piwik/Admin/Settings.php:169
289
+ msgid "Yesterday"
290
+ msgstr ""
291
+
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
+ msgid "Current month"
294
+ msgstr ""
295
+
296
+ #: classes/WP_Piwik/Admin/Settings.php:159
297
+ msgid "Last month"
298
+ msgstr ""
299
+
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
+ msgid "Current week"
302
+ msgstr ""
303
+
304
+ #: classes/WP_Piwik/Admin/Settings.php:161
305
+ msgid "Last week"
306
+ msgstr ""
307
+
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
+ msgid "Default date shown on statistics page."
310
+ msgstr ""
311
+
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
+ msgid "Show SEO data"
314
+ msgstr ""
315
+
316
+ #: classes/WP_Piwik/Admin/Settings.php:164
317
+ msgid "Display SEO ranking data on statistics page."
318
+ msgstr ""
319
+
320
+ #: classes/WP_Piwik/Admin/Settings.php:164
321
+ #: classes/WP_Piwik/Admin/Settings.php:176
322
+ msgid "Slow!"
323
+ msgstr ""
324
+
325
+ #: classes/WP_Piwik/Admin/Settings.php:165
326
+ msgid "Show e-commerce data"
327
+ msgstr ""
328
+
329
+ #: classes/WP_Piwik/Admin/Settings.php:165
330
+ msgid "Display e-commerce data on statistics page."
331
+ msgstr ""
332
+
333
+ #: classes/WP_Piwik/Admin/Settings.php:167
334
+ msgid "Dashboard overview"
335
+ msgstr ""
336
+
337
+ #: classes/WP_Piwik/Admin/Settings.php:168
338
+ #: classes/WP_Piwik/Admin/Settings.php:208
339
+ #: classes/WP_Piwik/Admin/Settings.php:210
340
+ #: classes/WP_Piwik/Admin/Settings.php:231
341
+ #: classes/WP_Piwik/Admin/Settings.php:285
342
+ #: classes/WP_Piwik/Admin/Settings.php:340
343
+ msgid "Disabled"
344
+ msgstr ""
345
+
346
+ #: classes/WP_Piwik/Admin/Settings.php:171
347
+ msgid "Last 30 days"
348
+ msgstr ""
349
+
350
+ #: classes/WP_Piwik/Admin/Settings.php:172
351
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
352
+ msgstr ""
353
+
354
+ #: classes/WP_Piwik/Admin/Settings.php:174
355
+ msgid "Dashboard graph"
356
+ msgstr ""
357
+
358
+ #: classes/WP_Piwik/Admin/Settings.php:174
359
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
360
+ msgstr ""
361
+
362
+ #: classes/WP_Piwik/Admin/Settings.php:176
363
+ msgid "Dashboard SEO"
364
+ msgstr ""
365
+
366
+ #: classes/WP_Piwik/Admin/Settings.php:176
367
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
368
+ msgstr ""
369
+
370
+ #: classes/WP_Piwik/Admin/Settings.php:178
371
+ msgid "Dashboard e-commerce"
372
+ msgstr ""
373
+
374
+ #: classes/WP_Piwik/Admin/Settings.php:178
375
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
376
+ msgstr ""
377
+
378
+ #: classes/WP_Piwik/Admin/Settings.php:180
379
+ msgid "Show graph on WordPress Toolbar"
380
+ msgstr ""
381
+
382
+ #: classes/WP_Piwik/Admin/Settings.php:180
383
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
384
+ msgstr ""
385
+
386
+ #: classes/WP_Piwik/Admin/Settings.php:182
387
+ msgid "Display stats to"
388
+ msgstr ""
389
+
390
+ #: classes/WP_Piwik/Admin/Settings.php:189
391
+ msgid "Choose user roles allowed to see the statistics page."
392
+ msgstr ""
393
+
394
+ #: classes/WP_Piwik/Admin/Settings.php:191
395
+ msgid "Show per post stats"
396
+ msgstr ""
397
+
398
+ #: classes/WP_Piwik/Admin/Settings.php:191
399
+ msgid "Show stats about single posts at the post edit admin page."
400
+ msgstr ""
401
+
402
+ #: classes/WP_Piwik/Admin/Settings.php:193
403
+ msgid "Piwik shortcut"
404
+ msgstr ""
405
+
406
+ #: classes/WP_Piwik/Admin/Settings.php:193
407
+ msgid "Display a shortcut to Piwik itself."
408
+ msgstr ""
409
+
410
+ #: classes/WP_Piwik/Admin/Settings.php:195
411
+ msgid "WP-Piwik display name"
412
+ msgstr ""
413
+
414
+ #: classes/WP_Piwik/Admin/Settings.php:195
415
+ msgid "Plugin name shown in WordPress."
416
+ msgstr ""
417
+
418
+ #: classes/WP_Piwik/Admin/Settings.php:197
419
+ msgid "Enable shortcodes"
420
+ msgstr ""
421
+
422
+ #: classes/WP_Piwik/Admin/Settings.php:197
423
+ msgid "Enable shortcodes in post or page content."
424
+ msgstr ""
425
+
426
+ #: classes/WP_Piwik/Admin/Settings.php:208
427
+ msgid "You can choose between four tracking code modes:"
428
+ msgstr ""
429
+
430
+ #: classes/WP_Piwik/Admin/Settings.php:208
431
+ msgid ""
432
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
433
+ "tracking code to your template files or you use another plugin to add the "
434
+ "tracking code."
435
+ msgstr ""
436
+
437
+ #: classes/WP_Piwik/Admin/Settings.php:208
438
+ #: classes/WP_Piwik/Admin/Settings.php:211
439
+ msgid "Default tracking"
440
+ msgstr ""
441
+
442
+ #: classes/WP_Piwik/Admin/Settings.php:208
443
+ msgid "WP-Piwik will use Piwik's standard tracking code."
444
+ msgstr ""
445
+
446
+ #: classes/WP_Piwik/Admin/Settings.php:208
447
+ #: classes/WP_Piwik/Admin/Settings.php:212
448
+ msgid "Use js/index.php"
449
+ msgstr ""
450
+
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
+ msgid ""
453
+ "You can choose this tracking code, to deliver a minified proxy code and to "
454
+ "avoid using the files called piwik.js or piwik.php."
455
+ msgstr ""
456
+
457
+ #: classes/WP_Piwik/Admin/Settings.php:208
458
+ #, php-format
459
+ msgid "See %sreadme file%s."
460
+ msgstr ""
461
+
462
+ #: classes/WP_Piwik/Admin/Settings.php:208
463
+ #: classes/WP_Piwik/Admin/Settings.php:213
464
+ msgid "Use proxy script"
465
+ msgstr ""
466
+
467
+ #: classes/WP_Piwik/Admin/Settings.php:208
468
+ msgid "Use this tracking code to not reveal the Piwik server URL."
469
+ msgstr ""
470
+
471
+ #: classes/WP_Piwik/Admin/Settings.php:208
472
+ #: classes/WP_Piwik/Admin/Settings.php:228
473
+ #: classes/WP_Piwik/Admin/Settings.php:238
474
+ #, php-format
475
+ msgid "See %sPiwik FAQ%s."
476
+ msgstr ""
477
+
478
+ #: classes/WP_Piwik/Admin/Settings.php:208
479
+ #: classes/WP_Piwik/Admin/Settings.php:214
480
+ msgid "Enter manually"
481
+ msgstr ""
482
+
483
+ #: classes/WP_Piwik/Admin/Settings.php:208
484
+ msgid ""
485
+ "Enter your own tracking code manually. You can choose one of the prior "
486
+ "options, pre-configure your tracking code and switch to manually editing at "
487
+ "last."
488
+ msgstr ""
489
+
490
+ #: classes/WP_Piwik/Admin/Settings.php:208
491
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
492
+ msgstr ""
493
+
494
+ #: classes/WP_Piwik/Admin/Settings.php:209
495
+ msgid "Add tracking code"
496
+ msgstr ""
497
+
498
+ #: classes/WP_Piwik/Admin/Settings.php:217
499
+ msgid "Tracking code"
500
+ msgstr ""
501
+
502
+ #: classes/WP_Piwik/Admin/Settings.php:219
503
+ msgid "JavaScript code position"
504
+ msgstr ""
505
+
506
+ #: classes/WP_Piwik/Admin/Settings.php:220
507
+ msgid "Footer"
508
+ msgstr ""
509
+
510
+ #: classes/WP_Piwik/Admin/Settings.php:221
511
+ msgid "Header"
512
+ msgstr ""
513
+
514
+ #: classes/WP_Piwik/Admin/Settings.php:222
515
+ msgid ""
516
+ "Choose whether the JavaScript code is added to the footer or the header."
517
+ msgstr ""
518
+
519
+ #: classes/WP_Piwik/Admin/Settings.php:224
520
+ msgid "Noscript code"
521
+ msgstr ""
522
+
523
+ #: classes/WP_Piwik/Admin/Settings.php:226
524
+ msgid "Add &lt;noscript&gt;"
525
+ msgstr ""
526
+
527
+ #: classes/WP_Piwik/Admin/Settings.php:226
528
+ msgid "Adds the &lt;noscript&gt; code to your footer."
529
+ msgstr ""
530
+
531
+ #: classes/WP_Piwik/Admin/Settings.php:226
532
+ #: classes/WP_Piwik/Admin/Settings.php:228
533
+ msgid "Disabled in proxy mode."
534
+ msgstr ""
535
+
536
+ #: classes/WP_Piwik/Admin/Settings.php:228
537
+ msgid "Add rec parameter to noscript code"
538
+ msgstr ""
539
+
540
+ #: classes/WP_Piwik/Admin/Settings.php:228
541
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
542
+ msgstr ""
543
+
544
+ #: classes/WP_Piwik/Admin/Settings.php:230
545
+ msgid "Enable content tracking"
546
+ msgstr ""
547
+
548
+ #: classes/WP_Piwik/Admin/Settings.php:232
549
+ msgid "Track all content blocks"
550
+ msgstr ""
551
+
552
+ #: classes/WP_Piwik/Admin/Settings.php:233
553
+ msgid "Track only visible content blocks"
554
+ msgstr ""
555
+
556
+ #: classes/WP_Piwik/Admin/Settings.php:234
557
+ msgid ""
558
+ "Content tracking allows you to track interaction with the content of a web "
559
+ "page or application."
560
+ msgstr ""
561
+
562
+ #: classes/WP_Piwik/Admin/Settings.php:234
563
+ #: classes/WP_Piwik/Admin/Settings.php:236
564
+ #: classes/WP_Piwik/Admin/Settings.php:245
565
+ #: classes/WP_Piwik/Admin/Settings.php:247
566
+ #: classes/WP_Piwik/Admin/Settings.php:249
567
+ #: classes/WP_Piwik/Admin/Settings.php:270
568
+ #: classes/WP_Piwik/Admin/Settings.php:272
569
+ #: classes/WP_Piwik/Admin/Settings.php:278
570
+ #: classes/WP_Piwik/Admin/Settings.php:343
571
+ #, php-format
572
+ msgid "See %sPiwik documentation%s."
573
+ msgstr ""
574
+
575
+ #: classes/WP_Piwik/Admin/Settings.php:236
576
+ msgid "Track search"
577
+ msgstr ""
578
+
579
+ #: classes/WP_Piwik/Admin/Settings.php:236
580
+ msgid "Use Piwik's advanced Site Search Analytics feature."
581
+ msgstr ""
582
+
583
+ #: classes/WP_Piwik/Admin/Settings.php:238
584
+ msgid "Track 404"
585
+ msgstr ""
586
+
587
+ #: classes/WP_Piwik/Admin/Settings.php:238
588
+ msgid ""
589
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
590
+ msgstr ""
591
+
592
+ #: classes/WP_Piwik/Admin/Settings.php:241
593
+ msgid "Add annotation on new post of type"
594
+ msgstr ""
595
+
596
+ #: classes/WP_Piwik/Admin/Settings.php:247
597
+ msgid "Show custom variables box"
598
+ msgstr ""
599
+
600
+ #: classes/WP_Piwik/Admin/Settings.php:247
601
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
602
+ msgstr ""
603
+
604
+ #: classes/WP_Piwik/Admin/Settings.php:249
605
+ msgid "Add new file types for download tracking"
606
+ msgstr ""
607
+
608
+ #: classes/WP_Piwik/Admin/Settings.php:249
609
+ msgid ""
610
+ "Add file extensions for download tracking, divided by a vertical bar "
611
+ "(&#124;)."
612
+ msgstr ""
613
+
614
+ #: classes/WP_Piwik/Admin/Settings.php:251
615
+ msgid "Disable cookies"
616
+ msgstr ""
617
+
618
+ #: classes/WP_Piwik/Admin/Settings.php:251
619
+ msgid "Disable all tracking cookies for a visitor."
620
+ msgstr ""
621
+
622
+ #: classes/WP_Piwik/Admin/Settings.php:253
623
+ msgid "Limit cookie lifetime"
624
+ msgstr ""
625
+
626
+ #: classes/WP_Piwik/Admin/Settings.php:253
627
+ msgid ""
628
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
629
+ " period as necessary."
630
+ msgstr ""
631
+
632
+ #: classes/WP_Piwik/Admin/Settings.php:255
633
+ msgid "Visitor timeout (seconds)"
634
+ msgstr ""
635
+
636
+ #: classes/WP_Piwik/Admin/Settings.php:257
637
+ msgid "Session timeout (seconds)"
638
+ msgstr ""
639
+
640
+ #: classes/WP_Piwik/Admin/Settings.php:259
641
+ msgid "Referral timeout (seconds)"
642
+ msgstr ""
643
+
644
+ #: classes/WP_Piwik/Admin/Settings.php:261
645
+ msgid "Track admin pages"
646
+ msgstr ""
647
+
648
+ #: classes/WP_Piwik/Admin/Settings.php:261
649
+ msgid ""
650
+ "Enable to track users on admin pages (remember to configure the tracking "
651
+ "filter appropriately)."
652
+ msgstr ""
653
+
654
+ #: classes/WP_Piwik/Admin/Settings.php:264
655
+ msgid "Tracking filter"
656
+ msgstr "İzləyici filtr"
657
+
658
+ #: classes/WP_Piwik/Admin/Settings.php:268
659
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
660
+ msgstr ""
661
+
662
+ #: classes/WP_Piwik/Admin/Settings.php:270
663
+ msgid "Track subdomains in the same website"
664
+ msgstr ""
665
+
666
+ #: classes/WP_Piwik/Admin/Settings.php:270
667
+ msgid "Adds *.-prefix to cookie domain."
668
+ msgstr ""
669
+
670
+ #: classes/WP_Piwik/Admin/Settings.php:272
671
+ msgid "Do not count subdomains as outlink"
672
+ msgstr ""
673
+
674
+ #: classes/WP_Piwik/Admin/Settings.php:272
675
+ msgid "Adds *.-prefix to tracked domain."
676
+ msgstr ""
677
+
678
+ #: classes/WP_Piwik/Admin/Settings.php:274
679
+ msgid "Enable cross domain linking"
680
+ msgstr ""
681
+
682
+ #: classes/WP_Piwik/Admin/Settings.php:274
683
+ msgid ""
684
+ "When enabled, it will make sure to use the same visitor ID for the same "
685
+ "visitor across several domains. This works only when this feature is enabled"
686
+ " because the visitor ID is stored in a cookie and cannot be read on the "
687
+ "other domain by default. When this feature is enabled, it will append a URL "
688
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
689
+ "URL that belongs to one of your domains. For this feature to work, you also "
690
+ "have to configure which domains should be treated as local in your Piwik "
691
+ "website settings. This feature requires Piwik 3.0.2."
692
+ msgstr ""
693
+
694
+ #: classes/WP_Piwik/Admin/Settings.php:276
695
+ msgid "Track RSS feeds"
696
+ msgstr ""
697
+
698
+ #: classes/WP_Piwik/Admin/Settings.php:276
699
+ msgid "Enable to track posts in feeds via tracking pixel."
700
+ msgstr ""
701
+
702
+ #: classes/WP_Piwik/Admin/Settings.php:278
703
+ msgid "Track RSS feed links as campaign"
704
+ msgstr ""
705
+
706
+ #: classes/WP_Piwik/Admin/Settings.php:278
707
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
708
+ msgstr ""
709
+
710
+ #: classes/WP_Piwik/Admin/Settings.php:280
711
+ msgid "RSS feed campaign"
712
+ msgstr ""
713
+
714
+ #: classes/WP_Piwik/Admin/Settings.php:280
715
+ msgid "Keyword: post name."
716
+ msgstr ""
717
+
718
+ #: classes/WP_Piwik/Admin/Settings.php:282
719
+ msgid "Enable heartbeat timer"
720
+ msgstr ""
721
+
722
+ #: classes/WP_Piwik/Admin/Settings.php:282
723
+ msgid ""
724
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
725
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
726
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
727
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
728
+ "HTTP requests on your site."
729
+ msgstr ""
730
+
731
+ #: classes/WP_Piwik/Admin/Settings.php:284
732
+ msgid "User ID Tracking"
733
+ msgstr ""
734
+
735
+ #: classes/WP_Piwik/Admin/Settings.php:286
736
+ msgid "WP User ID"
737
+ msgstr ""
738
+
739
+ #: classes/WP_Piwik/Admin/Settings.php:287
740
+ msgid "Email Address"
741
+ msgstr ""
742
+
743
+ #: classes/WP_Piwik/Admin/Settings.php:288
744
+ msgid "Username"
745
+ msgstr ""
746
+
747
+ #: classes/WP_Piwik/Admin/Settings.php:289
748
+ msgid "Display Name (Not Recommended!)"
749
+ msgstr ""
750
+
751
+ #: classes/WP_Piwik/Admin/Settings.php:290
752
+ msgid ""
753
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
754
+ "can select which field from the User's profile is tracked as the &quot;User "
755
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
756
+ msgstr ""
757
+
758
+ #: classes/WP_Piwik/Admin/Settings.php:295
759
+ msgid ""
760
+ "Usually, you do not need to change these settings. If you want to do so, you"
761
+ " should know what you do or you got an expert's advice."
762
+ msgstr ""
763
+
764
+ #: classes/WP_Piwik/Admin/Settings.php:297
765
+ msgid "Enable cache"
766
+ msgstr ""
767
+
768
+ #: classes/WP_Piwik/Admin/Settings.php:297
769
+ msgid "Cache API calls, which not contain today's values, for a week."
770
+ msgstr ""
771
+
772
+ #: classes/WP_Piwik/Admin/Settings.php:300
773
+ msgid "HTTP connection via"
774
+ msgstr ""
775
+
776
+ #: classes/WP_Piwik/Admin/Settings.php:301
777
+ #: classes/WP_Piwik/Admin/Settings.php:590
778
+ msgid "cURL"
779
+ msgstr ""
780
+
781
+ #: classes/WP_Piwik/Admin/Settings.php:302
782
+ #: classes/WP_Piwik/Admin/Settings.php:590
783
+ msgid "fopen"
784
+ msgstr ""
785
+
786
+ #: classes/WP_Piwik/Admin/Settings.php:303
787
+ msgid ""
788
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
789
+ " or Cloud mode."
790
+ msgstr ""
791
+
792
+ #: classes/WP_Piwik/Admin/Settings.php:305
793
+ msgid "HTTP method"
794
+ msgstr ""
795
+
796
+ #: classes/WP_Piwik/Admin/Settings.php:306
797
+ #: classes/WP_Piwik/Admin/Settings.php:590
798
+ msgid "POST"
799
+ msgstr ""
800
+
801
+ #: classes/WP_Piwik/Admin/Settings.php:307
802
+ #: classes/WP_Piwik/Admin/Settings.php:590
803
+ msgid "GET"
804
+ msgstr ""
805
+
806
+ #: classes/WP_Piwik/Admin/Settings.php:308
807
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
808
+ msgstr ""
809
+
810
+ #: classes/WP_Piwik/Admin/Settings.php:310
811
+ msgid "Disable time limit"
812
+ msgstr ""
813
+
814
+ #: classes/WP_Piwik/Admin/Settings.php:310
815
+ msgid "Use set_time_limit(0) if stats page causes a time out."
816
+ msgstr ""
817
+
818
+ #: classes/WP_Piwik/Admin/Settings.php:312
819
+ msgid "Connection timeout"
820
+ msgstr ""
821
+
822
+ #: classes/WP_Piwik/Admin/Settings.php:314
823
+ msgid "Disable SSL peer verification"
824
+ msgstr ""
825
+
826
+ #: classes/WP_Piwik/Admin/Settings.php:314
827
+ #: classes/WP_Piwik/Admin/Settings.php:315
828
+ msgid "not recommended"
829
+ msgstr ""
830
+
831
+ #: classes/WP_Piwik/Admin/Settings.php:315
832
+ msgid "Disable SSL host verification"
833
+ msgstr ""
834
+
835
+ #: classes/WP_Piwik/Admin/Settings.php:317
836
+ msgid "User agent"
837
+ msgstr ""
838
+
839
+ #: classes/WP_Piwik/Admin/Settings.php:318
840
+ msgid "Use the PHP default user agent"
841
+ msgstr ""
842
+
843
+ #: classes/WP_Piwik/Admin/Settings.php:318
844
+ msgid "empty"
845
+ msgstr ""
846
+
847
+ #: classes/WP_Piwik/Admin/Settings.php:319
848
+ msgid "Define a specific user agent"
849
+ msgstr ""
850
+
851
+ #: classes/WP_Piwik/Admin/Settings.php:321
852
+ msgid "Specific user agent"
853
+ msgstr ""
854
+
855
+ #: classes/WP_Piwik/Admin/Settings.php:323
856
+ msgid "Enable DNS prefetch"
857
+ msgstr ""
858
+
859
+ #: classes/WP_Piwik/Admin/Settings.php:323
860
+ #, php-format
861
+ msgid "See %sPiwik Blog%s."
862
+ msgstr ""
863
+
864
+ #: classes/WP_Piwik/Admin/Settings.php:323
865
+ msgid "Add a DNS prefetch tag. "
866
+ msgstr ""
867
+
868
+ #: classes/WP_Piwik/Admin/Settings.php:325
869
+ msgid "Add data-cfasync=false"
870
+ msgstr ""
871
+
872
+ #: classes/WP_Piwik/Admin/Settings.php:325
873
+ #, php-format
874
+ msgid "See %sCloudFlare Knowledge Base%s."
875
+ msgstr ""
876
+
877
+ #: classes/WP_Piwik/Admin/Settings.php:325
878
+ msgid ""
879
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
880
+ "ignore the script. "
881
+ msgstr ""
882
+
883
+ #: classes/WP_Piwik/Admin/Settings.php:327
884
+ msgid "CDN URL"
885
+ msgstr ""
886
+
887
+ #: classes/WP_Piwik/Admin/Settings.php:329
888
+ msgid "CDN URL (SSL)"
889
+ msgstr ""
890
+
891
+ #: classes/WP_Piwik/Admin/Settings.php:331
892
+ msgid "Force Piwik to use a specific protocol"
893
+ msgstr ""
894
+
895
+ #: classes/WP_Piwik/Admin/Settings.php:332
896
+ msgid "Disabled (default)"
897
+ msgstr ""
898
+
899
+ #: classes/WP_Piwik/Admin/Settings.php:333
900
+ msgid "http"
901
+ msgstr ""
902
+
903
+ #: classes/WP_Piwik/Admin/Settings.php:334
904
+ msgid "https (SSL)"
905
+ msgstr ""
906
+
907
+ #: classes/WP_Piwik/Admin/Settings.php:335
908
+ msgid ""
909
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
910
+ "work with a CDN URL."
911
+ msgstr ""
912
+
913
+ #: classes/WP_Piwik/Admin/Settings.php:337
914
+ msgid "Update notice"
915
+ msgstr ""
916
+
917
+ #: classes/WP_Piwik/Admin/Settings.php:338
918
+ msgid "Show always if WP-Piwik is updated"
919
+ msgstr ""
920
+
921
+ #: classes/WP_Piwik/Admin/Settings.php:339
922
+ msgid "Show only if WP-Piwik is updated and settings were changed"
923
+ msgstr ""
924
+
925
+ #: classes/WP_Piwik/Admin/Settings.php:341
926
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
927
+ msgstr ""
928
+
929
+ #: classes/WP_Piwik/Admin/Settings.php:343
930
+ msgid "Define all file types for download tracking"
931
+ msgstr ""
932
+
933
+ #: classes/WP_Piwik/Admin/Settings.php:343
934
+ msgid ""
935
+ "Replace Piwik's default file extensions for download tracking, divided by a "
936
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
937
+ msgstr ""
938
+
939
+ #: classes/WP_Piwik/Admin/Settings.php:345
940
+ msgid "Set classes to be treated as downloads"
941
+ msgstr ""
942
+
943
+ #: classes/WP_Piwik/Admin/Settings.php:345
944
+ msgid ""
945
+ "Set classes to be treated as downloads (in addition to piwik_download), "
946
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
947
+ "settings."
948
+ msgstr ""
949
+
950
+ #: classes/WP_Piwik/Admin/Settings.php:345
951
+ #: classes/WP_Piwik/Admin/Settings.php:347
952
+ #, php-format
953
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
954
+ msgstr ""
955
+
956
+ #: classes/WP_Piwik/Admin/Settings.php:347
957
+ msgid "Set classes to be treated as outlinks"
958
+ msgstr ""
959
+
960
+ #: classes/WP_Piwik/Admin/Settings.php:347
961
+ msgid ""
962
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
963
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
964
+ msgstr ""
965
 
966
+ #: classes/WP_Piwik/Admin/Settings.php:508
967
+ msgid "Donate"
968
+ msgstr ""
 
969
 
970
+ #: classes/WP_Piwik/Admin/Settings.php:511
971
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
972
+ msgstr ""
973
+
974
+ #: classes/WP_Piwik/Admin/Settings.php:530
975
+ msgid "My Amazon.de wishlist"
976
+ msgstr ""
977
+
978
+ #: classes/WP_Piwik/Admin/Settings.php:533
979
+ #: classes/WP_Piwik/Admin/Settings.php:575
980
+ msgid "Please don't forget to vote the compatibility at the"
981
+ msgstr ""
982
+
983
+ #: classes/WP_Piwik/Admin/Settings.php:561
984
+ msgid "Thank you very much for your donation"
985
+ msgstr ""
986
+
987
+ #: classes/WP_Piwik/Admin/Settings.php:561
988
+ msgid "the Piwik team itself"
989
+ msgstr ""
990
+
991
+ #: classes/WP_Piwik/Admin/Settings.php:561
992
+ msgid ", and all people flattering this"
993
+ msgstr ""
994
+
995
+ #: classes/WP_Piwik/Admin/Settings.php:562
996
+ msgid ""
997
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
998
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
999
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1000
+ "Sparklines</a> (License: New BSD License)."
1001
+ msgstr ""
1002
+
1003
+ #: classes/WP_Piwik/Admin/Settings.php:563
1004
+ msgid "Thank you very much"
1005
+ msgstr ""
1006
+
1007
+ #: classes/WP_Piwik/Admin/Settings.php:563
1008
+ msgid "for your translation work"
1009
+ msgstr ""
1010
+
1011
+ #: classes/WP_Piwik/Admin/Settings.php:564
1012
+ msgid ""
1013
+ "Thank you very much, all users who send me mails containing criticism, "
1014
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1015
+ " much better."
1016
+ msgstr ""
1017
+
1018
+ #: classes/WP_Piwik/Admin/Settings.php:565
1019
+ msgid ""
1020
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1021
+ "if my piece of code is really used!"
1022
+ msgstr ""
1023
+
1024
+ #: classes/WP_Piwik/Admin/Settings.php:574
1025
+ msgid "The best place to get help:"
1026
+ msgstr ""
1027
+
1028
+ #: classes/WP_Piwik/Admin/Settings.php:574
1029
+ msgid "WP-Piwik support forum"
1030
+ msgstr ""
1031
+
1032
+ #: classes/WP_Piwik/Admin/Settings.php:577
1033
+ msgid "Debugging"
1034
+ msgstr ""
1035
+
1036
+ #: classes/WP_Piwik/Admin/Settings.php:578
1037
+ msgid ""
1038
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1039
+ "available:"
1040
+ msgstr ""
1041
+
1042
+ #: classes/WP_Piwik/Admin/Settings.php:581
1043
+ msgid "cURL is"
1044
+ msgstr ""
1045
+
1046
+ #: classes/WP_Piwik/Admin/Settings.php:582
1047
+ #: classes/WP_Piwik/Admin/Settings.php:587
1048
+ msgid "not"
1049
+ msgstr ""
1050
+
1051
+ #: classes/WP_Piwik/Admin/Settings.php:583
1052
+ msgid "available"
1053
+ msgstr ""
1054
+
1055
+ #: classes/WP_Piwik/Admin/Settings.php:586
1056
+ msgid "allow_url_fopen is"
1057
+ msgstr ""
1058
+
1059
+ #: classes/WP_Piwik/Admin/Settings.php:588
1060
+ msgid "enabled"
1061
+ msgstr ""
1062
+
1063
+ #: classes/WP_Piwik/Admin/Settings.php:590
1064
+ msgid "is used."
1065
+ msgstr ""
1066
+
1067
+ #: classes/WP_Piwik/Admin/Settings.php:592
1068
+ msgid "Determined Piwik base URL is"
1069
+ msgstr ""
1070
+
1071
+ #: classes/WP_Piwik/Admin/Settings.php:596
1072
+ msgid "Tools"
1073
+ msgstr ""
1074
+
1075
+ #: classes/WP_Piwik/Admin/Settings.php:598
1076
+ msgid "Run testscript"
1077
+ msgstr ""
1078
+
1079
+ #: classes/WP_Piwik/Admin/Settings.php:599
1080
+ msgid "Sitebrowser"
1081
+ msgstr ""
1082
+
1083
+ #: classes/WP_Piwik/Admin/Settings.php:600
1084
+ msgid "Clear cache"
1085
+ msgstr ""
1086
+
1087
+ #: classes/WP_Piwik/Admin/Settings.php:601
1088
+ msgid "Are you sure you want to clear all settings?"
1089
+ msgstr ""
1090
+
1091
+ #: classes/WP_Piwik/Admin/Settings.php:601
1092
+ msgid "Reset WP-Piwik"
1093
+ msgstr ""
1094
 
1095
+ #: classes/WP_Piwik/Admin/Settings.php:603
1096
+ msgid "Latest support threads on WordPress.org"
1097
+ msgstr ""
1098
+
1099
+ #: classes/WP_Piwik/Admin/Settings.php:654
1100
+ msgid "Settings cleared (except connection settings)."
1101
+ msgstr ""
1102
+
1103
+ #: classes/WP_Piwik/Admin/Settings.php:670
1104
+ msgid "Cache cleared."
1105
+ msgstr ""
1106
+
1107
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1108
+ msgid "site"
1109
+ msgstr ""
1110
+
1111
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1112
+ msgid "sites"
1113
+ msgstr ""
1114
+
1115
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1116
+ msgid "No site configured yet."
1117
+ msgstr ""
1118
+
1119
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1120
+ msgid "Blog ID"
1121
+ msgstr ""
1122
+
1123
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1124
+ msgid "Title"
1125
+ msgstr ""
1126
+
1127
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1128
+ msgid "URL"
1129
+ msgstr ""
1130
+
1131
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1132
+ msgid "Site ID (Piwik)"
1133
+ msgstr ""
1134
+
1135
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1136
+ msgid "Site not created yet."
1137
+ msgstr ""
1138
+
1139
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1140
+ msgid "Statistics"
1141
+ msgstr ""
1142
+
1143
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1144
+ msgid "Currently shown stats:"
1145
+ msgstr ""
1146
+
1147
+ #: classes/WP_Piwik/Request/Php.php:27
1148
+ msgid "Could not resolve"
1149
+ msgstr ""
1150
+
1151
+ #: classes/WP_Piwik/Request/Php.php:27
1152
+ msgid "realpath() returns false"
1153
+ msgstr ""
1154
+
1155
+ #: classes/WP_Piwik/Request/Php.php:39
1156
+ msgid "Class Piwik\\FrontController does not exists."
1157
+ msgstr ""
1158
+
1159
+ #: classes/WP_Piwik/Request/Php.php:42
1160
+ msgid "Class Piwik\\API\\Request does not exists."
1161
+ msgstr ""
1162
+
1163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1164
+ msgid "Piwik Custom Variables"
1165
+ msgstr ""
1166
+
1167
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1168
+ msgid "Name"
1169
+ msgstr ""
1170
+
1171
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1172
+ msgid "Value"
1173
+ msgstr ""
1174
+
1175
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1176
+ msgid "Set custom variables for a page view"
1177
+ msgstr ""
1178
+
1179
+ #: classes/WP_Piwik/Widget.php:91
1180
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1181
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1182
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1183
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1184
+ #: classes/WP_Piwik/Widget/Items.php:23
1185
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1186
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1187
+ #: classes/WP_Piwik/Widget/Overview.php:24
1188
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1189
+ #: classes/WP_Piwik/Widget/Screens.php:35
1190
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1191
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1192
+ #: classes/WP_Piwik/Widget/Systems.php:33
1193
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1194
+ msgid "Piwik error"
1195
+ msgstr ""
1196
 
1197
+ #: classes/WP_Piwik/Widget.php:100
1198
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1199
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1200
+ #: classes/WP_Piwik/Widget/Country.php:39
1201
+ #: classes/WP_Piwik/Widget/Screens.php:37
1202
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1203
+ #: classes/WP_Piwik/Widget/Systems.php:35
1204
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1205
  msgid "Unique"
1206
  msgstr "Unikal"
1207
 
1208
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1209
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1210
+ msgid "Visits"
1211
+ msgstr "Gəlişlər"
1212
+
1213
+ #: classes/WP_Piwik/Widget.php:104
1214
+ msgid "Hits"
1215
+ msgstr ""
1216
+
1217
+ #: classes/WP_Piwik/Widget.php:106
1218
+ msgid "Actions"
1219
+ msgstr ""
1220
+
1221
+ #: classes/WP_Piwik/Widget.php:162
1222
+ msgid "No data available."
1223
+ msgstr ""
1224
+
1225
+ #: classes/WP_Piwik/Widget.php:243
1226
+ msgid "today"
1227
+ msgstr ""
1228
+
1229
+ #: classes/WP_Piwik/Widget.php:248
1230
+ msgid "current month"
1231
+ msgstr ""
1232
+
1233
+ #: classes/WP_Piwik/Widget.php:253
1234
+ msgid "last month"
1235
+ msgstr ""
1236
+
1237
+ #: classes/WP_Piwik/Widget.php:258
1238
+ msgid "current week"
1239
+ msgstr ""
1240
+
1241
+ #: classes/WP_Piwik/Widget.php:263
1242
+ msgid "last week"
1243
+ msgstr ""
1244
+
1245
+ #: classes/WP_Piwik/Widget.php:268
1246
+ msgid "yesterday"
1247
+ msgstr ""
1248
+
1249
+ #: classes/WP_Piwik/Widget.php:293
1250
+ msgid "week"
1251
+ msgstr ""
1252
+
1253
+ #: classes/WP_Piwik/Widget.php:328
1254
+ msgid "last 30 days"
1255
+ msgstr ""
1256
+
1257
+ #: classes/WP_Piwik/Widget.php:330
1258
+ msgid "last 12 "
1259
+ msgstr ""
1260
+
1261
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1262
+ msgid "Browser Details"
1263
+ msgstr ""
1264
+
1265
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1266
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1267
+ msgid "Browser"
1268
+ msgstr "Brauzer"
1269
+
1270
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1271
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1272
+ #: classes/WP_Piwik/Widget/Country.php:39
1273
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1274
+ #: classes/WP_Piwik/Widget/Screens.php:37
1275
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1276
+ #: classes/WP_Piwik/Widget/Systems.php:35
1277
  msgid "Percent"
1278
  msgstr "Faiz"
1279
 
1280
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1281
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1282
+ #: classes/WP_Piwik/Widget/Country.php:66
1283
+ #: classes/WP_Piwik/Widget/Screens.php:64
1284
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1285
+ #: classes/WP_Piwik/Widget/Systems.php:62
1286
+ msgid "Others"
1287
+ msgstr ""
1288
 
1289
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1290
+ msgid "Browsers"
1291
+ msgstr ""
1292
 
1293
+ #: classes/WP_Piwik/Widget/Chart.php:19
1294
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1295
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1296
  msgid "Visitors"
1297
  msgstr "Qonaqlar"
1298
 
1299
+ #: classes/WP_Piwik/Widget/Chart.php:71
1300
+ msgid ""
1301
+ "The graph contains the values shown in the table below (visitors / unique / "
1302
+ "bounces). The red line shows a linear trendline (unique)."
1303
+ msgstr ""
1304
 
1305
+ #: classes/WP_Piwik/Widget/Country.php:18
1306
+ msgid "Countries"
1307
+ msgstr ""
1308
 
1309
+ #: classes/WP_Piwik/Widget/Country.php:39
1310
+ msgid "Country"
1311
+ msgstr ""
1312
 
1313
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1314
+ msgid "E-Commerce"
1315
+ msgstr ""
1316
 
1317
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1318
+ msgid "Conversions"
1319
+ msgstr ""
1320
 
1321
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1322
+ msgid "Visits converted"
1323
+ msgstr ""
1324
 
1325
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1326
+ #: classes/WP_Piwik/Widget/Items.php:27
1327
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1328
+ msgid "Revenue"
1329
+ msgstr ""
1330
+
1331
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1332
+ #: classes/WP_Piwik/Widget/Items.php:32
1333
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1334
+ msgid "Conversion rate"
1335
+ msgstr ""
1336
+
1337
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1338
+ msgid "Conversions (new visitor)"
1339
+ msgstr ""
1340
+
1341
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1342
+ msgid "Visits converted (new visitor)"
1343
+ msgstr ""
1344
+
1345
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1346
+ msgid "Revenue (new visitor)"
1347
+ msgstr ""
1348
+
1349
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1350
+ msgid "Conversion rate (new visitor)"
1351
+ msgstr ""
1352
+
1353
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1354
+ msgid "Conversions (returning visitor)"
1355
+ msgstr ""
1356
+
1357
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1358
+ msgid "Visits converted (returning visitor)"
1359
+ msgstr ""
1360
+
1361
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1362
+ msgid "Revenue (returning visitor)"
1363
+ msgstr ""
1364
+
1365
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1366
+ msgid "Conversion rate (returning visitor)"
1367
+ msgstr ""
1368
+
1369
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1370
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1371
+ msgid "Shortcut"
1372
+ msgstr ""
1373
+
1374
+ #: classes/WP_Piwik/Widget/Items.php:11
1375
+ msgid "E-Commerce Items"
1376
+ msgstr ""
1377
+
1378
+ #: classes/WP_Piwik/Widget/Items.php:26
1379
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1380
+ msgid "Label"
1381
+ msgstr ""
1382
 
1383
+ #: classes/WP_Piwik/Widget/Items.php:28
1384
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1385
+ msgid "Quantity"
1386
+ msgstr ""
1387
+
1388
+ #: classes/WP_Piwik/Widget/Items.php:29
1389
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1390
+ msgid "Orders"
1391
+ msgstr ""
1392
+
1393
+ #: classes/WP_Piwik/Widget/Items.php:30
1394
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1395
+ msgid "Avg. price"
1396
+ msgstr ""
1397
+
1398
+ #: classes/WP_Piwik/Widget/Items.php:31
1399
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1400
+ msgid "Avg. quantity"
1401
+ msgstr ""
1402
+
1403
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1404
+ msgid "E-Commerce Item Categories"
1405
+ msgstr ""
1406
+
1407
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1408
+ msgid "Keywords"
1409
+ msgstr "Əsas sözlər"
1410
+
1411
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1412
+ #: classes/WP_Piwik/Widget/Search.php:16
1413
+ msgid "Site Search"
1414
+ msgstr ""
1415
+
1416
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1417
+ #: classes/WP_Piwik/Widget/Search.php:25
1418
+ msgid "Keyword"
1419
+ msgstr "Əsas söz"
1420
+
1421
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1422
+ #: classes/WP_Piwik/Widget/Search.php:25
1423
+ msgid "Requests"
1424
+ msgstr ""
1425
+
1426
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1427
+ #: classes/WP_Piwik/Widget/Search.php:25
1428
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1429
  msgid "Bounced"
1430
  msgstr "Rədd etmələr"
1431
 
1432
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1433
+ msgid "Overview"
1434
+ msgstr "Təsviri"
1435
 
1436
+ #: classes/WP_Piwik/Widget/Overview.php:17
1437
+ msgid "dashboard"
1438
+ msgstr ""
1439
 
1440
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1441
+ msgid "Unique visitors"
1442
+ msgstr "Unikal gonaqlar"
 
1443
 
1444
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1445
+ msgid "Page views"
1446
+ msgstr "Səhifəyə baxışlar"
 
 
1447
 
1448
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1449
+ msgid "Total time spent"
1450
+ msgstr ""
 
1451
 
1452
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1453
+ msgid "Bounce count"
1454
+ msgstr "Rədd cavabının miqdarı"
1455
 
1456
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1457
+ msgid "Time/visit"
1458
+ msgstr ""
1459
 
1460
+ #: classes/WP_Piwik/Widget/Overview.php:57
1461
+ msgid "Max. page views in one visit"
1462
+ msgstr "Bir gəlişə maksimal baxılan səhifə"
1463
 
1464
+ #: classes/WP_Piwik/Widget/Pages.php:16
1465
+ msgid "Pages"
1466
+ msgstr ""
1467
 
1468
+ #: classes/WP_Piwik/Widget/Pages.php:18
1469
+ msgid "Page"
1470
+ msgstr ""
1471
 
1472
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1473
+ msgid "Plugins"
1474
+ msgstr ""
1475
 
1476
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1477
+ msgid "Plugin"
1478
+ msgstr ""
 
1479
 
1480
+ #: classes/WP_Piwik/Widget/Post.php:43
1481
+ msgid "Min. generation time"
1482
+ msgstr ""
1483
 
1484
+ #: classes/WP_Piwik/Widget/Post.php:44
1485
+ msgid "Max. generation time"
1486
+ msgstr ""
1487
 
1488
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1489
+ msgid "Referrers"
1490
+ msgstr ""
1491
 
1492
+ #: classes/WP_Piwik/Widget/Screens.php:16
1493
+ msgid "Resolutions"
1494
+ msgstr ""
1495
 
1496
+ #: classes/WP_Piwik/Widget/Screens.php:37
1497
+ msgid "Resolution"
1498
+ msgstr "Həlli"
1499
 
1500
+ #: classes/WP_Piwik/Widget/Seo.php:13
1501
+ msgid "SEO"
1502
+ msgstr ""
1503
 
1504
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1505
+ msgid "Operation System Details"
1506
+ msgstr ""
1507
 
1508
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1509
+ #: classes/WP_Piwik/Widget/Systems.php:35
1510
+ msgid "Operation System"
1511
+ msgstr ""
1512
 
1513
+ #: classes/WP_Piwik/Widget/Systems.php:14
1514
+ msgid "Operation Systems"
1515
+ msgstr ""
1516
 
1517
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1518
+ msgid "Date"
1519
+ msgstr "Tarix"
1520
 
1521
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1522
+ msgid "Page Views"
1523
+ msgstr ""
1524
 
1525
+ #: wp-piwik.php:60
1526
+ #, php-format
1527
+ msgid ""
1528
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1529
+ " Please update PHP to use WP-Piwik."
1530
+ msgstr ""
languages/wp-piwik-be_BY.mo CHANGED
Binary file
languages/wp-piwik-be_BY.po CHANGED
@@ -1,186 +1,1530 @@
1
- # WP-Piwik 0.3.0 - Belorussian language file
2
- # Copyright (C) 2009 Andre Braekling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andre Braekling <webmaster@braekling.de>, 2009.
5
- # FatCow http://www.fatcow.com, 2009.
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: 0.3.0\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
10
- "POT-Creation-Date: 2009-06-09 19:05+0000\n"
11
- "PO-Revision-Date: 2009-11-14 16:25+0200\n"
12
- "Last-Translator: Fat Cow <zhr@tut.by>\n"
13
- "Language-Team: FatCow <zhr@tut.by>\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Belarusian\n"
18
- "X-Poedit-Country: BELARUS\n"
19
- "X-Poedit-SourceCharset: utf-8\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
 
21
- #: dashboard/browsers.php:8
22
- #: dashboard/browsers.php:37
23
- msgid "Browser"
24
- msgstr "Браузер"
25
 
26
- msgid "Resolution"
27
- msgstr "Разрешение"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
- msgid "Operating System"
30
- msgstr "Операционная система"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
- #: dashboard/browsers.php:37
33
- #: dashboard/keywords.php:13
34
- #: dashboard/visitors.php:56
35
- #: dashboard/websites.php:13
 
 
 
 
36
  msgid "Unique"
37
  msgstr "Уникальность"
38
 
39
- #: dashboard/browsers.php:37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  msgid "Percent"
41
  msgstr "Процентов"
42
 
43
- #: dashboard/keywords.php:8
44
- msgid "Keywords"
45
- msgstr "Ключевые слова"
46
-
47
- #: dashboard/keywords.php:13
48
- msgid "Keyword"
49
- msgstr "Ключевое слово"
 
50
 
51
- #: dashboard/overview.php:8
52
- msgid "Overview"
53
- msgstr "Описание"
54
 
55
- #: dashboard/overview.php:16
56
- #: dashboard/visitors.php:21
 
57
  msgid "Visitors"
58
  msgstr "Посетителей"
59
 
60
- #: dashboard/overview.php:17
61
- msgid "Unique visitors"
62
- msgstr "Уникальных посетителей"
 
 
63
 
64
- #: dashboard/overview.php:18
65
- msgid "Page views"
66
- msgstr "Просмотров страницы"
67
 
68
- #: dashboard/overview.php:19
69
- msgid "Max. page views in one visit"
70
- msgstr "Макс. страниц просмтрено за один визит"
71
 
72
- #: dashboard/overview.php:20
73
- msgid "Total time spent by visitors"
74
- msgstr "Всего времени, проведенного посетителем"
75
 
76
- #: dashboard/overview.php:21
77
- msgid "Bounce count"
78
- msgstr "Количество отказов"
79
 
80
- #: dashboard/visitors.php:56
81
- msgid "Date"
82
- msgstr "Дата"
83
 
84
- #: dashboard/visitors.php:56
85
- msgid "Visits"
86
- msgstr "Визитов"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
 
88
- #: dashboard/visitors.php:56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89
  msgid "Bounced"
90
  msgstr "Отказов"
91
 
92
- #: dashboard/websites.php:8
93
- msgid "Websites"
94
- msgstr "Сайтов"
95
 
96
- #: dashboard/websites.php:13
97
- msgid "Website"
98
- msgstr "Вебсайт"
99
 
100
- #: wp-piwik.php:49
101
- #: wp-piwik.php:147
102
- msgid "Piwik Statistics"
103
- msgstr "Piwik статистика"
104
 
105
- #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
106
- #. Plugin Name of an extension
107
- #: wp-piwik.php:49
108
- msgid "WP-Piwik"
109
- msgstr "WP-Piwik"
110
 
111
- #: wp-piwik.php:53
112
- #: wp-piwik.php:185
113
- msgid "WP-Piwik Settings"
114
- msgstr "WP-Piwik настройки"
115
 
116
- #: wp-piwik.php:59
117
- msgid "Settings"
118
- msgstr "Настройки"
119
 
120
- #: wp-piwik.php:112
121
- msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
122
- msgstr "Удаленный доступ к Piwik невозможен. Включите allow_url_fopen или CURL."
123
 
124
- #: wp-piwik.php:190
125
- msgid "Account settings"
126
- msgstr "Настройки аккаунта"
127
 
128
- #: wp-piwik.php:192
129
- msgid "Piwik URL"
130
- msgstr "Piwik URL"
131
 
132
- #: wp-piwik.php:196
133
- msgid "Auth token"
134
- msgstr "Авто token"
135
 
136
- #: wp-piwik.php:200
137
- msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
138
- msgstr "Для того чтобы Piwik статистике, пожалуйста, введите Ваш Piwik Базовый URL (например, http://mydomain.com/piwik), и ваш личный знак подлинности. Вы можете получить знак на странице API внутри интерфейса Piwik. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
139
 
140
- #: wp-piwik.php:205
141
- #: wp-piwik.php:207
142
- msgid "An error occured"
143
- msgstr "Произошла ошибка"
144
 
145
- #: wp-piwik.php:205
146
- msgid "Please check URL and auth token. You need at least view access to one site."
147
- msgstr "Пожалуйста, проверьте URL и AUTH маркера. Вам потребуется минимум открыть доступ к одному сайту."
148
 
149
- #: wp-piwik:php:215
150
- msgid "Choose site"
151
- msgstr "Выбрать сайт"
152
 
153
- #: wp-piwik.php:221
154
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
155
- msgstr "Если в шаблоне используются wp_footer (), РГ-Piwik может автоматически добавить Piwik кода JavaScript в вашем блоге."
156
 
157
- #: wp-piwik.php:226
158
- msgid "Add script to wp_footer()"
159
- msgstr "Добавить скрипт в wp_footer()"
160
 
161
- msgid "Tracking filter"
162
- msgstr "Следящий фильтр"
 
163
 
164
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
165
- msgstr "W&auml;hle Nutzer anhand ihrer Nutzerrolle, die <strong>nicht</strong> erfasst werden sollen. Die Funktion &quot;Skript zu wp_footer() hinzuf&uuml;gen&quot; muss dazu verwendet werden."
 
166
 
167
- #: wp-piwik.php:229
168
- msgid "Save settings"
169
- msgstr "Сохранить настройки"
170
 
171
- #. Plugin URI of an extension
172
- msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
173
- msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
 
174
 
175
- #. Description of an extension
176
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
177
- msgstr "Добавляет Piwik статистику по меню и панели инструментов Piwik кода на WordPress колонтитула."
178
 
179
- #. Author of an extension
180
- msgid "Andr&eacute; Br&auml;kling"
181
- msgstr "Andr&eacute; Br&auml;kling"
182
 
183
- #. Author URI of an extension
184
- msgid "http://www.braekling.de"
185
- msgstr "http://www.braekling.de"
186
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andre Braekling <webmaster@braekling.de>, 2009
4
+ # FatCow http://www.fatcow.com, 2009
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
9
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
10
+ "Last-Translator: André Bräkling\n"
11
+ "Language-Team: Belarusian (Belarus) (http://www.transifex.com/piwik/wp-piwik/language/be_BY/)\n"
 
 
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: be_BY\n"
16
+ "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
17
+
18
+ #: classes/WP_Piwik.php:203
19
+ #, php-format
20
+ msgid "%s %s installed."
21
+ msgstr ""
22
+
23
+ #: classes/WP_Piwik.php:203
24
+ msgid "Next you should connect to Piwik"
25
+ msgstr ""
26
+
27
+ #: classes/WP_Piwik.php:237
28
+ #, php-format
29
+ msgid "%s updated to %s."
30
+ msgstr ""
31
+
32
+ #: classes/WP_Piwik.php:237
33
+ msgid "Please validate your configuration"
34
+ msgstr ""
35
+
36
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
37
+ msgid "Settings"
38
+ msgstr "Настройки"
39
+
40
+ #: classes/WP_Piwik.php:272
41
+ msgid "Important"
42
+ msgstr ""
43
+
44
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
45
+ msgid "Piwik Statistics"
46
+ msgstr "Piwik статистика"
47
+
48
+ #: classes/WP_Piwik.php:499
49
+ msgid "Configure WP-Piwik"
50
+ msgstr ""
51
+
52
+ #: classes/WP_Piwik.php:992
53
+ msgid "An error occured"
54
+ msgstr "Произошла ошибка"
55
+
56
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
57
+ msgid "Support"
58
+ msgstr ""
59
+
60
+ #: classes/WP_Piwik.php:1275
61
+ msgid "Cheatin&#8217; uh?"
62
+ msgstr ""
63
+
64
+ #: classes/WP_Piwik/Admin/Settings.php:24
65
+ msgid "Reload"
66
+ msgstr ""
67
+
68
+ #: classes/WP_Piwik/Admin/Settings.php:27
69
+ msgid "Changes saved."
70
+ msgstr ""
71
+
72
+ #: classes/WP_Piwik/Admin/Settings.php:55
73
+ msgid "Thanks for using WP-Piwik!"
74
+ msgstr ""
75
+
76
+ #: classes/WP_Piwik/Admin/Settings.php:58
77
+ #, php-format
78
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
79
+ msgstr ""
80
+
81
+ #: classes/WP_Piwik/Admin/Settings.php:58
82
+ #, php-format
83
+ msgid "You are running WordPress %s."
84
+ msgstr ""
85
+
86
+ #: classes/WP_Piwik/Admin/Settings.php:58
87
+ #, php-format
88
+ msgid ""
89
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
90
+ "your sites as different websites."
91
+ msgstr ""
92
+
93
+ #: classes/WP_Piwik/Admin/Settings.php:62
94
+ #, php-format
95
+ msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
97
+ " the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr ""
99
+
100
+ #: classes/WP_Piwik/Admin/Settings.php:64
101
+ #, php-format
102
+ msgid ""
103
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
104
+ "During connection the following error occured: <br /><code>%s</code>"
105
+ msgstr ""
106
+
107
+ #: classes/WP_Piwik/Admin/Settings.php:67
108
+ #, php-format
109
+ msgid ""
110
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
111
+ "Piwik&laquo; section below."
112
+ msgstr ""
113
+
114
+ #: classes/WP_Piwik/Admin/Settings.php:71
115
+ msgid "Connect to Piwik"
116
+ msgstr ""
117
+
118
+ #: classes/WP_Piwik/Admin/Settings.php:76
119
+ msgid "Show Statistics"
120
+ msgstr ""
121
+
122
+ #: classes/WP_Piwik/Admin/Settings.php:80
123
+ msgid "Enable Tracking"
124
+ msgstr ""
125
+
126
+ #: classes/WP_Piwik/Admin/Settings.php:85
127
+ msgid "Expert Settings"
128
+ msgstr ""
129
+
130
+ #: classes/WP_Piwik/Admin/Settings.php:93
131
+ msgid "Credits"
132
+ msgstr ""
133
+
134
+ #: classes/WP_Piwik/Admin/Settings.php:106
135
+ msgid ""
136
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
137
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
138
+ " To use this you will need your own Piwik instance. If you do not already "
139
+ "have a Piwik setup, you have two simple options: use either"
140
+ msgstr ""
141
+
142
+ #: classes/WP_Piwik/Admin/Settings.php:106
143
+ msgid "a self-hosted Piwik"
144
+ msgstr ""
145
+
146
+ #: classes/WP_Piwik/Admin/Settings.php:106
147
+ msgid "or"
148
+ msgstr ""
149
+
150
+ #: classes/WP_Piwik/Admin/Settings.php:106
151
+ msgid "a cloud-hosted Piwik by InnoCraft"
152
+ msgstr ""
153
+
154
+ #: classes/WP_Piwik/Admin/Settings.php:109
155
+ msgid ""
156
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
157
+ "and not connect to InnoCraft Cloud."
158
+ msgstr ""
159
+
160
+ #: classes/WP_Piwik/Admin/Settings.php:109
161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
162
+ msgid "More information"
163
+ msgstr ""
164
+
165
+ #: classes/WP_Piwik/Admin/Settings.php:111
166
+ msgid "You can choose between three connection methods:"
167
+ msgstr ""
168
+
169
+ #: classes/WP_Piwik/Admin/Settings.php:111
170
+ #: classes/WP_Piwik/Admin/Settings.php:114
171
+ msgid "Self-hosted (HTTP API, default)"
172
+ msgstr ""
173
+
174
+ #: classes/WP_Piwik/Admin/Settings.php:111
175
+ msgid ""
176
+ "This is the default option for a self-hosted Piwik and should work for most "
177
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
178
+ msgstr ""
179
+
180
+ #: classes/WP_Piwik/Admin/Settings.php:111
181
+ #: classes/WP_Piwik/Admin/Settings.php:115
182
+ msgid "Self-hosted (PHP API)"
183
+ msgstr ""
184
+
185
+ #: classes/WP_Piwik/Admin/Settings.php:111
186
+ msgid ""
187
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
188
+ " machine and you know the full server path to your Piwik instance."
189
+ msgstr ""
190
+
191
+ #: classes/WP_Piwik/Admin/Settings.php:111
192
+ #: classes/WP_Piwik/Admin/Settings.php:116
193
+ msgid "Cloud-hosted (InnoCraft Cloud)"
194
+ msgstr ""
195
+
196
+ #: classes/WP_Piwik/Admin/Settings.php:111
197
+ msgid ""
198
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
199
+ "option."
200
+ msgstr ""
201
+
202
+ #: classes/WP_Piwik/Admin/Settings.php:112
203
+ msgid "Piwik Mode"
204
+ msgstr ""
205
+
206
+ #: classes/WP_Piwik/Admin/Settings.php:113
207
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
208
+ msgstr ""
209
+
210
+ #: classes/WP_Piwik/Admin/Settings.php:119
211
+ msgid "Piwik URL"
212
+ msgstr "Piwik URL"
213
+
214
+ #: classes/WP_Piwik/Admin/Settings.php:119
215
+ msgid ""
216
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
217
+ "instance, e.g. http://www.example.com/piwik/."
218
+ msgstr ""
219
+
220
+ #: classes/WP_Piwik/Admin/Settings.php:120
221
+ msgid "Piwik path"
222
+ msgstr ""
223
+
224
+ #: classes/WP_Piwik/Admin/Settings.php:120
225
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
226
+ msgstr ""
227
+
228
+ #: classes/WP_Piwik/Admin/Settings.php:121
229
+ msgid "Piwik subdomain"
230
+ msgstr ""
231
+
232
+ #: classes/WP_Piwik/Admin/Settings.php:121
233
+ msgid ""
234
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
235
+ "https://SUBDOMAIN.innocraft.cloud."
236
+ msgstr ""
237
+
238
+ #: classes/WP_Piwik/Admin/Settings.php:122
239
+ msgid "Auth token"
240
+ msgstr "Авто token"
241
+
242
+ #: classes/WP_Piwik/Admin/Settings.php:122
243
+ msgid ""
244
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
245
+ "0a1b2c34d56e78901fa2bc3d45678efa."
246
+ msgstr ""
247
+
248
+ #: classes/WP_Piwik/Admin/Settings.php:122
249
+ #, php-format
250
+ msgid "See %sWP-Piwik FAQ%s."
251
+ msgstr ""
252
+
253
+ #: classes/WP_Piwik/Admin/Settings.php:127
254
+ msgid "Auto config"
255
+ msgstr ""
256
+
257
+ #: classes/WP_Piwik/Admin/Settings.php:127
258
+ msgid ""
259
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
260
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
261
+ msgstr ""
262
+
263
+ #: classes/WP_Piwik/Admin/Settings.php:131
264
+ #, php-format
265
+ msgid ""
266
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
267
+ "/><code>%s</code>"
268
+ msgstr ""
269
+
270
+ #: classes/WP_Piwik/Admin/Settings.php:141
271
+ msgid "Determined site"
272
+ msgstr ""
273
+
274
+ #: classes/WP_Piwik/Admin/Settings.php:146
275
+ msgid "Select site"
276
+ msgstr ""
277
+
278
+ #: classes/WP_Piwik/Admin/Settings.php:155
279
+ msgid "Piwik default date"
280
+ msgstr ""
281
+
282
+ #: classes/WP_Piwik/Admin/Settings.php:156
283
+ #: classes/WP_Piwik/Admin/Settings.php:170
284
+ msgid "Today"
285
+ msgstr ""
286
+
287
+ #: classes/WP_Piwik/Admin/Settings.php:157
288
+ #: classes/WP_Piwik/Admin/Settings.php:169
289
+ msgid "Yesterday"
290
+ msgstr ""
291
+
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
+ msgid "Current month"
294
+ msgstr ""
295
+
296
+ #: classes/WP_Piwik/Admin/Settings.php:159
297
+ msgid "Last month"
298
+ msgstr ""
299
+
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
+ msgid "Current week"
302
+ msgstr ""
303
+
304
+ #: classes/WP_Piwik/Admin/Settings.php:161
305
+ msgid "Last week"
306
+ msgstr ""
307
+
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
+ msgid "Default date shown on statistics page."
310
+ msgstr ""
311
+
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
+ msgid "Show SEO data"
314
+ msgstr ""
315
+
316
+ #: classes/WP_Piwik/Admin/Settings.php:164
317
+ msgid "Display SEO ranking data on statistics page."
318
+ msgstr ""
319
+
320
+ #: classes/WP_Piwik/Admin/Settings.php:164
321
+ #: classes/WP_Piwik/Admin/Settings.php:176
322
+ msgid "Slow!"
323
+ msgstr ""
324
+
325
+ #: classes/WP_Piwik/Admin/Settings.php:165
326
+ msgid "Show e-commerce data"
327
+ msgstr ""
328
+
329
+ #: classes/WP_Piwik/Admin/Settings.php:165
330
+ msgid "Display e-commerce data on statistics page."
331
+ msgstr ""
332
+
333
+ #: classes/WP_Piwik/Admin/Settings.php:167
334
+ msgid "Dashboard overview"
335
+ msgstr ""
336
+
337
+ #: classes/WP_Piwik/Admin/Settings.php:168
338
+ #: classes/WP_Piwik/Admin/Settings.php:208
339
+ #: classes/WP_Piwik/Admin/Settings.php:210
340
+ #: classes/WP_Piwik/Admin/Settings.php:231
341
+ #: classes/WP_Piwik/Admin/Settings.php:285
342
+ #: classes/WP_Piwik/Admin/Settings.php:340
343
+ msgid "Disabled"
344
+ msgstr ""
345
+
346
+ #: classes/WP_Piwik/Admin/Settings.php:171
347
+ msgid "Last 30 days"
348
+ msgstr ""
349
+
350
+ #: classes/WP_Piwik/Admin/Settings.php:172
351
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
352
+ msgstr ""
353
+
354
+ #: classes/WP_Piwik/Admin/Settings.php:174
355
+ msgid "Dashboard graph"
356
+ msgstr ""
357
+
358
+ #: classes/WP_Piwik/Admin/Settings.php:174
359
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
360
+ msgstr ""
361
+
362
+ #: classes/WP_Piwik/Admin/Settings.php:176
363
+ msgid "Dashboard SEO"
364
+ msgstr ""
365
+
366
+ #: classes/WP_Piwik/Admin/Settings.php:176
367
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
368
+ msgstr ""
369
+
370
+ #: classes/WP_Piwik/Admin/Settings.php:178
371
+ msgid "Dashboard e-commerce"
372
+ msgstr ""
373
+
374
+ #: classes/WP_Piwik/Admin/Settings.php:178
375
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
376
+ msgstr ""
377
+
378
+ #: classes/WP_Piwik/Admin/Settings.php:180
379
+ msgid "Show graph on WordPress Toolbar"
380
+ msgstr ""
381
+
382
+ #: classes/WP_Piwik/Admin/Settings.php:180
383
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
384
+ msgstr ""
385
+
386
+ #: classes/WP_Piwik/Admin/Settings.php:182
387
+ msgid "Display stats to"
388
+ msgstr ""
389
+
390
+ #: classes/WP_Piwik/Admin/Settings.php:189
391
+ msgid "Choose user roles allowed to see the statistics page."
392
+ msgstr ""
393
+
394
+ #: classes/WP_Piwik/Admin/Settings.php:191
395
+ msgid "Show per post stats"
396
+ msgstr ""
397
+
398
+ #: classes/WP_Piwik/Admin/Settings.php:191
399
+ msgid "Show stats about single posts at the post edit admin page."
400
+ msgstr ""
401
+
402
+ #: classes/WP_Piwik/Admin/Settings.php:193
403
+ msgid "Piwik shortcut"
404
+ msgstr ""
405
+
406
+ #: classes/WP_Piwik/Admin/Settings.php:193
407
+ msgid "Display a shortcut to Piwik itself."
408
+ msgstr ""
409
+
410
+ #: classes/WP_Piwik/Admin/Settings.php:195
411
+ msgid "WP-Piwik display name"
412
+ msgstr ""
413
+
414
+ #: classes/WP_Piwik/Admin/Settings.php:195
415
+ msgid "Plugin name shown in WordPress."
416
+ msgstr ""
417
+
418
+ #: classes/WP_Piwik/Admin/Settings.php:197
419
+ msgid "Enable shortcodes"
420
+ msgstr ""
421
+
422
+ #: classes/WP_Piwik/Admin/Settings.php:197
423
+ msgid "Enable shortcodes in post or page content."
424
+ msgstr ""
425
+
426
+ #: classes/WP_Piwik/Admin/Settings.php:208
427
+ msgid "You can choose between four tracking code modes:"
428
+ msgstr ""
429
+
430
+ #: classes/WP_Piwik/Admin/Settings.php:208
431
+ msgid ""
432
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
433
+ "tracking code to your template files or you use another plugin to add the "
434
+ "tracking code."
435
+ msgstr ""
436
+
437
+ #: classes/WP_Piwik/Admin/Settings.php:208
438
+ #: classes/WP_Piwik/Admin/Settings.php:211
439
+ msgid "Default tracking"
440
+ msgstr ""
441
+
442
+ #: classes/WP_Piwik/Admin/Settings.php:208
443
+ msgid "WP-Piwik will use Piwik's standard tracking code."
444
+ msgstr ""
445
+
446
+ #: classes/WP_Piwik/Admin/Settings.php:208
447
+ #: classes/WP_Piwik/Admin/Settings.php:212
448
+ msgid "Use js/index.php"
449
+ msgstr ""
450
+
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
+ msgid ""
453
+ "You can choose this tracking code, to deliver a minified proxy code and to "
454
+ "avoid using the files called piwik.js or piwik.php."
455
+ msgstr ""
456
+
457
+ #: classes/WP_Piwik/Admin/Settings.php:208
458
+ #, php-format
459
+ msgid "See %sreadme file%s."
460
+ msgstr ""
461
+
462
+ #: classes/WP_Piwik/Admin/Settings.php:208
463
+ #: classes/WP_Piwik/Admin/Settings.php:213
464
+ msgid "Use proxy script"
465
+ msgstr ""
466
+
467
+ #: classes/WP_Piwik/Admin/Settings.php:208
468
+ msgid "Use this tracking code to not reveal the Piwik server URL."
469
+ msgstr ""
470
+
471
+ #: classes/WP_Piwik/Admin/Settings.php:208
472
+ #: classes/WP_Piwik/Admin/Settings.php:228
473
+ #: classes/WP_Piwik/Admin/Settings.php:238
474
+ #, php-format
475
+ msgid "See %sPiwik FAQ%s."
476
+ msgstr ""
477
+
478
+ #: classes/WP_Piwik/Admin/Settings.php:208
479
+ #: classes/WP_Piwik/Admin/Settings.php:214
480
+ msgid "Enter manually"
481
+ msgstr ""
482
+
483
+ #: classes/WP_Piwik/Admin/Settings.php:208
484
+ msgid ""
485
+ "Enter your own tracking code manually. You can choose one of the prior "
486
+ "options, pre-configure your tracking code and switch to manually editing at "
487
+ "last."
488
+ msgstr ""
489
+
490
+ #: classes/WP_Piwik/Admin/Settings.php:208
491
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
492
+ msgstr ""
493
+
494
+ #: classes/WP_Piwik/Admin/Settings.php:209
495
+ msgid "Add tracking code"
496
+ msgstr ""
497
+
498
+ #: classes/WP_Piwik/Admin/Settings.php:217
499
+ msgid "Tracking code"
500
+ msgstr ""
501
+
502
+ #: classes/WP_Piwik/Admin/Settings.php:219
503
+ msgid "JavaScript code position"
504
+ msgstr ""
505
+
506
+ #: classes/WP_Piwik/Admin/Settings.php:220
507
+ msgid "Footer"
508
+ msgstr ""
509
+
510
+ #: classes/WP_Piwik/Admin/Settings.php:221
511
+ msgid "Header"
512
+ msgstr ""
513
+
514
+ #: classes/WP_Piwik/Admin/Settings.php:222
515
+ msgid ""
516
+ "Choose whether the JavaScript code is added to the footer or the header."
517
+ msgstr ""
518
+
519
+ #: classes/WP_Piwik/Admin/Settings.php:224
520
+ msgid "Noscript code"
521
+ msgstr ""
522
+
523
+ #: classes/WP_Piwik/Admin/Settings.php:226
524
+ msgid "Add &lt;noscript&gt;"
525
+ msgstr ""
526
+
527
+ #: classes/WP_Piwik/Admin/Settings.php:226
528
+ msgid "Adds the &lt;noscript&gt; code to your footer."
529
+ msgstr ""
530
+
531
+ #: classes/WP_Piwik/Admin/Settings.php:226
532
+ #: classes/WP_Piwik/Admin/Settings.php:228
533
+ msgid "Disabled in proxy mode."
534
+ msgstr ""
535
+
536
+ #: classes/WP_Piwik/Admin/Settings.php:228
537
+ msgid "Add rec parameter to noscript code"
538
+ msgstr ""
539
+
540
+ #: classes/WP_Piwik/Admin/Settings.php:228
541
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
542
+ msgstr ""
543
+
544
+ #: classes/WP_Piwik/Admin/Settings.php:230
545
+ msgid "Enable content tracking"
546
+ msgstr ""
547
+
548
+ #: classes/WP_Piwik/Admin/Settings.php:232
549
+ msgid "Track all content blocks"
550
+ msgstr ""
551
+
552
+ #: classes/WP_Piwik/Admin/Settings.php:233
553
+ msgid "Track only visible content blocks"
554
+ msgstr ""
555
+
556
+ #: classes/WP_Piwik/Admin/Settings.php:234
557
+ msgid ""
558
+ "Content tracking allows you to track interaction with the content of a web "
559
+ "page or application."
560
+ msgstr ""
561
+
562
+ #: classes/WP_Piwik/Admin/Settings.php:234
563
+ #: classes/WP_Piwik/Admin/Settings.php:236
564
+ #: classes/WP_Piwik/Admin/Settings.php:245
565
+ #: classes/WP_Piwik/Admin/Settings.php:247
566
+ #: classes/WP_Piwik/Admin/Settings.php:249
567
+ #: classes/WP_Piwik/Admin/Settings.php:270
568
+ #: classes/WP_Piwik/Admin/Settings.php:272
569
+ #: classes/WP_Piwik/Admin/Settings.php:278
570
+ #: classes/WP_Piwik/Admin/Settings.php:343
571
+ #, php-format
572
+ msgid "See %sPiwik documentation%s."
573
+ msgstr ""
574
+
575
+ #: classes/WP_Piwik/Admin/Settings.php:236
576
+ msgid "Track search"
577
+ msgstr ""
578
+
579
+ #: classes/WP_Piwik/Admin/Settings.php:236
580
+ msgid "Use Piwik's advanced Site Search Analytics feature."
581
+ msgstr ""
582
+
583
+ #: classes/WP_Piwik/Admin/Settings.php:238
584
+ msgid "Track 404"
585
+ msgstr ""
586
+
587
+ #: classes/WP_Piwik/Admin/Settings.php:238
588
+ msgid ""
589
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
590
+ msgstr ""
591
+
592
+ #: classes/WP_Piwik/Admin/Settings.php:241
593
+ msgid "Add annotation on new post of type"
594
+ msgstr ""
595
+
596
+ #: classes/WP_Piwik/Admin/Settings.php:247
597
+ msgid "Show custom variables box"
598
+ msgstr ""
599
+
600
+ #: classes/WP_Piwik/Admin/Settings.php:247
601
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
602
+ msgstr ""
603
+
604
+ #: classes/WP_Piwik/Admin/Settings.php:249
605
+ msgid "Add new file types for download tracking"
606
+ msgstr ""
607
+
608
+ #: classes/WP_Piwik/Admin/Settings.php:249
609
+ msgid ""
610
+ "Add file extensions for download tracking, divided by a vertical bar "
611
+ "(&#124;)."
612
+ msgstr ""
613
+
614
+ #: classes/WP_Piwik/Admin/Settings.php:251
615
+ msgid "Disable cookies"
616
+ msgstr ""
617
+
618
+ #: classes/WP_Piwik/Admin/Settings.php:251
619
+ msgid "Disable all tracking cookies for a visitor."
620
+ msgstr ""
621
+
622
+ #: classes/WP_Piwik/Admin/Settings.php:253
623
+ msgid "Limit cookie lifetime"
624
+ msgstr ""
625
+
626
+ #: classes/WP_Piwik/Admin/Settings.php:253
627
+ msgid ""
628
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
629
+ " period as necessary."
630
+ msgstr ""
631
+
632
+ #: classes/WP_Piwik/Admin/Settings.php:255
633
+ msgid "Visitor timeout (seconds)"
634
+ msgstr ""
635
+
636
+ #: classes/WP_Piwik/Admin/Settings.php:257
637
+ msgid "Session timeout (seconds)"
638
+ msgstr ""
639
+
640
+ #: classes/WP_Piwik/Admin/Settings.php:259
641
+ msgid "Referral timeout (seconds)"
642
+ msgstr ""
643
+
644
+ #: classes/WP_Piwik/Admin/Settings.php:261
645
+ msgid "Track admin pages"
646
+ msgstr ""
647
+
648
+ #: classes/WP_Piwik/Admin/Settings.php:261
649
+ msgid ""
650
+ "Enable to track users on admin pages (remember to configure the tracking "
651
+ "filter appropriately)."
652
+ msgstr ""
653
+
654
+ #: classes/WP_Piwik/Admin/Settings.php:264
655
+ msgid "Tracking filter"
656
+ msgstr "Следящий фильтр"
657
+
658
+ #: classes/WP_Piwik/Admin/Settings.php:268
659
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
660
+ msgstr ""
661
+
662
+ #: classes/WP_Piwik/Admin/Settings.php:270
663
+ msgid "Track subdomains in the same website"
664
+ msgstr ""
665
+
666
+ #: classes/WP_Piwik/Admin/Settings.php:270
667
+ msgid "Adds *.-prefix to cookie domain."
668
+ msgstr ""
669
+
670
+ #: classes/WP_Piwik/Admin/Settings.php:272
671
+ msgid "Do not count subdomains as outlink"
672
+ msgstr ""
673
+
674
+ #: classes/WP_Piwik/Admin/Settings.php:272
675
+ msgid "Adds *.-prefix to tracked domain."
676
+ msgstr ""
677
+
678
+ #: classes/WP_Piwik/Admin/Settings.php:274
679
+ msgid "Enable cross domain linking"
680
+ msgstr ""
681
+
682
+ #: classes/WP_Piwik/Admin/Settings.php:274
683
+ msgid ""
684
+ "When enabled, it will make sure to use the same visitor ID for the same "
685
+ "visitor across several domains. This works only when this feature is enabled"
686
+ " because the visitor ID is stored in a cookie and cannot be read on the "
687
+ "other domain by default. When this feature is enabled, it will append a URL "
688
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
689
+ "URL that belongs to one of your domains. For this feature to work, you also "
690
+ "have to configure which domains should be treated as local in your Piwik "
691
+ "website settings. This feature requires Piwik 3.0.2."
692
+ msgstr ""
693
+
694
+ #: classes/WP_Piwik/Admin/Settings.php:276
695
+ msgid "Track RSS feeds"
696
+ msgstr ""
697
+
698
+ #: classes/WP_Piwik/Admin/Settings.php:276
699
+ msgid "Enable to track posts in feeds via tracking pixel."
700
+ msgstr ""
701
+
702
+ #: classes/WP_Piwik/Admin/Settings.php:278
703
+ msgid "Track RSS feed links as campaign"
704
+ msgstr ""
705
+
706
+ #: classes/WP_Piwik/Admin/Settings.php:278
707
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
708
+ msgstr ""
709
+
710
+ #: classes/WP_Piwik/Admin/Settings.php:280
711
+ msgid "RSS feed campaign"
712
+ msgstr ""
713
+
714
+ #: classes/WP_Piwik/Admin/Settings.php:280
715
+ msgid "Keyword: post name."
716
+ msgstr ""
717
+
718
+ #: classes/WP_Piwik/Admin/Settings.php:282
719
+ msgid "Enable heartbeat timer"
720
+ msgstr ""
721
+
722
+ #: classes/WP_Piwik/Admin/Settings.php:282
723
+ msgid ""
724
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
725
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
726
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
727
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
728
+ "HTTP requests on your site."
729
+ msgstr ""
730
+
731
+ #: classes/WP_Piwik/Admin/Settings.php:284
732
+ msgid "User ID Tracking"
733
+ msgstr ""
734
+
735
+ #: classes/WP_Piwik/Admin/Settings.php:286
736
+ msgid "WP User ID"
737
+ msgstr ""
738
+
739
+ #: classes/WP_Piwik/Admin/Settings.php:287
740
+ msgid "Email Address"
741
+ msgstr ""
742
+
743
+ #: classes/WP_Piwik/Admin/Settings.php:288
744
+ msgid "Username"
745
+ msgstr ""
746
+
747
+ #: classes/WP_Piwik/Admin/Settings.php:289
748
+ msgid "Display Name (Not Recommended!)"
749
+ msgstr ""
750
+
751
+ #: classes/WP_Piwik/Admin/Settings.php:290
752
+ msgid ""
753
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
754
+ "can select which field from the User's profile is tracked as the &quot;User "
755
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
756
+ msgstr ""
757
+
758
+ #: classes/WP_Piwik/Admin/Settings.php:295
759
+ msgid ""
760
+ "Usually, you do not need to change these settings. If you want to do so, you"
761
+ " should know what you do or you got an expert's advice."
762
+ msgstr ""
763
+
764
+ #: classes/WP_Piwik/Admin/Settings.php:297
765
+ msgid "Enable cache"
766
+ msgstr ""
767
+
768
+ #: classes/WP_Piwik/Admin/Settings.php:297
769
+ msgid "Cache API calls, which not contain today's values, for a week."
770
+ msgstr ""
771
+
772
+ #: classes/WP_Piwik/Admin/Settings.php:300
773
+ msgid "HTTP connection via"
774
+ msgstr ""
775
+
776
+ #: classes/WP_Piwik/Admin/Settings.php:301
777
+ #: classes/WP_Piwik/Admin/Settings.php:590
778
+ msgid "cURL"
779
+ msgstr ""
780
+
781
+ #: classes/WP_Piwik/Admin/Settings.php:302
782
+ #: classes/WP_Piwik/Admin/Settings.php:590
783
+ msgid "fopen"
784
+ msgstr ""
785
+
786
+ #: classes/WP_Piwik/Admin/Settings.php:303
787
+ msgid ""
788
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
789
+ " or Cloud mode."
790
+ msgstr ""
791
+
792
+ #: classes/WP_Piwik/Admin/Settings.php:305
793
+ msgid "HTTP method"
794
+ msgstr ""
795
+
796
+ #: classes/WP_Piwik/Admin/Settings.php:306
797
+ #: classes/WP_Piwik/Admin/Settings.php:590
798
+ msgid "POST"
799
+ msgstr ""
800
+
801
+ #: classes/WP_Piwik/Admin/Settings.php:307
802
+ #: classes/WP_Piwik/Admin/Settings.php:590
803
+ msgid "GET"
804
+ msgstr ""
805
+
806
+ #: classes/WP_Piwik/Admin/Settings.php:308
807
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
808
+ msgstr ""
809
+
810
+ #: classes/WP_Piwik/Admin/Settings.php:310
811
+ msgid "Disable time limit"
812
+ msgstr ""
813
+
814
+ #: classes/WP_Piwik/Admin/Settings.php:310
815
+ msgid "Use set_time_limit(0) if stats page causes a time out."
816
+ msgstr ""
817
+
818
+ #: classes/WP_Piwik/Admin/Settings.php:312
819
+ msgid "Connection timeout"
820
+ msgstr ""
821
+
822
+ #: classes/WP_Piwik/Admin/Settings.php:314
823
+ msgid "Disable SSL peer verification"
824
+ msgstr ""
825
+
826
+ #: classes/WP_Piwik/Admin/Settings.php:314
827
+ #: classes/WP_Piwik/Admin/Settings.php:315
828
+ msgid "not recommended"
829
+ msgstr ""
830
+
831
+ #: classes/WP_Piwik/Admin/Settings.php:315
832
+ msgid "Disable SSL host verification"
833
+ msgstr ""
834
+
835
+ #: classes/WP_Piwik/Admin/Settings.php:317
836
+ msgid "User agent"
837
+ msgstr ""
838
+
839
+ #: classes/WP_Piwik/Admin/Settings.php:318
840
+ msgid "Use the PHP default user agent"
841
+ msgstr ""
842
+
843
+ #: classes/WP_Piwik/Admin/Settings.php:318
844
+ msgid "empty"
845
+ msgstr ""
846
+
847
+ #: classes/WP_Piwik/Admin/Settings.php:319
848
+ msgid "Define a specific user agent"
849
+ msgstr ""
850
+
851
+ #: classes/WP_Piwik/Admin/Settings.php:321
852
+ msgid "Specific user agent"
853
+ msgstr ""
854
+
855
+ #: classes/WP_Piwik/Admin/Settings.php:323
856
+ msgid "Enable DNS prefetch"
857
+ msgstr ""
858
+
859
+ #: classes/WP_Piwik/Admin/Settings.php:323
860
+ #, php-format
861
+ msgid "See %sPiwik Blog%s."
862
+ msgstr ""
863
+
864
+ #: classes/WP_Piwik/Admin/Settings.php:323
865
+ msgid "Add a DNS prefetch tag. "
866
+ msgstr ""
867
+
868
+ #: classes/WP_Piwik/Admin/Settings.php:325
869
+ msgid "Add data-cfasync=false"
870
+ msgstr ""
871
+
872
+ #: classes/WP_Piwik/Admin/Settings.php:325
873
+ #, php-format
874
+ msgid "See %sCloudFlare Knowledge Base%s."
875
+ msgstr ""
876
+
877
+ #: classes/WP_Piwik/Admin/Settings.php:325
878
+ msgid ""
879
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
880
+ "ignore the script. "
881
+ msgstr ""
882
+
883
+ #: classes/WP_Piwik/Admin/Settings.php:327
884
+ msgid "CDN URL"
885
+ msgstr ""
886
+
887
+ #: classes/WP_Piwik/Admin/Settings.php:329
888
+ msgid "CDN URL (SSL)"
889
+ msgstr ""
890
+
891
+ #: classes/WP_Piwik/Admin/Settings.php:331
892
+ msgid "Force Piwik to use a specific protocol"
893
+ msgstr ""
894
+
895
+ #: classes/WP_Piwik/Admin/Settings.php:332
896
+ msgid "Disabled (default)"
897
+ msgstr ""
898
+
899
+ #: classes/WP_Piwik/Admin/Settings.php:333
900
+ msgid "http"
901
+ msgstr ""
902
+
903
+ #: classes/WP_Piwik/Admin/Settings.php:334
904
+ msgid "https (SSL)"
905
+ msgstr ""
906
+
907
+ #: classes/WP_Piwik/Admin/Settings.php:335
908
+ msgid ""
909
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
910
+ "work with a CDN URL."
911
+ msgstr ""
912
+
913
+ #: classes/WP_Piwik/Admin/Settings.php:337
914
+ msgid "Update notice"
915
+ msgstr ""
916
+
917
+ #: classes/WP_Piwik/Admin/Settings.php:338
918
+ msgid "Show always if WP-Piwik is updated"
919
+ msgstr ""
920
+
921
+ #: classes/WP_Piwik/Admin/Settings.php:339
922
+ msgid "Show only if WP-Piwik is updated and settings were changed"
923
+ msgstr ""
924
+
925
+ #: classes/WP_Piwik/Admin/Settings.php:341
926
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
927
+ msgstr ""
928
+
929
+ #: classes/WP_Piwik/Admin/Settings.php:343
930
+ msgid "Define all file types for download tracking"
931
+ msgstr ""
932
+
933
+ #: classes/WP_Piwik/Admin/Settings.php:343
934
+ msgid ""
935
+ "Replace Piwik's default file extensions for download tracking, divided by a "
936
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
937
+ msgstr ""
938
+
939
+ #: classes/WP_Piwik/Admin/Settings.php:345
940
+ msgid "Set classes to be treated as downloads"
941
+ msgstr ""
942
+
943
+ #: classes/WP_Piwik/Admin/Settings.php:345
944
+ msgid ""
945
+ "Set classes to be treated as downloads (in addition to piwik_download), "
946
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
947
+ "settings."
948
+ msgstr ""
949
+
950
+ #: classes/WP_Piwik/Admin/Settings.php:345
951
+ #: classes/WP_Piwik/Admin/Settings.php:347
952
+ #, php-format
953
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
954
+ msgstr ""
955
+
956
+ #: classes/WP_Piwik/Admin/Settings.php:347
957
+ msgid "Set classes to be treated as outlinks"
958
+ msgstr ""
959
+
960
+ #: classes/WP_Piwik/Admin/Settings.php:347
961
+ msgid ""
962
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
963
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
964
+ msgstr ""
965
 
966
+ #: classes/WP_Piwik/Admin/Settings.php:508
967
+ msgid "Donate"
968
+ msgstr ""
 
969
 
970
+ #: classes/WP_Piwik/Admin/Settings.php:511
971
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
972
+ msgstr ""
973
+
974
+ #: classes/WP_Piwik/Admin/Settings.php:530
975
+ msgid "My Amazon.de wishlist"
976
+ msgstr ""
977
+
978
+ #: classes/WP_Piwik/Admin/Settings.php:533
979
+ #: classes/WP_Piwik/Admin/Settings.php:575
980
+ msgid "Please don't forget to vote the compatibility at the"
981
+ msgstr ""
982
+
983
+ #: classes/WP_Piwik/Admin/Settings.php:561
984
+ msgid "Thank you very much for your donation"
985
+ msgstr ""
986
+
987
+ #: classes/WP_Piwik/Admin/Settings.php:561
988
+ msgid "the Piwik team itself"
989
+ msgstr ""
990
+
991
+ #: classes/WP_Piwik/Admin/Settings.php:561
992
+ msgid ", and all people flattering this"
993
+ msgstr ""
994
+
995
+ #: classes/WP_Piwik/Admin/Settings.php:562
996
+ msgid ""
997
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
998
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
999
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1000
+ "Sparklines</a> (License: New BSD License)."
1001
+ msgstr ""
1002
+
1003
+ #: classes/WP_Piwik/Admin/Settings.php:563
1004
+ msgid "Thank you very much"
1005
+ msgstr ""
1006
+
1007
+ #: classes/WP_Piwik/Admin/Settings.php:563
1008
+ msgid "for your translation work"
1009
+ msgstr ""
1010
+
1011
+ #: classes/WP_Piwik/Admin/Settings.php:564
1012
+ msgid ""
1013
+ "Thank you very much, all users who send me mails containing criticism, "
1014
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1015
+ " much better."
1016
+ msgstr ""
1017
+
1018
+ #: classes/WP_Piwik/Admin/Settings.php:565
1019
+ msgid ""
1020
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1021
+ "if my piece of code is really used!"
1022
+ msgstr ""
1023
+
1024
+ #: classes/WP_Piwik/Admin/Settings.php:574
1025
+ msgid "The best place to get help:"
1026
+ msgstr ""
1027
+
1028
+ #: classes/WP_Piwik/Admin/Settings.php:574
1029
+ msgid "WP-Piwik support forum"
1030
+ msgstr ""
1031
+
1032
+ #: classes/WP_Piwik/Admin/Settings.php:577
1033
+ msgid "Debugging"
1034
+ msgstr ""
1035
+
1036
+ #: classes/WP_Piwik/Admin/Settings.php:578
1037
+ msgid ""
1038
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1039
+ "available:"
1040
+ msgstr ""
1041
+
1042
+ #: classes/WP_Piwik/Admin/Settings.php:581
1043
+ msgid "cURL is"
1044
+ msgstr ""
1045
+
1046
+ #: classes/WP_Piwik/Admin/Settings.php:582
1047
+ #: classes/WP_Piwik/Admin/Settings.php:587
1048
+ msgid "not"
1049
+ msgstr ""
1050
+
1051
+ #: classes/WP_Piwik/Admin/Settings.php:583
1052
+ msgid "available"
1053
+ msgstr ""
1054
+
1055
+ #: classes/WP_Piwik/Admin/Settings.php:586
1056
+ msgid "allow_url_fopen is"
1057
+ msgstr ""
1058
+
1059
+ #: classes/WP_Piwik/Admin/Settings.php:588
1060
+ msgid "enabled"
1061
+ msgstr ""
1062
+
1063
+ #: classes/WP_Piwik/Admin/Settings.php:590
1064
+ msgid "is used."
1065
+ msgstr ""
1066
+
1067
+ #: classes/WP_Piwik/Admin/Settings.php:592
1068
+ msgid "Determined Piwik base URL is"
1069
+ msgstr ""
1070
+
1071
+ #: classes/WP_Piwik/Admin/Settings.php:596
1072
+ msgid "Tools"
1073
+ msgstr ""
1074
+
1075
+ #: classes/WP_Piwik/Admin/Settings.php:598
1076
+ msgid "Run testscript"
1077
+ msgstr ""
1078
+
1079
+ #: classes/WP_Piwik/Admin/Settings.php:599
1080
+ msgid "Sitebrowser"
1081
+ msgstr ""
1082
+
1083
+ #: classes/WP_Piwik/Admin/Settings.php:600
1084
+ msgid "Clear cache"
1085
+ msgstr ""
1086
+
1087
+ #: classes/WP_Piwik/Admin/Settings.php:601
1088
+ msgid "Are you sure you want to clear all settings?"
1089
+ msgstr ""
1090
+
1091
+ #: classes/WP_Piwik/Admin/Settings.php:601
1092
+ msgid "Reset WP-Piwik"
1093
+ msgstr ""
1094
 
1095
+ #: classes/WP_Piwik/Admin/Settings.php:603
1096
+ msgid "Latest support threads on WordPress.org"
1097
+ msgstr ""
1098
+
1099
+ #: classes/WP_Piwik/Admin/Settings.php:654
1100
+ msgid "Settings cleared (except connection settings)."
1101
+ msgstr ""
1102
+
1103
+ #: classes/WP_Piwik/Admin/Settings.php:670
1104
+ msgid "Cache cleared."
1105
+ msgstr ""
1106
+
1107
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1108
+ msgid "site"
1109
+ msgstr ""
1110
+
1111
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1112
+ msgid "sites"
1113
+ msgstr ""
1114
+
1115
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1116
+ msgid "No site configured yet."
1117
+ msgstr ""
1118
+
1119
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1120
+ msgid "Blog ID"
1121
+ msgstr ""
1122
+
1123
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1124
+ msgid "Title"
1125
+ msgstr ""
1126
+
1127
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1128
+ msgid "URL"
1129
+ msgstr ""
1130
+
1131
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1132
+ msgid "Site ID (Piwik)"
1133
+ msgstr ""
1134
+
1135
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1136
+ msgid "Site not created yet."
1137
+ msgstr ""
1138
+
1139
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1140
+ msgid "Statistics"
1141
+ msgstr ""
1142
+
1143
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1144
+ msgid "Currently shown stats:"
1145
+ msgstr ""
1146
+
1147
+ #: classes/WP_Piwik/Request/Php.php:27
1148
+ msgid "Could not resolve"
1149
+ msgstr ""
1150
+
1151
+ #: classes/WP_Piwik/Request/Php.php:27
1152
+ msgid "realpath() returns false"
1153
+ msgstr ""
1154
+
1155
+ #: classes/WP_Piwik/Request/Php.php:39
1156
+ msgid "Class Piwik\\FrontController does not exists."
1157
+ msgstr ""
1158
+
1159
+ #: classes/WP_Piwik/Request/Php.php:42
1160
+ msgid "Class Piwik\\API\\Request does not exists."
1161
+ msgstr ""
1162
+
1163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1164
+ msgid "Piwik Custom Variables"
1165
+ msgstr ""
1166
+
1167
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1168
+ msgid "Name"
1169
+ msgstr ""
1170
+
1171
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1172
+ msgid "Value"
1173
+ msgstr ""
1174
+
1175
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1176
+ msgid "Set custom variables for a page view"
1177
+ msgstr ""
1178
+
1179
+ #: classes/WP_Piwik/Widget.php:91
1180
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1181
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1182
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1183
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1184
+ #: classes/WP_Piwik/Widget/Items.php:23
1185
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1186
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1187
+ #: classes/WP_Piwik/Widget/Overview.php:24
1188
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1189
+ #: classes/WP_Piwik/Widget/Screens.php:35
1190
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1191
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1192
+ #: classes/WP_Piwik/Widget/Systems.php:33
1193
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1194
+ msgid "Piwik error"
1195
+ msgstr ""
1196
 
1197
+ #: classes/WP_Piwik/Widget.php:100
1198
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1199
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1200
+ #: classes/WP_Piwik/Widget/Country.php:39
1201
+ #: classes/WP_Piwik/Widget/Screens.php:37
1202
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1203
+ #: classes/WP_Piwik/Widget/Systems.php:35
1204
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1205
  msgid "Unique"
1206
  msgstr "Уникальность"
1207
 
1208
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1209
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1210
+ msgid "Visits"
1211
+ msgstr "Визитов"
1212
+
1213
+ #: classes/WP_Piwik/Widget.php:104
1214
+ msgid "Hits"
1215
+ msgstr ""
1216
+
1217
+ #: classes/WP_Piwik/Widget.php:106
1218
+ msgid "Actions"
1219
+ msgstr ""
1220
+
1221
+ #: classes/WP_Piwik/Widget.php:162
1222
+ msgid "No data available."
1223
+ msgstr ""
1224
+
1225
+ #: classes/WP_Piwik/Widget.php:243
1226
+ msgid "today"
1227
+ msgstr ""
1228
+
1229
+ #: classes/WP_Piwik/Widget.php:248
1230
+ msgid "current month"
1231
+ msgstr ""
1232
+
1233
+ #: classes/WP_Piwik/Widget.php:253
1234
+ msgid "last month"
1235
+ msgstr ""
1236
+
1237
+ #: classes/WP_Piwik/Widget.php:258
1238
+ msgid "current week"
1239
+ msgstr ""
1240
+
1241
+ #: classes/WP_Piwik/Widget.php:263
1242
+ msgid "last week"
1243
+ msgstr ""
1244
+
1245
+ #: classes/WP_Piwik/Widget.php:268
1246
+ msgid "yesterday"
1247
+ msgstr ""
1248
+
1249
+ #: classes/WP_Piwik/Widget.php:293
1250
+ msgid "week"
1251
+ msgstr ""
1252
+
1253
+ #: classes/WP_Piwik/Widget.php:328
1254
+ msgid "last 30 days"
1255
+ msgstr ""
1256
+
1257
+ #: classes/WP_Piwik/Widget.php:330
1258
+ msgid "last 12 "
1259
+ msgstr ""
1260
+
1261
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1262
+ msgid "Browser Details"
1263
+ msgstr ""
1264
+
1265
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1266
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1267
+ msgid "Browser"
1268
+ msgstr "Браузер"
1269
+
1270
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1271
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1272
+ #: classes/WP_Piwik/Widget/Country.php:39
1273
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1274
+ #: classes/WP_Piwik/Widget/Screens.php:37
1275
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1276
+ #: classes/WP_Piwik/Widget/Systems.php:35
1277
  msgid "Percent"
1278
  msgstr "Процентов"
1279
 
1280
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1281
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1282
+ #: classes/WP_Piwik/Widget/Country.php:66
1283
+ #: classes/WP_Piwik/Widget/Screens.php:64
1284
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1285
+ #: classes/WP_Piwik/Widget/Systems.php:62
1286
+ msgid "Others"
1287
+ msgstr ""
1288
 
1289
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1290
+ msgid "Browsers"
1291
+ msgstr ""
1292
 
1293
+ #: classes/WP_Piwik/Widget/Chart.php:19
1294
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1295
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1296
  msgid "Visitors"
1297
  msgstr "Посетителей"
1298
 
1299
+ #: classes/WP_Piwik/Widget/Chart.php:71
1300
+ msgid ""
1301
+ "The graph contains the values shown in the table below (visitors / unique / "
1302
+ "bounces). The red line shows a linear trendline (unique)."
1303
+ msgstr ""
1304
 
1305
+ #: classes/WP_Piwik/Widget/Country.php:18
1306
+ msgid "Countries"
1307
+ msgstr ""
1308
 
1309
+ #: classes/WP_Piwik/Widget/Country.php:39
1310
+ msgid "Country"
1311
+ msgstr ""
1312
 
1313
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1314
+ msgid "E-Commerce"
1315
+ msgstr ""
1316
 
1317
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1318
+ msgid "Conversions"
1319
+ msgstr ""
1320
 
1321
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1322
+ msgid "Visits converted"
1323
+ msgstr ""
1324
 
1325
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1326
+ #: classes/WP_Piwik/Widget/Items.php:27
1327
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1328
+ msgid "Revenue"
1329
+ msgstr ""
1330
+
1331
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1332
+ #: classes/WP_Piwik/Widget/Items.php:32
1333
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1334
+ msgid "Conversion rate"
1335
+ msgstr ""
1336
+
1337
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1338
+ msgid "Conversions (new visitor)"
1339
+ msgstr ""
1340
+
1341
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1342
+ msgid "Visits converted (new visitor)"
1343
+ msgstr ""
1344
+
1345
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1346
+ msgid "Revenue (new visitor)"
1347
+ msgstr ""
1348
+
1349
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1350
+ msgid "Conversion rate (new visitor)"
1351
+ msgstr ""
1352
+
1353
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1354
+ msgid "Conversions (returning visitor)"
1355
+ msgstr ""
1356
+
1357
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1358
+ msgid "Visits converted (returning visitor)"
1359
+ msgstr ""
1360
+
1361
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1362
+ msgid "Revenue (returning visitor)"
1363
+ msgstr ""
1364
+
1365
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1366
+ msgid "Conversion rate (returning visitor)"
1367
+ msgstr ""
1368
+
1369
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1370
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1371
+ msgid "Shortcut"
1372
+ msgstr ""
1373
+
1374
+ #: classes/WP_Piwik/Widget/Items.php:11
1375
+ msgid "E-Commerce Items"
1376
+ msgstr ""
1377
+
1378
+ #: classes/WP_Piwik/Widget/Items.php:26
1379
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1380
+ msgid "Label"
1381
+ msgstr ""
1382
 
1383
+ #: classes/WP_Piwik/Widget/Items.php:28
1384
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1385
+ msgid "Quantity"
1386
+ msgstr ""
1387
+
1388
+ #: classes/WP_Piwik/Widget/Items.php:29
1389
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1390
+ msgid "Orders"
1391
+ msgstr ""
1392
+
1393
+ #: classes/WP_Piwik/Widget/Items.php:30
1394
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1395
+ msgid "Avg. price"
1396
+ msgstr ""
1397
+
1398
+ #: classes/WP_Piwik/Widget/Items.php:31
1399
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1400
+ msgid "Avg. quantity"
1401
+ msgstr ""
1402
+
1403
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1404
+ msgid "E-Commerce Item Categories"
1405
+ msgstr ""
1406
+
1407
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1408
+ msgid "Keywords"
1409
+ msgstr "Ключевые слова"
1410
+
1411
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1412
+ #: classes/WP_Piwik/Widget/Search.php:16
1413
+ msgid "Site Search"
1414
+ msgstr ""
1415
+
1416
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1417
+ #: classes/WP_Piwik/Widget/Search.php:25
1418
+ msgid "Keyword"
1419
+ msgstr "Ключевое слово"
1420
+
1421
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1422
+ #: classes/WP_Piwik/Widget/Search.php:25
1423
+ msgid "Requests"
1424
+ msgstr ""
1425
+
1426
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1427
+ #: classes/WP_Piwik/Widget/Search.php:25
1428
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1429
  msgid "Bounced"
1430
  msgstr "Отказов"
1431
 
1432
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1433
+ msgid "Overview"
1434
+ msgstr "Описание"
1435
 
1436
+ #: classes/WP_Piwik/Widget/Overview.php:17
1437
+ msgid "dashboard"
1438
+ msgstr ""
1439
 
1440
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1441
+ msgid "Unique visitors"
1442
+ msgstr "Уникальных посетителей"
 
1443
 
1444
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1445
+ msgid "Page views"
1446
+ msgstr "Просмотров страницы"
 
 
1447
 
1448
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1449
+ msgid "Total time spent"
1450
+ msgstr ""
 
1451
 
1452
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1453
+ msgid "Bounce count"
1454
+ msgstr "Количество отказов"
1455
 
1456
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1457
+ msgid "Time/visit"
1458
+ msgstr ""
1459
 
1460
+ #: classes/WP_Piwik/Widget/Overview.php:57
1461
+ msgid "Max. page views in one visit"
1462
+ msgstr "Макс. страниц просмтрено за один визит"
1463
 
1464
+ #: classes/WP_Piwik/Widget/Pages.php:16
1465
+ msgid "Pages"
1466
+ msgstr ""
1467
 
1468
+ #: classes/WP_Piwik/Widget/Pages.php:18
1469
+ msgid "Page"
1470
+ msgstr ""
1471
 
1472
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1473
+ msgid "Plugins"
1474
+ msgstr ""
1475
 
1476
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1477
+ msgid "Plugin"
1478
+ msgstr ""
 
1479
 
1480
+ #: classes/WP_Piwik/Widget/Post.php:43
1481
+ msgid "Min. generation time"
1482
+ msgstr ""
1483
 
1484
+ #: classes/WP_Piwik/Widget/Post.php:44
1485
+ msgid "Max. generation time"
1486
+ msgstr ""
1487
 
1488
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1489
+ msgid "Referrers"
1490
+ msgstr ""
1491
 
1492
+ #: classes/WP_Piwik/Widget/Screens.php:16
1493
+ msgid "Resolutions"
1494
+ msgstr ""
1495
 
1496
+ #: classes/WP_Piwik/Widget/Screens.php:37
1497
+ msgid "Resolution"
1498
+ msgstr "Разрешение"
1499
 
1500
+ #: classes/WP_Piwik/Widget/Seo.php:13
1501
+ msgid "SEO"
1502
+ msgstr ""
1503
 
1504
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1505
+ msgid "Operation System Details"
1506
+ msgstr ""
1507
 
1508
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1509
+ #: classes/WP_Piwik/Widget/Systems.php:35
1510
+ msgid "Operation System"
1511
+ msgstr ""
1512
 
1513
+ #: classes/WP_Piwik/Widget/Systems.php:14
1514
+ msgid "Operation Systems"
1515
+ msgstr ""
1516
 
1517
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1518
+ msgid "Date"
1519
+ msgstr "Дата"
1520
 
1521
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1522
+ msgid "Page Views"
1523
+ msgstr ""
1524
 
1525
+ #: wp-piwik.php:60
1526
+ #, php-format
1527
+ msgid ""
1528
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1529
+ " Please update PHP to use WP-Piwik."
1530
+ msgstr ""
languages/wp-piwik-cs_CZ.mo ADDED
Binary file
languages/wp-piwik-cs_CZ.po ADDED
@@ -0,0 +1,1528 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WP-Piwik\n"
6
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
7
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
8
+ "Last-Translator: André Bräkling\n"
9
+ "Language-Team: Czech (Czech Republic) (http://www.transifex.com/piwik/wp-piwik/language/cs_CZ/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: cs_CZ\n"
14
+ "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
15
+
16
+ #: classes/WP_Piwik.php:203
17
+ #, php-format
18
+ msgid "%s %s installed."
19
+ msgstr ""
20
+
21
+ #: classes/WP_Piwik.php:203
22
+ msgid "Next you should connect to Piwik"
23
+ msgstr ""
24
+
25
+ #: classes/WP_Piwik.php:237
26
+ #, php-format
27
+ msgid "%s updated to %s."
28
+ msgstr ""
29
+
30
+ #: classes/WP_Piwik.php:237
31
+ msgid "Please validate your configuration"
32
+ msgstr ""
33
+
34
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
35
+ msgid "Settings"
36
+ msgstr ""
37
+
38
+ #: classes/WP_Piwik.php:272
39
+ msgid "Important"
40
+ msgstr ""
41
+
42
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
43
+ msgid "Piwik Statistics"
44
+ msgstr ""
45
+
46
+ #: classes/WP_Piwik.php:499
47
+ msgid "Configure WP-Piwik"
48
+ msgstr ""
49
+
50
+ #: classes/WP_Piwik.php:992
51
+ msgid "An error occured"
52
+ msgstr ""
53
+
54
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
55
+ msgid "Support"
56
+ msgstr ""
57
+
58
+ #: classes/WP_Piwik.php:1275
59
+ msgid "Cheatin&#8217; uh?"
60
+ msgstr ""
61
+
62
+ #: classes/WP_Piwik/Admin/Settings.php:24
63
+ msgid "Reload"
64
+ msgstr ""
65
+
66
+ #: classes/WP_Piwik/Admin/Settings.php:27
67
+ msgid "Changes saved."
68
+ msgstr ""
69
+
70
+ #: classes/WP_Piwik/Admin/Settings.php:55
71
+ msgid "Thanks for using WP-Piwik!"
72
+ msgstr ""
73
+
74
+ #: classes/WP_Piwik/Admin/Settings.php:58
75
+ #, php-format
76
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
77
+ msgstr ""
78
+
79
+ #: classes/WP_Piwik/Admin/Settings.php:58
80
+ #, php-format
81
+ msgid "You are running WordPress %s."
82
+ msgstr ""
83
+
84
+ #: classes/WP_Piwik/Admin/Settings.php:58
85
+ #, php-format
86
+ msgid ""
87
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
88
+ "your sites as different websites."
89
+ msgstr ""
90
+
91
+ #: classes/WP_Piwik/Admin/Settings.php:62
92
+ #, php-format
93
+ msgid ""
94
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
95
+ " the &raquo;Connect to Piwik&laquo; section below."
96
+ msgstr ""
97
+
98
+ #: classes/WP_Piwik/Admin/Settings.php:64
99
+ #, php-format
100
+ msgid ""
101
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
102
+ "During connection the following error occured: <br /><code>%s</code>"
103
+ msgstr ""
104
+
105
+ #: classes/WP_Piwik/Admin/Settings.php:67
106
+ #, php-format
107
+ msgid ""
108
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
109
+ "Piwik&laquo; section below."
110
+ msgstr ""
111
+
112
+ #: classes/WP_Piwik/Admin/Settings.php:71
113
+ msgid "Connect to Piwik"
114
+ msgstr ""
115
+
116
+ #: classes/WP_Piwik/Admin/Settings.php:76
117
+ msgid "Show Statistics"
118
+ msgstr ""
119
+
120
+ #: classes/WP_Piwik/Admin/Settings.php:80
121
+ msgid "Enable Tracking"
122
+ msgstr ""
123
+
124
+ #: classes/WP_Piwik/Admin/Settings.php:85
125
+ msgid "Expert Settings"
126
+ msgstr ""
127
+
128
+ #: classes/WP_Piwik/Admin/Settings.php:93
129
+ msgid "Credits"
130
+ msgstr ""
131
+
132
+ #: classes/WP_Piwik/Admin/Settings.php:106
133
+ msgid ""
134
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
135
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
136
+ " To use this you will need your own Piwik instance. If you do not already "
137
+ "have a Piwik setup, you have two simple options: use either"
138
+ msgstr ""
139
+
140
+ #: classes/WP_Piwik/Admin/Settings.php:106
141
+ msgid "a self-hosted Piwik"
142
+ msgstr ""
143
+
144
+ #: classes/WP_Piwik/Admin/Settings.php:106
145
+ msgid "or"
146
+ msgstr ""
147
+
148
+ #: classes/WP_Piwik/Admin/Settings.php:106
149
+ msgid "a cloud-hosted Piwik by InnoCraft"
150
+ msgstr ""
151
+
152
+ #: classes/WP_Piwik/Admin/Settings.php:109
153
+ msgid ""
154
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
155
+ "and not connect to InnoCraft Cloud."
156
+ msgstr ""
157
+
158
+ #: classes/WP_Piwik/Admin/Settings.php:109
159
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
160
+ msgid "More information"
161
+ msgstr ""
162
+
163
+ #: classes/WP_Piwik/Admin/Settings.php:111
164
+ msgid "You can choose between three connection methods:"
165
+ msgstr ""
166
+
167
+ #: classes/WP_Piwik/Admin/Settings.php:111
168
+ #: classes/WP_Piwik/Admin/Settings.php:114
169
+ msgid "Self-hosted (HTTP API, default)"
170
+ msgstr ""
171
+
172
+ #: classes/WP_Piwik/Admin/Settings.php:111
173
+ msgid ""
174
+ "This is the default option for a self-hosted Piwik and should work for most "
175
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
176
+ msgstr ""
177
+
178
+ #: classes/WP_Piwik/Admin/Settings.php:111
179
+ #: classes/WP_Piwik/Admin/Settings.php:115
180
+ msgid "Self-hosted (PHP API)"
181
+ msgstr ""
182
+
183
+ #: classes/WP_Piwik/Admin/Settings.php:111
184
+ msgid ""
185
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
186
+ " machine and you know the full server path to your Piwik instance."
187
+ msgstr ""
188
+
189
+ #: classes/WP_Piwik/Admin/Settings.php:111
190
+ #: classes/WP_Piwik/Admin/Settings.php:116
191
+ msgid "Cloud-hosted (InnoCraft Cloud)"
192
+ msgstr ""
193
+
194
+ #: classes/WP_Piwik/Admin/Settings.php:111
195
+ msgid ""
196
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
197
+ "option."
198
+ msgstr ""
199
+
200
+ #: classes/WP_Piwik/Admin/Settings.php:112
201
+ msgid "Piwik Mode"
202
+ msgstr ""
203
+
204
+ #: classes/WP_Piwik/Admin/Settings.php:113
205
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
206
+ msgstr ""
207
+
208
+ #: classes/WP_Piwik/Admin/Settings.php:119
209
+ msgid "Piwik URL"
210
+ msgstr ""
211
+
212
+ #: classes/WP_Piwik/Admin/Settings.php:119
213
+ msgid ""
214
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
215
+ "instance, e.g. http://www.example.com/piwik/."
216
+ msgstr ""
217
+
218
+ #: classes/WP_Piwik/Admin/Settings.php:120
219
+ msgid "Piwik path"
220
+ msgstr ""
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:120
223
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
224
+ msgstr ""
225
+
226
+ #: classes/WP_Piwik/Admin/Settings.php:121
227
+ msgid "Piwik subdomain"
228
+ msgstr ""
229
+
230
+ #: classes/WP_Piwik/Admin/Settings.php:121
231
+ msgid ""
232
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
233
+ "https://SUBDOMAIN.innocraft.cloud."
234
+ msgstr ""
235
+
236
+ #: classes/WP_Piwik/Admin/Settings.php:122
237
+ msgid "Auth token"
238
+ msgstr ""
239
+
240
+ #: classes/WP_Piwik/Admin/Settings.php:122
241
+ msgid ""
242
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
243
+ "0a1b2c34d56e78901fa2bc3d45678efa."
244
+ msgstr ""
245
+
246
+ #: classes/WP_Piwik/Admin/Settings.php:122
247
+ #, php-format
248
+ msgid "See %sWP-Piwik FAQ%s."
249
+ msgstr ""
250
+
251
+ #: classes/WP_Piwik/Admin/Settings.php:127
252
+ msgid "Auto config"
253
+ msgstr ""
254
+
255
+ #: classes/WP_Piwik/Admin/Settings.php:127
256
+ msgid ""
257
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
258
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
259
+ msgstr ""
260
+
261
+ #: classes/WP_Piwik/Admin/Settings.php:131
262
+ #, php-format
263
+ msgid ""
264
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
265
+ "/><code>%s</code>"
266
+ msgstr ""
267
+
268
+ #: classes/WP_Piwik/Admin/Settings.php:141
269
+ msgid "Determined site"
270
+ msgstr ""
271
+
272
+ #: classes/WP_Piwik/Admin/Settings.php:146
273
+ msgid "Select site"
274
+ msgstr ""
275
+
276
+ #: classes/WP_Piwik/Admin/Settings.php:155
277
+ msgid "Piwik default date"
278
+ msgstr ""
279
+
280
+ #: classes/WP_Piwik/Admin/Settings.php:156
281
+ #: classes/WP_Piwik/Admin/Settings.php:170
282
+ msgid "Today"
283
+ msgstr ""
284
+
285
+ #: classes/WP_Piwik/Admin/Settings.php:157
286
+ #: classes/WP_Piwik/Admin/Settings.php:169
287
+ msgid "Yesterday"
288
+ msgstr ""
289
+
290
+ #: classes/WP_Piwik/Admin/Settings.php:158
291
+ msgid "Current month"
292
+ msgstr ""
293
+
294
+ #: classes/WP_Piwik/Admin/Settings.php:159
295
+ msgid "Last month"
296
+ msgstr ""
297
+
298
+ #: classes/WP_Piwik/Admin/Settings.php:160
299
+ msgid "Current week"
300
+ msgstr ""
301
+
302
+ #: classes/WP_Piwik/Admin/Settings.php:161
303
+ msgid "Last week"
304
+ msgstr ""
305
+
306
+ #: classes/WP_Piwik/Admin/Settings.php:162
307
+ msgid "Default date shown on statistics page."
308
+ msgstr ""
309
+
310
+ #: classes/WP_Piwik/Admin/Settings.php:164
311
+ msgid "Show SEO data"
312
+ msgstr ""
313
+
314
+ #: classes/WP_Piwik/Admin/Settings.php:164
315
+ msgid "Display SEO ranking data on statistics page."
316
+ msgstr ""
317
+
318
+ #: classes/WP_Piwik/Admin/Settings.php:164
319
+ #: classes/WP_Piwik/Admin/Settings.php:176
320
+ msgid "Slow!"
321
+ msgstr ""
322
+
323
+ #: classes/WP_Piwik/Admin/Settings.php:165
324
+ msgid "Show e-commerce data"
325
+ msgstr ""
326
+
327
+ #: classes/WP_Piwik/Admin/Settings.php:165
328
+ msgid "Display e-commerce data on statistics page."
329
+ msgstr ""
330
+
331
+ #: classes/WP_Piwik/Admin/Settings.php:167
332
+ msgid "Dashboard overview"
333
+ msgstr ""
334
+
335
+ #: classes/WP_Piwik/Admin/Settings.php:168
336
+ #: classes/WP_Piwik/Admin/Settings.php:208
337
+ #: classes/WP_Piwik/Admin/Settings.php:210
338
+ #: classes/WP_Piwik/Admin/Settings.php:231
339
+ #: classes/WP_Piwik/Admin/Settings.php:285
340
+ #: classes/WP_Piwik/Admin/Settings.php:340
341
+ msgid "Disabled"
342
+ msgstr ""
343
+
344
+ #: classes/WP_Piwik/Admin/Settings.php:171
345
+ msgid "Last 30 days"
346
+ msgstr ""
347
+
348
+ #: classes/WP_Piwik/Admin/Settings.php:172
349
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
350
+ msgstr ""
351
+
352
+ #: classes/WP_Piwik/Admin/Settings.php:174
353
+ msgid "Dashboard graph"
354
+ msgstr ""
355
+
356
+ #: classes/WP_Piwik/Admin/Settings.php:174
357
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
358
+ msgstr ""
359
+
360
+ #: classes/WP_Piwik/Admin/Settings.php:176
361
+ msgid "Dashboard SEO"
362
+ msgstr ""
363
+
364
+ #: classes/WP_Piwik/Admin/Settings.php:176
365
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
366
+ msgstr ""
367
+
368
+ #: classes/WP_Piwik/Admin/Settings.php:178
369
+ msgid "Dashboard e-commerce"
370
+ msgstr ""
371
+
372
+ #: classes/WP_Piwik/Admin/Settings.php:178
373
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
374
+ msgstr ""
375
+
376
+ #: classes/WP_Piwik/Admin/Settings.php:180
377
+ msgid "Show graph on WordPress Toolbar"
378
+ msgstr ""
379
+
380
+ #: classes/WP_Piwik/Admin/Settings.php:180
381
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
382
+ msgstr ""
383
+
384
+ #: classes/WP_Piwik/Admin/Settings.php:182
385
+ msgid "Display stats to"
386
+ msgstr ""
387
+
388
+ #: classes/WP_Piwik/Admin/Settings.php:189
389
+ msgid "Choose user roles allowed to see the statistics page."
390
+ msgstr ""
391
+
392
+ #: classes/WP_Piwik/Admin/Settings.php:191
393
+ msgid "Show per post stats"
394
+ msgstr ""
395
+
396
+ #: classes/WP_Piwik/Admin/Settings.php:191
397
+ msgid "Show stats about single posts at the post edit admin page."
398
+ msgstr ""
399
+
400
+ #: classes/WP_Piwik/Admin/Settings.php:193
401
+ msgid "Piwik shortcut"
402
+ msgstr ""
403
+
404
+ #: classes/WP_Piwik/Admin/Settings.php:193
405
+ msgid "Display a shortcut to Piwik itself."
406
+ msgstr ""
407
+
408
+ #: classes/WP_Piwik/Admin/Settings.php:195
409
+ msgid "WP-Piwik display name"
410
+ msgstr ""
411
+
412
+ #: classes/WP_Piwik/Admin/Settings.php:195
413
+ msgid "Plugin name shown in WordPress."
414
+ msgstr ""
415
+
416
+ #: classes/WP_Piwik/Admin/Settings.php:197
417
+ msgid "Enable shortcodes"
418
+ msgstr ""
419
+
420
+ #: classes/WP_Piwik/Admin/Settings.php:197
421
+ msgid "Enable shortcodes in post or page content."
422
+ msgstr ""
423
+
424
+ #: classes/WP_Piwik/Admin/Settings.php:208
425
+ msgid "You can choose between four tracking code modes:"
426
+ msgstr ""
427
+
428
+ #: classes/WP_Piwik/Admin/Settings.php:208
429
+ msgid ""
430
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
431
+ "tracking code to your template files or you use another plugin to add the "
432
+ "tracking code."
433
+ msgstr ""
434
+
435
+ #: classes/WP_Piwik/Admin/Settings.php:208
436
+ #: classes/WP_Piwik/Admin/Settings.php:211
437
+ msgid "Default tracking"
438
+ msgstr ""
439
+
440
+ #: classes/WP_Piwik/Admin/Settings.php:208
441
+ msgid "WP-Piwik will use Piwik's standard tracking code."
442
+ msgstr ""
443
+
444
+ #: classes/WP_Piwik/Admin/Settings.php:208
445
+ #: classes/WP_Piwik/Admin/Settings.php:212
446
+ msgid "Use js/index.php"
447
+ msgstr ""
448
+
449
+ #: classes/WP_Piwik/Admin/Settings.php:208
450
+ msgid ""
451
+ "You can choose this tracking code, to deliver a minified proxy code and to "
452
+ "avoid using the files called piwik.js or piwik.php."
453
+ msgstr ""
454
+
455
+ #: classes/WP_Piwik/Admin/Settings.php:208
456
+ #, php-format
457
+ msgid "See %sreadme file%s."
458
+ msgstr ""
459
+
460
+ #: classes/WP_Piwik/Admin/Settings.php:208
461
+ #: classes/WP_Piwik/Admin/Settings.php:213
462
+ msgid "Use proxy script"
463
+ msgstr ""
464
+
465
+ #: classes/WP_Piwik/Admin/Settings.php:208
466
+ msgid "Use this tracking code to not reveal the Piwik server URL."
467
+ msgstr ""
468
+
469
+ #: classes/WP_Piwik/Admin/Settings.php:208
470
+ #: classes/WP_Piwik/Admin/Settings.php:228
471
+ #: classes/WP_Piwik/Admin/Settings.php:238
472
+ #, php-format
473
+ msgid "See %sPiwik FAQ%s."
474
+ msgstr ""
475
+
476
+ #: classes/WP_Piwik/Admin/Settings.php:208
477
+ #: classes/WP_Piwik/Admin/Settings.php:214
478
+ msgid "Enter manually"
479
+ msgstr ""
480
+
481
+ #: classes/WP_Piwik/Admin/Settings.php:208
482
+ msgid ""
483
+ "Enter your own tracking code manually. You can choose one of the prior "
484
+ "options, pre-configure your tracking code and switch to manually editing at "
485
+ "last."
486
+ msgstr ""
487
+
488
+ #: classes/WP_Piwik/Admin/Settings.php:208
489
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
490
+ msgstr ""
491
+
492
+ #: classes/WP_Piwik/Admin/Settings.php:209
493
+ msgid "Add tracking code"
494
+ msgstr ""
495
+
496
+ #: classes/WP_Piwik/Admin/Settings.php:217
497
+ msgid "Tracking code"
498
+ msgstr ""
499
+
500
+ #: classes/WP_Piwik/Admin/Settings.php:219
501
+ msgid "JavaScript code position"
502
+ msgstr ""
503
+
504
+ #: classes/WP_Piwik/Admin/Settings.php:220
505
+ msgid "Footer"
506
+ msgstr ""
507
+
508
+ #: classes/WP_Piwik/Admin/Settings.php:221
509
+ msgid "Header"
510
+ msgstr ""
511
+
512
+ #: classes/WP_Piwik/Admin/Settings.php:222
513
+ msgid ""
514
+ "Choose whether the JavaScript code is added to the footer or the header."
515
+ msgstr ""
516
+
517
+ #: classes/WP_Piwik/Admin/Settings.php:224
518
+ msgid "Noscript code"
519
+ msgstr ""
520
+
521
+ #: classes/WP_Piwik/Admin/Settings.php:226
522
+ msgid "Add &lt;noscript&gt;"
523
+ msgstr ""
524
+
525
+ #: classes/WP_Piwik/Admin/Settings.php:226
526
+ msgid "Adds the &lt;noscript&gt; code to your footer."
527
+ msgstr ""
528
+
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
+ #: classes/WP_Piwik/Admin/Settings.php:228
531
+ msgid "Disabled in proxy mode."
532
+ msgstr ""
533
+
534
+ #: classes/WP_Piwik/Admin/Settings.php:228
535
+ msgid "Add rec parameter to noscript code"
536
+ msgstr ""
537
+
538
+ #: classes/WP_Piwik/Admin/Settings.php:228
539
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
540
+ msgstr ""
541
+
542
+ #: classes/WP_Piwik/Admin/Settings.php:230
543
+ msgid "Enable content tracking"
544
+ msgstr ""
545
+
546
+ #: classes/WP_Piwik/Admin/Settings.php:232
547
+ msgid "Track all content blocks"
548
+ msgstr ""
549
+
550
+ #: classes/WP_Piwik/Admin/Settings.php:233
551
+ msgid "Track only visible content blocks"
552
+ msgstr ""
553
+
554
+ #: classes/WP_Piwik/Admin/Settings.php:234
555
+ msgid ""
556
+ "Content tracking allows you to track interaction with the content of a web "
557
+ "page or application."
558
+ msgstr ""
559
+
560
+ #: classes/WP_Piwik/Admin/Settings.php:234
561
+ #: classes/WP_Piwik/Admin/Settings.php:236
562
+ #: classes/WP_Piwik/Admin/Settings.php:245
563
+ #: classes/WP_Piwik/Admin/Settings.php:247
564
+ #: classes/WP_Piwik/Admin/Settings.php:249
565
+ #: classes/WP_Piwik/Admin/Settings.php:270
566
+ #: classes/WP_Piwik/Admin/Settings.php:272
567
+ #: classes/WP_Piwik/Admin/Settings.php:278
568
+ #: classes/WP_Piwik/Admin/Settings.php:343
569
+ #, php-format
570
+ msgid "See %sPiwik documentation%s."
571
+ msgstr ""
572
+
573
+ #: classes/WP_Piwik/Admin/Settings.php:236
574
+ msgid "Track search"
575
+ msgstr ""
576
+
577
+ #: classes/WP_Piwik/Admin/Settings.php:236
578
+ msgid "Use Piwik's advanced Site Search Analytics feature."
579
+ msgstr ""
580
+
581
+ #: classes/WP_Piwik/Admin/Settings.php:238
582
+ msgid "Track 404"
583
+ msgstr ""
584
+
585
+ #: classes/WP_Piwik/Admin/Settings.php:238
586
+ msgid ""
587
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
588
+ msgstr ""
589
+
590
+ #: classes/WP_Piwik/Admin/Settings.php:241
591
+ msgid "Add annotation on new post of type"
592
+ msgstr ""
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:247
595
+ msgid "Show custom variables box"
596
+ msgstr ""
597
+
598
+ #: classes/WP_Piwik/Admin/Settings.php:247
599
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
600
+ msgstr ""
601
+
602
+ #: classes/WP_Piwik/Admin/Settings.php:249
603
+ msgid "Add new file types for download tracking"
604
+ msgstr ""
605
+
606
+ #: classes/WP_Piwik/Admin/Settings.php:249
607
+ msgid ""
608
+ "Add file extensions for download tracking, divided by a vertical bar "
609
+ "(&#124;)."
610
+ msgstr ""
611
+
612
+ #: classes/WP_Piwik/Admin/Settings.php:251
613
+ msgid "Disable cookies"
614
+ msgstr ""
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:251
617
+ msgid "Disable all tracking cookies for a visitor."
618
+ msgstr ""
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:253
621
+ msgid "Limit cookie lifetime"
622
+ msgstr ""
623
+
624
+ #: classes/WP_Piwik/Admin/Settings.php:253
625
+ msgid ""
626
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
627
+ " period as necessary."
628
+ msgstr ""
629
+
630
+ #: classes/WP_Piwik/Admin/Settings.php:255
631
+ msgid "Visitor timeout (seconds)"
632
+ msgstr ""
633
+
634
+ #: classes/WP_Piwik/Admin/Settings.php:257
635
+ msgid "Session timeout (seconds)"
636
+ msgstr ""
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:259
639
+ msgid "Referral timeout (seconds)"
640
+ msgstr ""
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:261
643
+ msgid "Track admin pages"
644
+ msgstr ""
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:261
647
+ msgid ""
648
+ "Enable to track users on admin pages (remember to configure the tracking "
649
+ "filter appropriately)."
650
+ msgstr ""
651
+
652
+ #: classes/WP_Piwik/Admin/Settings.php:264
653
+ msgid "Tracking filter"
654
+ msgstr ""
655
+
656
+ #: classes/WP_Piwik/Admin/Settings.php:268
657
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
658
+ msgstr ""
659
+
660
+ #: classes/WP_Piwik/Admin/Settings.php:270
661
+ msgid "Track subdomains in the same website"
662
+ msgstr ""
663
+
664
+ #: classes/WP_Piwik/Admin/Settings.php:270
665
+ msgid "Adds *.-prefix to cookie domain."
666
+ msgstr ""
667
+
668
+ #: classes/WP_Piwik/Admin/Settings.php:272
669
+ msgid "Do not count subdomains as outlink"
670
+ msgstr ""
671
+
672
+ #: classes/WP_Piwik/Admin/Settings.php:272
673
+ msgid "Adds *.-prefix to tracked domain."
674
+ msgstr ""
675
+
676
+ #: classes/WP_Piwik/Admin/Settings.php:274
677
+ msgid "Enable cross domain linking"
678
+ msgstr ""
679
+
680
+ #: classes/WP_Piwik/Admin/Settings.php:274
681
+ msgid ""
682
+ "When enabled, it will make sure to use the same visitor ID for the same "
683
+ "visitor across several domains. This works only when this feature is enabled"
684
+ " because the visitor ID is stored in a cookie and cannot be read on the "
685
+ "other domain by default. When this feature is enabled, it will append a URL "
686
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
687
+ "URL that belongs to one of your domains. For this feature to work, you also "
688
+ "have to configure which domains should be treated as local in your Piwik "
689
+ "website settings. This feature requires Piwik 3.0.2."
690
+ msgstr ""
691
+
692
+ #: classes/WP_Piwik/Admin/Settings.php:276
693
+ msgid "Track RSS feeds"
694
+ msgstr ""
695
+
696
+ #: classes/WP_Piwik/Admin/Settings.php:276
697
+ msgid "Enable to track posts in feeds via tracking pixel."
698
+ msgstr ""
699
+
700
+ #: classes/WP_Piwik/Admin/Settings.php:278
701
+ msgid "Track RSS feed links as campaign"
702
+ msgstr ""
703
+
704
+ #: classes/WP_Piwik/Admin/Settings.php:278
705
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
706
+ msgstr ""
707
+
708
+ #: classes/WP_Piwik/Admin/Settings.php:280
709
+ msgid "RSS feed campaign"
710
+ msgstr ""
711
+
712
+ #: classes/WP_Piwik/Admin/Settings.php:280
713
+ msgid "Keyword: post name."
714
+ msgstr ""
715
+
716
+ #: classes/WP_Piwik/Admin/Settings.php:282
717
+ msgid "Enable heartbeat timer"
718
+ msgstr ""
719
+
720
+ #: classes/WP_Piwik/Admin/Settings.php:282
721
+ msgid ""
722
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
723
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
724
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
725
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
726
+ "HTTP requests on your site."
727
+ msgstr ""
728
+
729
+ #: classes/WP_Piwik/Admin/Settings.php:284
730
+ msgid "User ID Tracking"
731
+ msgstr ""
732
+
733
+ #: classes/WP_Piwik/Admin/Settings.php:286
734
+ msgid "WP User ID"
735
+ msgstr ""
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:287
738
+ msgid "Email Address"
739
+ msgstr ""
740
+
741
+ #: classes/WP_Piwik/Admin/Settings.php:288
742
+ msgid "Username"
743
+ msgstr ""
744
+
745
+ #: classes/WP_Piwik/Admin/Settings.php:289
746
+ msgid "Display Name (Not Recommended!)"
747
+ msgstr ""
748
+
749
+ #: classes/WP_Piwik/Admin/Settings.php:290
750
+ msgid ""
751
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
752
+ "can select which field from the User's profile is tracked as the &quot;User "
753
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
754
+ msgstr ""
755
+
756
+ #: classes/WP_Piwik/Admin/Settings.php:295
757
+ msgid ""
758
+ "Usually, you do not need to change these settings. If you want to do so, you"
759
+ " should know what you do or you got an expert's advice."
760
+ msgstr ""
761
+
762
+ #: classes/WP_Piwik/Admin/Settings.php:297
763
+ msgid "Enable cache"
764
+ msgstr ""
765
+
766
+ #: classes/WP_Piwik/Admin/Settings.php:297
767
+ msgid "Cache API calls, which not contain today's values, for a week."
768
+ msgstr ""
769
+
770
+ #: classes/WP_Piwik/Admin/Settings.php:300
771
+ msgid "HTTP connection via"
772
+ msgstr ""
773
+
774
+ #: classes/WP_Piwik/Admin/Settings.php:301
775
+ #: classes/WP_Piwik/Admin/Settings.php:590
776
+ msgid "cURL"
777
+ msgstr ""
778
+
779
+ #: classes/WP_Piwik/Admin/Settings.php:302
780
+ #: classes/WP_Piwik/Admin/Settings.php:590
781
+ msgid "fopen"
782
+ msgstr ""
783
+
784
+ #: classes/WP_Piwik/Admin/Settings.php:303
785
+ msgid ""
786
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
787
+ " or Cloud mode."
788
+ msgstr ""
789
+
790
+ #: classes/WP_Piwik/Admin/Settings.php:305
791
+ msgid "HTTP method"
792
+ msgstr ""
793
+
794
+ #: classes/WP_Piwik/Admin/Settings.php:306
795
+ #: classes/WP_Piwik/Admin/Settings.php:590
796
+ msgid "POST"
797
+ msgstr ""
798
+
799
+ #: classes/WP_Piwik/Admin/Settings.php:307
800
+ #: classes/WP_Piwik/Admin/Settings.php:590
801
+ msgid "GET"
802
+ msgstr ""
803
+
804
+ #: classes/WP_Piwik/Admin/Settings.php:308
805
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
806
+ msgstr ""
807
+
808
+ #: classes/WP_Piwik/Admin/Settings.php:310
809
+ msgid "Disable time limit"
810
+ msgstr ""
811
+
812
+ #: classes/WP_Piwik/Admin/Settings.php:310
813
+ msgid "Use set_time_limit(0) if stats page causes a time out."
814
+ msgstr ""
815
+
816
+ #: classes/WP_Piwik/Admin/Settings.php:312
817
+ msgid "Connection timeout"
818
+ msgstr ""
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:314
821
+ msgid "Disable SSL peer verification"
822
+ msgstr ""
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:314
825
+ #: classes/WP_Piwik/Admin/Settings.php:315
826
+ msgid "not recommended"
827
+ msgstr ""
828
+
829
+ #: classes/WP_Piwik/Admin/Settings.php:315
830
+ msgid "Disable SSL host verification"
831
+ msgstr ""
832
+
833
+ #: classes/WP_Piwik/Admin/Settings.php:317
834
+ msgid "User agent"
835
+ msgstr ""
836
+
837
+ #: classes/WP_Piwik/Admin/Settings.php:318
838
+ msgid "Use the PHP default user agent"
839
+ msgstr ""
840
+
841
+ #: classes/WP_Piwik/Admin/Settings.php:318
842
+ msgid "empty"
843
+ msgstr ""
844
+
845
+ #: classes/WP_Piwik/Admin/Settings.php:319
846
+ msgid "Define a specific user agent"
847
+ msgstr ""
848
+
849
+ #: classes/WP_Piwik/Admin/Settings.php:321
850
+ msgid "Specific user agent"
851
+ msgstr ""
852
+
853
+ #: classes/WP_Piwik/Admin/Settings.php:323
854
+ msgid "Enable DNS prefetch"
855
+ msgstr ""
856
+
857
+ #: classes/WP_Piwik/Admin/Settings.php:323
858
+ #, php-format
859
+ msgid "See %sPiwik Blog%s."
860
+ msgstr ""
861
+
862
+ #: classes/WP_Piwik/Admin/Settings.php:323
863
+ msgid "Add a DNS prefetch tag. "
864
+ msgstr ""
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:325
867
+ msgid "Add data-cfasync=false"
868
+ msgstr ""
869
+
870
+ #: classes/WP_Piwik/Admin/Settings.php:325
871
+ #, php-format
872
+ msgid "See %sCloudFlare Knowledge Base%s."
873
+ msgstr ""
874
+
875
+ #: classes/WP_Piwik/Admin/Settings.php:325
876
+ msgid ""
877
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
878
+ "ignore the script. "
879
+ msgstr ""
880
+
881
+ #: classes/WP_Piwik/Admin/Settings.php:327
882
+ msgid "CDN URL"
883
+ msgstr ""
884
+
885
+ #: classes/WP_Piwik/Admin/Settings.php:329
886
+ msgid "CDN URL (SSL)"
887
+ msgstr ""
888
+
889
+ #: classes/WP_Piwik/Admin/Settings.php:331
890
+ msgid "Force Piwik to use a specific protocol"
891
+ msgstr ""
892
+
893
+ #: classes/WP_Piwik/Admin/Settings.php:332
894
+ msgid "Disabled (default)"
895
+ msgstr ""
896
+
897
+ #: classes/WP_Piwik/Admin/Settings.php:333
898
+ msgid "http"
899
+ msgstr ""
900
+
901
+ #: classes/WP_Piwik/Admin/Settings.php:334
902
+ msgid "https (SSL)"
903
+ msgstr ""
904
+
905
+ #: classes/WP_Piwik/Admin/Settings.php:335
906
+ msgid ""
907
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
908
+ "work with a CDN URL."
909
+ msgstr ""
910
+
911
+ #: classes/WP_Piwik/Admin/Settings.php:337
912
+ msgid "Update notice"
913
+ msgstr ""
914
+
915
+ #: classes/WP_Piwik/Admin/Settings.php:338
916
+ msgid "Show always if WP-Piwik is updated"
917
+ msgstr ""
918
+
919
+ #: classes/WP_Piwik/Admin/Settings.php:339
920
+ msgid "Show only if WP-Piwik is updated and settings were changed"
921
+ msgstr ""
922
+
923
+ #: classes/WP_Piwik/Admin/Settings.php:341
924
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
925
+ msgstr ""
926
+
927
+ #: classes/WP_Piwik/Admin/Settings.php:343
928
+ msgid "Define all file types for download tracking"
929
+ msgstr ""
930
+
931
+ #: classes/WP_Piwik/Admin/Settings.php:343
932
+ msgid ""
933
+ "Replace Piwik's default file extensions for download tracking, divided by a "
934
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
935
+ msgstr ""
936
+
937
+ #: classes/WP_Piwik/Admin/Settings.php:345
938
+ msgid "Set classes to be treated as downloads"
939
+ msgstr ""
940
+
941
+ #: classes/WP_Piwik/Admin/Settings.php:345
942
+ msgid ""
943
+ "Set classes to be treated as downloads (in addition to piwik_download), "
944
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
945
+ "settings."
946
+ msgstr ""
947
+
948
+ #: classes/WP_Piwik/Admin/Settings.php:345
949
+ #: classes/WP_Piwik/Admin/Settings.php:347
950
+ #, php-format
951
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
952
+ msgstr ""
953
+
954
+ #: classes/WP_Piwik/Admin/Settings.php:347
955
+ msgid "Set classes to be treated as outlinks"
956
+ msgstr ""
957
+
958
+ #: classes/WP_Piwik/Admin/Settings.php:347
959
+ msgid ""
960
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
961
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
962
+ msgstr ""
963
+
964
+ #: classes/WP_Piwik/Admin/Settings.php:508
965
+ msgid "Donate"
966
+ msgstr ""
967
+
968
+ #: classes/WP_Piwik/Admin/Settings.php:511
969
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
970
+ msgstr ""
971
+
972
+ #: classes/WP_Piwik/Admin/Settings.php:530
973
+ msgid "My Amazon.de wishlist"
974
+ msgstr ""
975
+
976
+ #: classes/WP_Piwik/Admin/Settings.php:533
977
+ #: classes/WP_Piwik/Admin/Settings.php:575
978
+ msgid "Please don't forget to vote the compatibility at the"
979
+ msgstr ""
980
+
981
+ #: classes/WP_Piwik/Admin/Settings.php:561
982
+ msgid "Thank you very much for your donation"
983
+ msgstr ""
984
+
985
+ #: classes/WP_Piwik/Admin/Settings.php:561
986
+ msgid "the Piwik team itself"
987
+ msgstr ""
988
+
989
+ #: classes/WP_Piwik/Admin/Settings.php:561
990
+ msgid ", and all people flattering this"
991
+ msgstr ""
992
+
993
+ #: classes/WP_Piwik/Admin/Settings.php:562
994
+ msgid ""
995
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
996
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
997
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
998
+ "Sparklines</a> (License: New BSD License)."
999
+ msgstr ""
1000
+
1001
+ #: classes/WP_Piwik/Admin/Settings.php:563
1002
+ msgid "Thank you very much"
1003
+ msgstr ""
1004
+
1005
+ #: classes/WP_Piwik/Admin/Settings.php:563
1006
+ msgid "for your translation work"
1007
+ msgstr ""
1008
+
1009
+ #: classes/WP_Piwik/Admin/Settings.php:564
1010
+ msgid ""
1011
+ "Thank you very much, all users who send me mails containing criticism, "
1012
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1013
+ " much better."
1014
+ msgstr ""
1015
+
1016
+ #: classes/WP_Piwik/Admin/Settings.php:565
1017
+ msgid ""
1018
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1019
+ "if my piece of code is really used!"
1020
+ msgstr ""
1021
+
1022
+ #: classes/WP_Piwik/Admin/Settings.php:574
1023
+ msgid "The best place to get help:"
1024
+ msgstr ""
1025
+
1026
+ #: classes/WP_Piwik/Admin/Settings.php:574
1027
+ msgid "WP-Piwik support forum"
1028
+ msgstr ""
1029
+
1030
+ #: classes/WP_Piwik/Admin/Settings.php:577
1031
+ msgid "Debugging"
1032
+ msgstr ""
1033
+
1034
+ #: classes/WP_Piwik/Admin/Settings.php:578
1035
+ msgid ""
1036
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1037
+ "available:"
1038
+ msgstr ""
1039
+
1040
+ #: classes/WP_Piwik/Admin/Settings.php:581
1041
+ msgid "cURL is"
1042
+ msgstr ""
1043
+
1044
+ #: classes/WP_Piwik/Admin/Settings.php:582
1045
+ #: classes/WP_Piwik/Admin/Settings.php:587
1046
+ msgid "not"
1047
+ msgstr ""
1048
+
1049
+ #: classes/WP_Piwik/Admin/Settings.php:583
1050
+ msgid "available"
1051
+ msgstr ""
1052
+
1053
+ #: classes/WP_Piwik/Admin/Settings.php:586
1054
+ msgid "allow_url_fopen is"
1055
+ msgstr ""
1056
+
1057
+ #: classes/WP_Piwik/Admin/Settings.php:588
1058
+ msgid "enabled"
1059
+ msgstr ""
1060
+
1061
+ #: classes/WP_Piwik/Admin/Settings.php:590
1062
+ msgid "is used."
1063
+ msgstr ""
1064
+
1065
+ #: classes/WP_Piwik/Admin/Settings.php:592
1066
+ msgid "Determined Piwik base URL is"
1067
+ msgstr ""
1068
+
1069
+ #: classes/WP_Piwik/Admin/Settings.php:596
1070
+ msgid "Tools"
1071
+ msgstr ""
1072
+
1073
+ #: classes/WP_Piwik/Admin/Settings.php:598
1074
+ msgid "Run testscript"
1075
+ msgstr ""
1076
+
1077
+ #: classes/WP_Piwik/Admin/Settings.php:599
1078
+ msgid "Sitebrowser"
1079
+ msgstr ""
1080
+
1081
+ #: classes/WP_Piwik/Admin/Settings.php:600
1082
+ msgid "Clear cache"
1083
+ msgstr ""
1084
+
1085
+ #: classes/WP_Piwik/Admin/Settings.php:601
1086
+ msgid "Are you sure you want to clear all settings?"
1087
+ msgstr ""
1088
+
1089
+ #: classes/WP_Piwik/Admin/Settings.php:601
1090
+ msgid "Reset WP-Piwik"
1091
+ msgstr ""
1092
+
1093
+ #: classes/WP_Piwik/Admin/Settings.php:603
1094
+ msgid "Latest support threads on WordPress.org"
1095
+ msgstr ""
1096
+
1097
+ #: classes/WP_Piwik/Admin/Settings.php:654
1098
+ msgid "Settings cleared (except connection settings)."
1099
+ msgstr ""
1100
+
1101
+ #: classes/WP_Piwik/Admin/Settings.php:670
1102
+ msgid "Cache cleared."
1103
+ msgstr ""
1104
+
1105
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1106
+ msgid "site"
1107
+ msgstr ""
1108
+
1109
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1110
+ msgid "sites"
1111
+ msgstr ""
1112
+
1113
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1114
+ msgid "No site configured yet."
1115
+ msgstr ""
1116
+
1117
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1118
+ msgid "Blog ID"
1119
+ msgstr ""
1120
+
1121
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1122
+ msgid "Title"
1123
+ msgstr ""
1124
+
1125
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1126
+ msgid "URL"
1127
+ msgstr ""
1128
+
1129
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1130
+ msgid "Site ID (Piwik)"
1131
+ msgstr ""
1132
+
1133
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1134
+ msgid "Site not created yet."
1135
+ msgstr ""
1136
+
1137
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1138
+ msgid "Statistics"
1139
+ msgstr ""
1140
+
1141
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1142
+ msgid "Currently shown stats:"
1143
+ msgstr ""
1144
+
1145
+ #: classes/WP_Piwik/Request/Php.php:27
1146
+ msgid "Could not resolve"
1147
+ msgstr ""
1148
+
1149
+ #: classes/WP_Piwik/Request/Php.php:27
1150
+ msgid "realpath() returns false"
1151
+ msgstr ""
1152
+
1153
+ #: classes/WP_Piwik/Request/Php.php:39
1154
+ msgid "Class Piwik\\FrontController does not exists."
1155
+ msgstr ""
1156
+
1157
+ #: classes/WP_Piwik/Request/Php.php:42
1158
+ msgid "Class Piwik\\API\\Request does not exists."
1159
+ msgstr ""
1160
+
1161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1162
+ msgid "Piwik Custom Variables"
1163
+ msgstr ""
1164
+
1165
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1166
+ msgid "Name"
1167
+ msgstr ""
1168
+
1169
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1170
+ msgid "Value"
1171
+ msgstr ""
1172
+
1173
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1174
+ msgid "Set custom variables for a page view"
1175
+ msgstr ""
1176
+
1177
+ #: classes/WP_Piwik/Widget.php:91
1178
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1179
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1180
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1181
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1182
+ #: classes/WP_Piwik/Widget/Items.php:23
1183
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1184
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1185
+ #: classes/WP_Piwik/Widget/Overview.php:24
1186
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1187
+ #: classes/WP_Piwik/Widget/Screens.php:35
1188
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1189
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1190
+ #: classes/WP_Piwik/Widget/Systems.php:33
1191
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1192
+ msgid "Piwik error"
1193
+ msgstr ""
1194
+
1195
+ #: classes/WP_Piwik/Widget.php:100
1196
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1197
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1198
+ #: classes/WP_Piwik/Widget/Country.php:39
1199
+ #: classes/WP_Piwik/Widget/Screens.php:37
1200
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1201
+ #: classes/WP_Piwik/Widget/Systems.php:35
1202
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1203
+ msgid "Unique"
1204
+ msgstr ""
1205
+
1206
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1207
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1208
+ msgid "Visits"
1209
+ msgstr ""
1210
+
1211
+ #: classes/WP_Piwik/Widget.php:104
1212
+ msgid "Hits"
1213
+ msgstr ""
1214
+
1215
+ #: classes/WP_Piwik/Widget.php:106
1216
+ msgid "Actions"
1217
+ msgstr ""
1218
+
1219
+ #: classes/WP_Piwik/Widget.php:162
1220
+ msgid "No data available."
1221
+ msgstr ""
1222
+
1223
+ #: classes/WP_Piwik/Widget.php:243
1224
+ msgid "today"
1225
+ msgstr ""
1226
+
1227
+ #: classes/WP_Piwik/Widget.php:248
1228
+ msgid "current month"
1229
+ msgstr ""
1230
+
1231
+ #: classes/WP_Piwik/Widget.php:253
1232
+ msgid "last month"
1233
+ msgstr ""
1234
+
1235
+ #: classes/WP_Piwik/Widget.php:258
1236
+ msgid "current week"
1237
+ msgstr ""
1238
+
1239
+ #: classes/WP_Piwik/Widget.php:263
1240
+ msgid "last week"
1241
+ msgstr ""
1242
+
1243
+ #: classes/WP_Piwik/Widget.php:268
1244
+ msgid "yesterday"
1245
+ msgstr ""
1246
+
1247
+ #: classes/WP_Piwik/Widget.php:293
1248
+ msgid "week"
1249
+ msgstr ""
1250
+
1251
+ #: classes/WP_Piwik/Widget.php:328
1252
+ msgid "last 30 days"
1253
+ msgstr ""
1254
+
1255
+ #: classes/WP_Piwik/Widget.php:330
1256
+ msgid "last 12 "
1257
+ msgstr ""
1258
+
1259
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1260
+ msgid "Browser Details"
1261
+ msgstr ""
1262
+
1263
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1264
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1265
+ msgid "Browser"
1266
+ msgstr ""
1267
+
1268
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1269
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1270
+ #: classes/WP_Piwik/Widget/Country.php:39
1271
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1272
+ #: classes/WP_Piwik/Widget/Screens.php:37
1273
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1274
+ #: classes/WP_Piwik/Widget/Systems.php:35
1275
+ msgid "Percent"
1276
+ msgstr ""
1277
+
1278
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1279
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1280
+ #: classes/WP_Piwik/Widget/Country.php:66
1281
+ #: classes/WP_Piwik/Widget/Screens.php:64
1282
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1283
+ #: classes/WP_Piwik/Widget/Systems.php:62
1284
+ msgid "Others"
1285
+ msgstr ""
1286
+
1287
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1288
+ msgid "Browsers"
1289
+ msgstr ""
1290
+
1291
+ #: classes/WP_Piwik/Widget/Chart.php:19
1292
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1293
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1294
+ msgid "Visitors"
1295
+ msgstr ""
1296
+
1297
+ #: classes/WP_Piwik/Widget/Chart.php:71
1298
+ msgid ""
1299
+ "The graph contains the values shown in the table below (visitors / unique / "
1300
+ "bounces). The red line shows a linear trendline (unique)."
1301
+ msgstr ""
1302
+
1303
+ #: classes/WP_Piwik/Widget/Country.php:18
1304
+ msgid "Countries"
1305
+ msgstr ""
1306
+
1307
+ #: classes/WP_Piwik/Widget/Country.php:39
1308
+ msgid "Country"
1309
+ msgstr ""
1310
+
1311
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1312
+ msgid "E-Commerce"
1313
+ msgstr ""
1314
+
1315
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1316
+ msgid "Conversions"
1317
+ msgstr ""
1318
+
1319
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1320
+ msgid "Visits converted"
1321
+ msgstr ""
1322
+
1323
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1324
+ #: classes/WP_Piwik/Widget/Items.php:27
1325
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1326
+ msgid "Revenue"
1327
+ msgstr ""
1328
+
1329
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1330
+ #: classes/WP_Piwik/Widget/Items.php:32
1331
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1332
+ msgid "Conversion rate"
1333
+ msgstr ""
1334
+
1335
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1336
+ msgid "Conversions (new visitor)"
1337
+ msgstr ""
1338
+
1339
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1340
+ msgid "Visits converted (new visitor)"
1341
+ msgstr ""
1342
+
1343
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1344
+ msgid "Revenue (new visitor)"
1345
+ msgstr ""
1346
+
1347
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1348
+ msgid "Conversion rate (new visitor)"
1349
+ msgstr ""
1350
+
1351
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1352
+ msgid "Conversions (returning visitor)"
1353
+ msgstr ""
1354
+
1355
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1356
+ msgid "Visits converted (returning visitor)"
1357
+ msgstr ""
1358
+
1359
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1360
+ msgid "Revenue (returning visitor)"
1361
+ msgstr ""
1362
+
1363
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1364
+ msgid "Conversion rate (returning visitor)"
1365
+ msgstr ""
1366
+
1367
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1368
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1369
+ msgid "Shortcut"
1370
+ msgstr ""
1371
+
1372
+ #: classes/WP_Piwik/Widget/Items.php:11
1373
+ msgid "E-Commerce Items"
1374
+ msgstr ""
1375
+
1376
+ #: classes/WP_Piwik/Widget/Items.php:26
1377
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1378
+ msgid "Label"
1379
+ msgstr ""
1380
+
1381
+ #: classes/WP_Piwik/Widget/Items.php:28
1382
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1383
+ msgid "Quantity"
1384
+ msgstr ""
1385
+
1386
+ #: classes/WP_Piwik/Widget/Items.php:29
1387
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1388
+ msgid "Orders"
1389
+ msgstr ""
1390
+
1391
+ #: classes/WP_Piwik/Widget/Items.php:30
1392
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1393
+ msgid "Avg. price"
1394
+ msgstr ""
1395
+
1396
+ #: classes/WP_Piwik/Widget/Items.php:31
1397
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1398
+ msgid "Avg. quantity"
1399
+ msgstr ""
1400
+
1401
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1402
+ msgid "E-Commerce Item Categories"
1403
+ msgstr ""
1404
+
1405
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1406
+ msgid "Keywords"
1407
+ msgstr ""
1408
+
1409
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1410
+ #: classes/WP_Piwik/Widget/Search.php:16
1411
+ msgid "Site Search"
1412
+ msgstr ""
1413
+
1414
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1415
+ #: classes/WP_Piwik/Widget/Search.php:25
1416
+ msgid "Keyword"
1417
+ msgstr ""
1418
+
1419
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1420
+ #: classes/WP_Piwik/Widget/Search.php:25
1421
+ msgid "Requests"
1422
+ msgstr ""
1423
+
1424
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1425
+ #: classes/WP_Piwik/Widget/Search.php:25
1426
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1427
+ msgid "Bounced"
1428
+ msgstr ""
1429
+
1430
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1431
+ msgid "Overview"
1432
+ msgstr ""
1433
+
1434
+ #: classes/WP_Piwik/Widget/Overview.php:17
1435
+ msgid "dashboard"
1436
+ msgstr ""
1437
+
1438
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1439
+ msgid "Unique visitors"
1440
+ msgstr ""
1441
+
1442
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1443
+ msgid "Page views"
1444
+ msgstr ""
1445
+
1446
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1447
+ msgid "Total time spent"
1448
+ msgstr ""
1449
+
1450
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1451
+ msgid "Bounce count"
1452
+ msgstr ""
1453
+
1454
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1455
+ msgid "Time/visit"
1456
+ msgstr ""
1457
+
1458
+ #: classes/WP_Piwik/Widget/Overview.php:57
1459
+ msgid "Max. page views in one visit"
1460
+ msgstr ""
1461
+
1462
+ #: classes/WP_Piwik/Widget/Pages.php:16
1463
+ msgid "Pages"
1464
+ msgstr ""
1465
+
1466
+ #: classes/WP_Piwik/Widget/Pages.php:18
1467
+ msgid "Page"
1468
+ msgstr ""
1469
+
1470
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1471
+ msgid "Plugins"
1472
+ msgstr ""
1473
+
1474
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1475
+ msgid "Plugin"
1476
+ msgstr ""
1477
+
1478
+ #: classes/WP_Piwik/Widget/Post.php:43
1479
+ msgid "Min. generation time"
1480
+ msgstr ""
1481
+
1482
+ #: classes/WP_Piwik/Widget/Post.php:44
1483
+ msgid "Max. generation time"
1484
+ msgstr ""
1485
+
1486
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1487
+ msgid "Referrers"
1488
+ msgstr ""
1489
+
1490
+ #: classes/WP_Piwik/Widget/Screens.php:16
1491
+ msgid "Resolutions"
1492
+ msgstr ""
1493
+
1494
+ #: classes/WP_Piwik/Widget/Screens.php:37
1495
+ msgid "Resolution"
1496
+ msgstr ""
1497
+
1498
+ #: classes/WP_Piwik/Widget/Seo.php:13
1499
+ msgid "SEO"
1500
+ msgstr ""
1501
+
1502
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1503
+ msgid "Operation System Details"
1504
+ msgstr ""
1505
+
1506
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1507
+ #: classes/WP_Piwik/Widget/Systems.php:35
1508
+ msgid "Operation System"
1509
+ msgstr ""
1510
+
1511
+ #: classes/WP_Piwik/Widget/Systems.php:14
1512
+ msgid "Operation Systems"
1513
+ msgstr ""
1514
+
1515
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1516
+ msgid "Date"
1517
+ msgstr ""
1518
+
1519
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1520
+ msgid "Page Views"
1521
+ msgstr ""
1522
+
1523
+ #: wp-piwik.php:60
1524
+ #, php-format
1525
+ msgid ""
1526
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1527
+ " Please update PHP to use WP-Piwik."
1528
+ msgstr ""
languages/wp-piwik-de_CH.mo ADDED
Binary file
languages/wp-piwik-de_CH.po ADDED
@@ -0,0 +1,1528 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WP-Piwik\n"
6
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
7
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
8
+ "Last-Translator: André Bräkling\n"
9
+ "Language-Team: German (Switzerland) (http://www.transifex.com/piwik/wp-piwik/language/de_CH/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: de_CH\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+
16
+ #: classes/WP_Piwik.php:203
17
+ #, php-format
18
+ msgid "%s %s installed."
19
+ msgstr ""
20
+
21
+ #: classes/WP_Piwik.php:203
22
+ msgid "Next you should connect to Piwik"
23
+ msgstr ""
24
+
25
+ #: classes/WP_Piwik.php:237
26
+ #, php-format
27
+ msgid "%s updated to %s."
28
+ msgstr ""
29
+
30
+ #: classes/WP_Piwik.php:237
31
+ msgid "Please validate your configuration"
32
+ msgstr ""
33
+
34
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
35
+ msgid "Settings"
36
+ msgstr ""
37
+
38
+ #: classes/WP_Piwik.php:272
39
+ msgid "Important"
40
+ msgstr ""
41
+
42
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
43
+ msgid "Piwik Statistics"
44
+ msgstr ""
45
+
46
+ #: classes/WP_Piwik.php:499
47
+ msgid "Configure WP-Piwik"
48
+ msgstr ""
49
+
50
+ #: classes/WP_Piwik.php:992
51
+ msgid "An error occured"
52
+ msgstr ""
53
+
54
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
55
+ msgid "Support"
56
+ msgstr ""
57
+
58
+ #: classes/WP_Piwik.php:1275
59
+ msgid "Cheatin&#8217; uh?"
60
+ msgstr ""
61
+
62
+ #: classes/WP_Piwik/Admin/Settings.php:24
63
+ msgid "Reload"
64
+ msgstr ""
65
+
66
+ #: classes/WP_Piwik/Admin/Settings.php:27
67
+ msgid "Changes saved."
68
+ msgstr ""
69
+
70
+ #: classes/WP_Piwik/Admin/Settings.php:55
71
+ msgid "Thanks for using WP-Piwik!"
72
+ msgstr ""
73
+
74
+ #: classes/WP_Piwik/Admin/Settings.php:58
75
+ #, php-format
76
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
77
+ msgstr ""
78
+
79
+ #: classes/WP_Piwik/Admin/Settings.php:58
80
+ #, php-format
81
+ msgid "You are running WordPress %s."
82
+ msgstr ""
83
+
84
+ #: classes/WP_Piwik/Admin/Settings.php:58
85
+ #, php-format
86
+ msgid ""
87
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
88
+ "your sites as different websites."
89
+ msgstr ""
90
+
91
+ #: classes/WP_Piwik/Admin/Settings.php:62
92
+ #, php-format
93
+ msgid ""
94
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
95
+ " the &raquo;Connect to Piwik&laquo; section below."
96
+ msgstr ""
97
+
98
+ #: classes/WP_Piwik/Admin/Settings.php:64
99
+ #, php-format
100
+ msgid ""
101
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
102
+ "During connection the following error occured: <br /><code>%s</code>"
103
+ msgstr ""
104
+
105
+ #: classes/WP_Piwik/Admin/Settings.php:67
106
+ #, php-format
107
+ msgid ""
108
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
109
+ "Piwik&laquo; section below."
110
+ msgstr ""
111
+
112
+ #: classes/WP_Piwik/Admin/Settings.php:71
113
+ msgid "Connect to Piwik"
114
+ msgstr ""
115
+
116
+ #: classes/WP_Piwik/Admin/Settings.php:76
117
+ msgid "Show Statistics"
118
+ msgstr ""
119
+
120
+ #: classes/WP_Piwik/Admin/Settings.php:80
121
+ msgid "Enable Tracking"
122
+ msgstr ""
123
+
124
+ #: classes/WP_Piwik/Admin/Settings.php:85
125
+ msgid "Expert Settings"
126
+ msgstr ""
127
+
128
+ #: classes/WP_Piwik/Admin/Settings.php:93
129
+ msgid "Credits"
130
+ msgstr ""
131
+
132
+ #: classes/WP_Piwik/Admin/Settings.php:106
133
+ msgid ""
134
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
135
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
136
+ " To use this you will need your own Piwik instance. If you do not already "
137
+ "have a Piwik setup, you have two simple options: use either"
138
+ msgstr ""
139
+
140
+ #: classes/WP_Piwik/Admin/Settings.php:106
141
+ msgid "a self-hosted Piwik"
142
+ msgstr ""
143
+
144
+ #: classes/WP_Piwik/Admin/Settings.php:106
145
+ msgid "or"
146
+ msgstr ""
147
+
148
+ #: classes/WP_Piwik/Admin/Settings.php:106
149
+ msgid "a cloud-hosted Piwik by InnoCraft"
150
+ msgstr ""
151
+
152
+ #: classes/WP_Piwik/Admin/Settings.php:109
153
+ msgid ""
154
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
155
+ "and not connect to InnoCraft Cloud."
156
+ msgstr ""
157
+
158
+ #: classes/WP_Piwik/Admin/Settings.php:109
159
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
160
+ msgid "More information"
161
+ msgstr ""
162
+
163
+ #: classes/WP_Piwik/Admin/Settings.php:111
164
+ msgid "You can choose between three connection methods:"
165
+ msgstr ""
166
+
167
+ #: classes/WP_Piwik/Admin/Settings.php:111
168
+ #: classes/WP_Piwik/Admin/Settings.php:114
169
+ msgid "Self-hosted (HTTP API, default)"
170
+ msgstr ""
171
+
172
+ #: classes/WP_Piwik/Admin/Settings.php:111
173
+ msgid ""
174
+ "This is the default option for a self-hosted Piwik and should work for most "
175
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
176
+ msgstr ""
177
+
178
+ #: classes/WP_Piwik/Admin/Settings.php:111
179
+ #: classes/WP_Piwik/Admin/Settings.php:115
180
+ msgid "Self-hosted (PHP API)"
181
+ msgstr ""
182
+
183
+ #: classes/WP_Piwik/Admin/Settings.php:111
184
+ msgid ""
185
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
186
+ " machine and you know the full server path to your Piwik instance."
187
+ msgstr ""
188
+
189
+ #: classes/WP_Piwik/Admin/Settings.php:111
190
+ #: classes/WP_Piwik/Admin/Settings.php:116
191
+ msgid "Cloud-hosted (InnoCraft Cloud)"
192
+ msgstr ""
193
+
194
+ #: classes/WP_Piwik/Admin/Settings.php:111
195
+ msgid ""
196
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
197
+ "option."
198
+ msgstr ""
199
+
200
+ #: classes/WP_Piwik/Admin/Settings.php:112
201
+ msgid "Piwik Mode"
202
+ msgstr ""
203
+
204
+ #: classes/WP_Piwik/Admin/Settings.php:113
205
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
206
+ msgstr ""
207
+
208
+ #: classes/WP_Piwik/Admin/Settings.php:119
209
+ msgid "Piwik URL"
210
+ msgstr ""
211
+
212
+ #: classes/WP_Piwik/Admin/Settings.php:119
213
+ msgid ""
214
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
215
+ "instance, e.g. http://www.example.com/piwik/."
216
+ msgstr ""
217
+
218
+ #: classes/WP_Piwik/Admin/Settings.php:120
219
+ msgid "Piwik path"
220
+ msgstr ""
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:120
223
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
224
+ msgstr ""
225
+
226
+ #: classes/WP_Piwik/Admin/Settings.php:121
227
+ msgid "Piwik subdomain"
228
+ msgstr ""
229
+
230
+ #: classes/WP_Piwik/Admin/Settings.php:121
231
+ msgid ""
232
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
233
+ "https://SUBDOMAIN.innocraft.cloud."
234
+ msgstr ""
235
+
236
+ #: classes/WP_Piwik/Admin/Settings.php:122
237
+ msgid "Auth token"
238
+ msgstr ""
239
+
240
+ #: classes/WP_Piwik/Admin/Settings.php:122
241
+ msgid ""
242
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
243
+ "0a1b2c34d56e78901fa2bc3d45678efa."
244
+ msgstr ""
245
+
246
+ #: classes/WP_Piwik/Admin/Settings.php:122
247
+ #, php-format
248
+ msgid "See %sWP-Piwik FAQ%s."
249
+ msgstr ""
250
+
251
+ #: classes/WP_Piwik/Admin/Settings.php:127
252
+ msgid "Auto config"
253
+ msgstr ""
254
+
255
+ #: classes/WP_Piwik/Admin/Settings.php:127
256
+ msgid ""
257
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
258
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
259
+ msgstr ""
260
+
261
+ #: classes/WP_Piwik/Admin/Settings.php:131
262
+ #, php-format
263
+ msgid ""
264
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
265
+ "/><code>%s</code>"
266
+ msgstr ""
267
+
268
+ #: classes/WP_Piwik/Admin/Settings.php:141
269
+ msgid "Determined site"
270
+ msgstr ""
271
+
272
+ #: classes/WP_Piwik/Admin/Settings.php:146
273
+ msgid "Select site"
274
+ msgstr ""
275
+
276
+ #: classes/WP_Piwik/Admin/Settings.php:155
277
+ msgid "Piwik default date"
278
+ msgstr ""
279
+
280
+ #: classes/WP_Piwik/Admin/Settings.php:156
281
+ #: classes/WP_Piwik/Admin/Settings.php:170
282
+ msgid "Today"
283
+ msgstr ""
284
+
285
+ #: classes/WP_Piwik/Admin/Settings.php:157
286
+ #: classes/WP_Piwik/Admin/Settings.php:169
287
+ msgid "Yesterday"
288
+ msgstr ""
289
+
290
+ #: classes/WP_Piwik/Admin/Settings.php:158
291
+ msgid "Current month"
292
+ msgstr ""
293
+
294
+ #: classes/WP_Piwik/Admin/Settings.php:159
295
+ msgid "Last month"
296
+ msgstr ""
297
+
298
+ #: classes/WP_Piwik/Admin/Settings.php:160
299
+ msgid "Current week"
300
+ msgstr ""
301
+
302
+ #: classes/WP_Piwik/Admin/Settings.php:161
303
+ msgid "Last week"
304
+ msgstr ""
305
+
306
+ #: classes/WP_Piwik/Admin/Settings.php:162
307
+ msgid "Default date shown on statistics page."
308
+ msgstr ""
309
+
310
+ #: classes/WP_Piwik/Admin/Settings.php:164
311
+ msgid "Show SEO data"
312
+ msgstr ""
313
+
314
+ #: classes/WP_Piwik/Admin/Settings.php:164
315
+ msgid "Display SEO ranking data on statistics page."
316
+ msgstr ""
317
+
318
+ #: classes/WP_Piwik/Admin/Settings.php:164
319
+ #: classes/WP_Piwik/Admin/Settings.php:176
320
+ msgid "Slow!"
321
+ msgstr ""
322
+
323
+ #: classes/WP_Piwik/Admin/Settings.php:165
324
+ msgid "Show e-commerce data"
325
+ msgstr ""
326
+
327
+ #: classes/WP_Piwik/Admin/Settings.php:165
328
+ msgid "Display e-commerce data on statistics page."
329
+ msgstr ""
330
+
331
+ #: classes/WP_Piwik/Admin/Settings.php:167
332
+ msgid "Dashboard overview"
333
+ msgstr ""
334
+
335
+ #: classes/WP_Piwik/Admin/Settings.php:168
336
+ #: classes/WP_Piwik/Admin/Settings.php:208
337
+ #: classes/WP_Piwik/Admin/Settings.php:210
338
+ #: classes/WP_Piwik/Admin/Settings.php:231
339
+ #: classes/WP_Piwik/Admin/Settings.php:285
340
+ #: classes/WP_Piwik/Admin/Settings.php:340
341
+ msgid "Disabled"
342
+ msgstr ""
343
+
344
+ #: classes/WP_Piwik/Admin/Settings.php:171
345
+ msgid "Last 30 days"
346
+ msgstr ""
347
+
348
+ #: classes/WP_Piwik/Admin/Settings.php:172
349
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
350
+ msgstr ""
351
+
352
+ #: classes/WP_Piwik/Admin/Settings.php:174
353
+ msgid "Dashboard graph"
354
+ msgstr ""
355
+
356
+ #: classes/WP_Piwik/Admin/Settings.php:174
357
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
358
+ msgstr ""
359
+
360
+ #: classes/WP_Piwik/Admin/Settings.php:176
361
+ msgid "Dashboard SEO"
362
+ msgstr ""
363
+
364
+ #: classes/WP_Piwik/Admin/Settings.php:176
365
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
366
+ msgstr ""
367
+
368
+ #: classes/WP_Piwik/Admin/Settings.php:178
369
+ msgid "Dashboard e-commerce"
370
+ msgstr ""
371
+
372
+ #: classes/WP_Piwik/Admin/Settings.php:178
373
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
374
+ msgstr ""
375
+
376
+ #: classes/WP_Piwik/Admin/Settings.php:180
377
+ msgid "Show graph on WordPress Toolbar"
378
+ msgstr ""
379
+
380
+ #: classes/WP_Piwik/Admin/Settings.php:180
381
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
382
+ msgstr ""
383
+
384
+ #: classes/WP_Piwik/Admin/Settings.php:182
385
+ msgid "Display stats to"
386
+ msgstr ""
387
+
388
+ #: classes/WP_Piwik/Admin/Settings.php:189
389
+ msgid "Choose user roles allowed to see the statistics page."
390
+ msgstr ""
391
+
392
+ #: classes/WP_Piwik/Admin/Settings.php:191
393
+ msgid "Show per post stats"
394
+ msgstr ""
395
+
396
+ #: classes/WP_Piwik/Admin/Settings.php:191
397
+ msgid "Show stats about single posts at the post edit admin page."
398
+ msgstr ""
399
+
400
+ #: classes/WP_Piwik/Admin/Settings.php:193
401
+ msgid "Piwik shortcut"
402
+ msgstr ""
403
+
404
+ #: classes/WP_Piwik/Admin/Settings.php:193
405
+ msgid "Display a shortcut to Piwik itself."
406
+ msgstr ""
407
+
408
+ #: classes/WP_Piwik/Admin/Settings.php:195
409
+ msgid "WP-Piwik display name"
410
+ msgstr ""
411
+
412
+ #: classes/WP_Piwik/Admin/Settings.php:195
413
+ msgid "Plugin name shown in WordPress."
414
+ msgstr ""
415
+
416
+ #: classes/WP_Piwik/Admin/Settings.php:197
417
+ msgid "Enable shortcodes"
418
+ msgstr ""
419
+
420
+ #: classes/WP_Piwik/Admin/Settings.php:197
421
+ msgid "Enable shortcodes in post or page content."
422
+ msgstr ""
423
+
424
+ #: classes/WP_Piwik/Admin/Settings.php:208
425
+ msgid "You can choose between four tracking code modes:"
426
+ msgstr ""
427
+
428
+ #: classes/WP_Piwik/Admin/Settings.php:208
429
+ msgid ""
430
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
431
+ "tracking code to your template files or you use another plugin to add the "
432
+ "tracking code."
433
+ msgstr ""
434
+
435
+ #: classes/WP_Piwik/Admin/Settings.php:208
436
+ #: classes/WP_Piwik/Admin/Settings.php:211
437
+ msgid "Default tracking"
438
+ msgstr ""
439
+
440
+ #: classes/WP_Piwik/Admin/Settings.php:208
441
+ msgid "WP-Piwik will use Piwik's standard tracking code."
442
+ msgstr ""
443
+
444
+ #: classes/WP_Piwik/Admin/Settings.php:208
445
+ #: classes/WP_Piwik/Admin/Settings.php:212
446
+ msgid "Use js/index.php"
447
+ msgstr ""
448
+
449
+ #: classes/WP_Piwik/Admin/Settings.php:208
450
+ msgid ""
451
+ "You can choose this tracking code, to deliver a minified proxy code and to "
452
+ "avoid using the files called piwik.js or piwik.php."
453
+ msgstr ""
454
+
455
+ #: classes/WP_Piwik/Admin/Settings.php:208
456
+ #, php-format
457
+ msgid "See %sreadme file%s."
458
+ msgstr ""
459
+
460
+ #: classes/WP_Piwik/Admin/Settings.php:208
461
+ #: classes/WP_Piwik/Admin/Settings.php:213
462
+ msgid "Use proxy script"
463
+ msgstr ""
464
+
465
+ #: classes/WP_Piwik/Admin/Settings.php:208
466
+ msgid "Use this tracking code to not reveal the Piwik server URL."
467
+ msgstr ""
468
+
469
+ #: classes/WP_Piwik/Admin/Settings.php:208
470
+ #: classes/WP_Piwik/Admin/Settings.php:228
471
+ #: classes/WP_Piwik/Admin/Settings.php:238
472
+ #, php-format
473
+ msgid "See %sPiwik FAQ%s."
474
+ msgstr ""
475
+
476
+ #: classes/WP_Piwik/Admin/Settings.php:208
477
+ #: classes/WP_Piwik/Admin/Settings.php:214
478
+ msgid "Enter manually"
479
+ msgstr ""
480
+
481
+ #: classes/WP_Piwik/Admin/Settings.php:208
482
+ msgid ""
483
+ "Enter your own tracking code manually. You can choose one of the prior "
484
+ "options, pre-configure your tracking code and switch to manually editing at "
485
+ "last."
486
+ msgstr ""
487
+
488
+ #: classes/WP_Piwik/Admin/Settings.php:208
489
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
490
+ msgstr ""
491
+
492
+ #: classes/WP_Piwik/Admin/Settings.php:209
493
+ msgid "Add tracking code"
494
+ msgstr ""
495
+
496
+ #: classes/WP_Piwik/Admin/Settings.php:217
497
+ msgid "Tracking code"
498
+ msgstr ""
499
+
500
+ #: classes/WP_Piwik/Admin/Settings.php:219
501
+ msgid "JavaScript code position"
502
+ msgstr ""
503
+
504
+ #: classes/WP_Piwik/Admin/Settings.php:220
505
+ msgid "Footer"
506
+ msgstr ""
507
+
508
+ #: classes/WP_Piwik/Admin/Settings.php:221
509
+ msgid "Header"
510
+ msgstr ""
511
+
512
+ #: classes/WP_Piwik/Admin/Settings.php:222
513
+ msgid ""
514
+ "Choose whether the JavaScript code is added to the footer or the header."
515
+ msgstr ""
516
+
517
+ #: classes/WP_Piwik/Admin/Settings.php:224
518
+ msgid "Noscript code"
519
+ msgstr ""
520
+
521
+ #: classes/WP_Piwik/Admin/Settings.php:226
522
+ msgid "Add &lt;noscript&gt;"
523
+ msgstr ""
524
+
525
+ #: classes/WP_Piwik/Admin/Settings.php:226
526
+ msgid "Adds the &lt;noscript&gt; code to your footer."
527
+ msgstr ""
528
+
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
+ #: classes/WP_Piwik/Admin/Settings.php:228
531
+ msgid "Disabled in proxy mode."
532
+ msgstr ""
533
+
534
+ #: classes/WP_Piwik/Admin/Settings.php:228
535
+ msgid "Add rec parameter to noscript code"
536
+ msgstr ""
537
+
538
+ #: classes/WP_Piwik/Admin/Settings.php:228
539
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
540
+ msgstr ""
541
+
542
+ #: classes/WP_Piwik/Admin/Settings.php:230
543
+ msgid "Enable content tracking"
544
+ msgstr ""
545
+
546
+ #: classes/WP_Piwik/Admin/Settings.php:232
547
+ msgid "Track all content blocks"
548
+ msgstr ""
549
+
550
+ #: classes/WP_Piwik/Admin/Settings.php:233
551
+ msgid "Track only visible content blocks"
552
+ msgstr ""
553
+
554
+ #: classes/WP_Piwik/Admin/Settings.php:234
555
+ msgid ""
556
+ "Content tracking allows you to track interaction with the content of a web "
557
+ "page or application."
558
+ msgstr ""
559
+
560
+ #: classes/WP_Piwik/Admin/Settings.php:234
561
+ #: classes/WP_Piwik/Admin/Settings.php:236
562
+ #: classes/WP_Piwik/Admin/Settings.php:245
563
+ #: classes/WP_Piwik/Admin/Settings.php:247
564
+ #: classes/WP_Piwik/Admin/Settings.php:249
565
+ #: classes/WP_Piwik/Admin/Settings.php:270
566
+ #: classes/WP_Piwik/Admin/Settings.php:272
567
+ #: classes/WP_Piwik/Admin/Settings.php:278
568
+ #: classes/WP_Piwik/Admin/Settings.php:343
569
+ #, php-format
570
+ msgid "See %sPiwik documentation%s."
571
+ msgstr ""
572
+
573
+ #: classes/WP_Piwik/Admin/Settings.php:236
574
+ msgid "Track search"
575
+ msgstr ""
576
+
577
+ #: classes/WP_Piwik/Admin/Settings.php:236
578
+ msgid "Use Piwik's advanced Site Search Analytics feature."
579
+ msgstr ""
580
+
581
+ #: classes/WP_Piwik/Admin/Settings.php:238
582
+ msgid "Track 404"
583
+ msgstr ""
584
+
585
+ #: classes/WP_Piwik/Admin/Settings.php:238
586
+ msgid ""
587
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
588
+ msgstr ""
589
+
590
+ #: classes/WP_Piwik/Admin/Settings.php:241
591
+ msgid "Add annotation on new post of type"
592
+ msgstr ""
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:247
595
+ msgid "Show custom variables box"
596
+ msgstr ""
597
+
598
+ #: classes/WP_Piwik/Admin/Settings.php:247
599
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
600
+ msgstr ""
601
+
602
+ #: classes/WP_Piwik/Admin/Settings.php:249
603
+ msgid "Add new file types for download tracking"
604
+ msgstr ""
605
+
606
+ #: classes/WP_Piwik/Admin/Settings.php:249
607
+ msgid ""
608
+ "Add file extensions for download tracking, divided by a vertical bar "
609
+ "(&#124;)."
610
+ msgstr ""
611
+
612
+ #: classes/WP_Piwik/Admin/Settings.php:251
613
+ msgid "Disable cookies"
614
+ msgstr ""
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:251
617
+ msgid "Disable all tracking cookies for a visitor."
618
+ msgstr ""
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:253
621
+ msgid "Limit cookie lifetime"
622
+ msgstr ""
623
+
624
+ #: classes/WP_Piwik/Admin/Settings.php:253
625
+ msgid ""
626
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
627
+ " period as necessary."
628
+ msgstr ""
629
+
630
+ #: classes/WP_Piwik/Admin/Settings.php:255
631
+ msgid "Visitor timeout (seconds)"
632
+ msgstr ""
633
+
634
+ #: classes/WP_Piwik/Admin/Settings.php:257
635
+ msgid "Session timeout (seconds)"
636
+ msgstr ""
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:259
639
+ msgid "Referral timeout (seconds)"
640
+ msgstr ""
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:261
643
+ msgid "Track admin pages"
644
+ msgstr ""
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:261
647
+ msgid ""
648
+ "Enable to track users on admin pages (remember to configure the tracking "
649
+ "filter appropriately)."
650
+ msgstr ""
651
+
652
+ #: classes/WP_Piwik/Admin/Settings.php:264
653
+ msgid "Tracking filter"
654
+ msgstr ""
655
+
656
+ #: classes/WP_Piwik/Admin/Settings.php:268
657
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
658
+ msgstr ""
659
+
660
+ #: classes/WP_Piwik/Admin/Settings.php:270
661
+ msgid "Track subdomains in the same website"
662
+ msgstr ""
663
+
664
+ #: classes/WP_Piwik/Admin/Settings.php:270
665
+ msgid "Adds *.-prefix to cookie domain."
666
+ msgstr ""
667
+
668
+ #: classes/WP_Piwik/Admin/Settings.php:272
669
+ msgid "Do not count subdomains as outlink"
670
+ msgstr ""
671
+
672
+ #: classes/WP_Piwik/Admin/Settings.php:272
673
+ msgid "Adds *.-prefix to tracked domain."
674
+ msgstr ""
675
+
676
+ #: classes/WP_Piwik/Admin/Settings.php:274
677
+ msgid "Enable cross domain linking"
678
+ msgstr ""
679
+
680
+ #: classes/WP_Piwik/Admin/Settings.php:274
681
+ msgid ""
682
+ "When enabled, it will make sure to use the same visitor ID for the same "
683
+ "visitor across several domains. This works only when this feature is enabled"
684
+ " because the visitor ID is stored in a cookie and cannot be read on the "
685
+ "other domain by default. When this feature is enabled, it will append a URL "
686
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
687
+ "URL that belongs to one of your domains. For this feature to work, you also "
688
+ "have to configure which domains should be treated as local in your Piwik "
689
+ "website settings. This feature requires Piwik 3.0.2."
690
+ msgstr ""
691
+
692
+ #: classes/WP_Piwik/Admin/Settings.php:276
693
+ msgid "Track RSS feeds"
694
+ msgstr ""
695
+
696
+ #: classes/WP_Piwik/Admin/Settings.php:276
697
+ msgid "Enable to track posts in feeds via tracking pixel."
698
+ msgstr ""
699
+
700
+ #: classes/WP_Piwik/Admin/Settings.php:278
701
+ msgid "Track RSS feed links as campaign"
702
+ msgstr ""
703
+
704
+ #: classes/WP_Piwik/Admin/Settings.php:278
705
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
706
+ msgstr ""
707
+
708
+ #: classes/WP_Piwik/Admin/Settings.php:280
709
+ msgid "RSS feed campaign"
710
+ msgstr ""
711
+
712
+ #: classes/WP_Piwik/Admin/Settings.php:280
713
+ msgid "Keyword: post name."
714
+ msgstr ""
715
+
716
+ #: classes/WP_Piwik/Admin/Settings.php:282
717
+ msgid "Enable heartbeat timer"
718
+ msgstr ""
719
+
720
+ #: classes/WP_Piwik/Admin/Settings.php:282
721
+ msgid ""
722
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
723
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
724
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
725
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
726
+ "HTTP requests on your site."
727
+ msgstr ""
728
+
729
+ #: classes/WP_Piwik/Admin/Settings.php:284
730
+ msgid "User ID Tracking"
731
+ msgstr ""
732
+
733
+ #: classes/WP_Piwik/Admin/Settings.php:286
734
+ msgid "WP User ID"
735
+ msgstr ""
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:287
738
+ msgid "Email Address"
739
+ msgstr ""
740
+
741
+ #: classes/WP_Piwik/Admin/Settings.php:288
742
+ msgid "Username"
743
+ msgstr ""
744
+
745
+ #: classes/WP_Piwik/Admin/Settings.php:289
746
+ msgid "Display Name (Not Recommended!)"
747
+ msgstr ""
748
+
749
+ #: classes/WP_Piwik/Admin/Settings.php:290
750
+ msgid ""
751
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
752
+ "can select which field from the User's profile is tracked as the &quot;User "
753
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
754
+ msgstr ""
755
+
756
+ #: classes/WP_Piwik/Admin/Settings.php:295
757
+ msgid ""
758
+ "Usually, you do not need to change these settings. If you want to do so, you"
759
+ " should know what you do or you got an expert's advice."
760
+ msgstr ""
761
+
762
+ #: classes/WP_Piwik/Admin/Settings.php:297
763
+ msgid "Enable cache"
764
+ msgstr ""
765
+
766
+ #: classes/WP_Piwik/Admin/Settings.php:297
767
+ msgid "Cache API calls, which not contain today's values, for a week."
768
+ msgstr ""
769
+
770
+ #: classes/WP_Piwik/Admin/Settings.php:300
771
+ msgid "HTTP connection via"
772
+ msgstr ""
773
+
774
+ #: classes/WP_Piwik/Admin/Settings.php:301
775
+ #: classes/WP_Piwik/Admin/Settings.php:590
776
+ msgid "cURL"
777
+ msgstr ""
778
+
779
+ #: classes/WP_Piwik/Admin/Settings.php:302
780
+ #: classes/WP_Piwik/Admin/Settings.php:590
781
+ msgid "fopen"
782
+ msgstr ""
783
+
784
+ #: classes/WP_Piwik/Admin/Settings.php:303
785
+ msgid ""
786
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
787
+ " or Cloud mode."
788
+ msgstr ""
789
+
790
+ #: classes/WP_Piwik/Admin/Settings.php:305
791
+ msgid "HTTP method"
792
+ msgstr ""
793
+
794
+ #: classes/WP_Piwik/Admin/Settings.php:306
795
+ #: classes/WP_Piwik/Admin/Settings.php:590
796
+ msgid "POST"
797
+ msgstr ""
798
+
799
+ #: classes/WP_Piwik/Admin/Settings.php:307
800
+ #: classes/WP_Piwik/Admin/Settings.php:590
801
+ msgid "GET"
802
+ msgstr ""
803
+
804
+ #: classes/WP_Piwik/Admin/Settings.php:308
805
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
806
+ msgstr ""
807
+
808
+ #: classes/WP_Piwik/Admin/Settings.php:310
809
+ msgid "Disable time limit"
810
+ msgstr ""
811
+
812
+ #: classes/WP_Piwik/Admin/Settings.php:310
813
+ msgid "Use set_time_limit(0) if stats page causes a time out."
814
+ msgstr ""
815
+
816
+ #: classes/WP_Piwik/Admin/Settings.php:312
817
+ msgid "Connection timeout"
818
+ msgstr ""
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:314
821
+ msgid "Disable SSL peer verification"
822
+ msgstr ""
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:314
825
+ #: classes/WP_Piwik/Admin/Settings.php:315
826
+ msgid "not recommended"
827
+ msgstr ""
828
+
829
+ #: classes/WP_Piwik/Admin/Settings.php:315
830
+ msgid "Disable SSL host verification"
831
+ msgstr ""
832
+
833
+ #: classes/WP_Piwik/Admin/Settings.php:317
834
+ msgid "User agent"
835
+ msgstr ""
836
+
837
+ #: classes/WP_Piwik/Admin/Settings.php:318
838
+ msgid "Use the PHP default user agent"
839
+ msgstr ""
840
+
841
+ #: classes/WP_Piwik/Admin/Settings.php:318
842
+ msgid "empty"
843
+ msgstr ""
844
+
845
+ #: classes/WP_Piwik/Admin/Settings.php:319
846
+ msgid "Define a specific user agent"
847
+ msgstr ""
848
+
849
+ #: classes/WP_Piwik/Admin/Settings.php:321
850
+ msgid "Specific user agent"
851
+ msgstr ""
852
+
853
+ #: classes/WP_Piwik/Admin/Settings.php:323
854
+ msgid "Enable DNS prefetch"
855
+ msgstr ""
856
+
857
+ #: classes/WP_Piwik/Admin/Settings.php:323
858
+ #, php-format
859
+ msgid "See %sPiwik Blog%s."
860
+ msgstr ""
861
+
862
+ #: classes/WP_Piwik/Admin/Settings.php:323
863
+ msgid "Add a DNS prefetch tag. "
864
+ msgstr ""
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:325
867
+ msgid "Add data-cfasync=false"
868
+ msgstr ""
869
+
870
+ #: classes/WP_Piwik/Admin/Settings.php:325
871
+ #, php-format
872
+ msgid "See %sCloudFlare Knowledge Base%s."
873
+ msgstr ""
874
+
875
+ #: classes/WP_Piwik/Admin/Settings.php:325
876
+ msgid ""
877
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
878
+ "ignore the script. "
879
+ msgstr ""
880
+
881
+ #: classes/WP_Piwik/Admin/Settings.php:327
882
+ msgid "CDN URL"
883
+ msgstr ""
884
+
885
+ #: classes/WP_Piwik/Admin/Settings.php:329
886
+ msgid "CDN URL (SSL)"
887
+ msgstr ""
888
+
889
+ #: classes/WP_Piwik/Admin/Settings.php:331
890
+ msgid "Force Piwik to use a specific protocol"
891
+ msgstr ""
892
+
893
+ #: classes/WP_Piwik/Admin/Settings.php:332
894
+ msgid "Disabled (default)"
895
+ msgstr ""
896
+
897
+ #: classes/WP_Piwik/Admin/Settings.php:333
898
+ msgid "http"
899
+ msgstr ""
900
+
901
+ #: classes/WP_Piwik/Admin/Settings.php:334
902
+ msgid "https (SSL)"
903
+ msgstr ""
904
+
905
+ #: classes/WP_Piwik/Admin/Settings.php:335
906
+ msgid ""
907
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
908
+ "work with a CDN URL."
909
+ msgstr ""
910
+
911
+ #: classes/WP_Piwik/Admin/Settings.php:337
912
+ msgid "Update notice"
913
+ msgstr ""
914
+
915
+ #: classes/WP_Piwik/Admin/Settings.php:338
916
+ msgid "Show always if WP-Piwik is updated"
917
+ msgstr ""
918
+
919
+ #: classes/WP_Piwik/Admin/Settings.php:339
920
+ msgid "Show only if WP-Piwik is updated and settings were changed"
921
+ msgstr ""
922
+
923
+ #: classes/WP_Piwik/Admin/Settings.php:341
924
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
925
+ msgstr ""
926
+
927
+ #: classes/WP_Piwik/Admin/Settings.php:343
928
+ msgid "Define all file types for download tracking"
929
+ msgstr ""
930
+
931
+ #: classes/WP_Piwik/Admin/Settings.php:343
932
+ msgid ""
933
+ "Replace Piwik's default file extensions for download tracking, divided by a "
934
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
935
+ msgstr ""
936
+
937
+ #: classes/WP_Piwik/Admin/Settings.php:345
938
+ msgid "Set classes to be treated as downloads"
939
+ msgstr ""
940
+
941
+ #: classes/WP_Piwik/Admin/Settings.php:345
942
+ msgid ""
943
+ "Set classes to be treated as downloads (in addition to piwik_download), "
944
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
945
+ "settings."
946
+ msgstr ""
947
+
948
+ #: classes/WP_Piwik/Admin/Settings.php:345
949
+ #: classes/WP_Piwik/Admin/Settings.php:347
950
+ #, php-format
951
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
952
+ msgstr ""
953
+
954
+ #: classes/WP_Piwik/Admin/Settings.php:347
955
+ msgid "Set classes to be treated as outlinks"
956
+ msgstr ""
957
+
958
+ #: classes/WP_Piwik/Admin/Settings.php:347
959
+ msgid ""
960
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
961
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
962
+ msgstr ""
963
+
964
+ #: classes/WP_Piwik/Admin/Settings.php:508
965
+ msgid "Donate"
966
+ msgstr ""
967
+
968
+ #: classes/WP_Piwik/Admin/Settings.php:511
969
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
970
+ msgstr ""
971
+
972
+ #: classes/WP_Piwik/Admin/Settings.php:530
973
+ msgid "My Amazon.de wishlist"
974
+ msgstr ""
975
+
976
+ #: classes/WP_Piwik/Admin/Settings.php:533
977
+ #: classes/WP_Piwik/Admin/Settings.php:575
978
+ msgid "Please don't forget to vote the compatibility at the"
979
+ msgstr ""
980
+
981
+ #: classes/WP_Piwik/Admin/Settings.php:561
982
+ msgid "Thank you very much for your donation"
983
+ msgstr ""
984
+
985
+ #: classes/WP_Piwik/Admin/Settings.php:561
986
+ msgid "the Piwik team itself"
987
+ msgstr ""
988
+
989
+ #: classes/WP_Piwik/Admin/Settings.php:561
990
+ msgid ", and all people flattering this"
991
+ msgstr ""
992
+
993
+ #: classes/WP_Piwik/Admin/Settings.php:562
994
+ msgid ""
995
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
996
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
997
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
998
+ "Sparklines</a> (License: New BSD License)."
999
+ msgstr ""
1000
+
1001
+ #: classes/WP_Piwik/Admin/Settings.php:563
1002
+ msgid "Thank you very much"
1003
+ msgstr ""
1004
+
1005
+ #: classes/WP_Piwik/Admin/Settings.php:563
1006
+ msgid "for your translation work"
1007
+ msgstr ""
1008
+
1009
+ #: classes/WP_Piwik/Admin/Settings.php:564
1010
+ msgid ""
1011
+ "Thank you very much, all users who send me mails containing criticism, "
1012
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1013
+ " much better."
1014
+ msgstr ""
1015
+
1016
+ #: classes/WP_Piwik/Admin/Settings.php:565
1017
+ msgid ""
1018
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1019
+ "if my piece of code is really used!"
1020
+ msgstr ""
1021
+
1022
+ #: classes/WP_Piwik/Admin/Settings.php:574
1023
+ msgid "The best place to get help:"
1024
+ msgstr ""
1025
+
1026
+ #: classes/WP_Piwik/Admin/Settings.php:574
1027
+ msgid "WP-Piwik support forum"
1028
+ msgstr ""
1029
+
1030
+ #: classes/WP_Piwik/Admin/Settings.php:577
1031
+ msgid "Debugging"
1032
+ msgstr ""
1033
+
1034
+ #: classes/WP_Piwik/Admin/Settings.php:578
1035
+ msgid ""
1036
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1037
+ "available:"
1038
+ msgstr ""
1039
+
1040
+ #: classes/WP_Piwik/Admin/Settings.php:581
1041
+ msgid "cURL is"
1042
+ msgstr ""
1043
+
1044
+ #: classes/WP_Piwik/Admin/Settings.php:582
1045
+ #: classes/WP_Piwik/Admin/Settings.php:587
1046
+ msgid "not"
1047
+ msgstr ""
1048
+
1049
+ #: classes/WP_Piwik/Admin/Settings.php:583
1050
+ msgid "available"
1051
+ msgstr ""
1052
+
1053
+ #: classes/WP_Piwik/Admin/Settings.php:586
1054
+ msgid "allow_url_fopen is"
1055
+ msgstr ""
1056
+
1057
+ #: classes/WP_Piwik/Admin/Settings.php:588
1058
+ msgid "enabled"
1059
+ msgstr ""
1060
+
1061
+ #: classes/WP_Piwik/Admin/Settings.php:590
1062
+ msgid "is used."
1063
+ msgstr ""
1064
+
1065
+ #: classes/WP_Piwik/Admin/Settings.php:592
1066
+ msgid "Determined Piwik base URL is"
1067
+ msgstr ""
1068
+
1069
+ #: classes/WP_Piwik/Admin/Settings.php:596
1070
+ msgid "Tools"
1071
+ msgstr ""
1072
+
1073
+ #: classes/WP_Piwik/Admin/Settings.php:598
1074
+ msgid "Run testscript"
1075
+ msgstr ""
1076
+
1077
+ #: classes/WP_Piwik/Admin/Settings.php:599
1078
+ msgid "Sitebrowser"
1079
+ msgstr ""
1080
+
1081
+ #: classes/WP_Piwik/Admin/Settings.php:600
1082
+ msgid "Clear cache"
1083
+ msgstr ""
1084
+
1085
+ #: classes/WP_Piwik/Admin/Settings.php:601
1086
+ msgid "Are you sure you want to clear all settings?"
1087
+ msgstr ""
1088
+
1089
+ #: classes/WP_Piwik/Admin/Settings.php:601
1090
+ msgid "Reset WP-Piwik"
1091
+ msgstr ""
1092
+
1093
+ #: classes/WP_Piwik/Admin/Settings.php:603
1094
+ msgid "Latest support threads on WordPress.org"
1095
+ msgstr ""
1096
+
1097
+ #: classes/WP_Piwik/Admin/Settings.php:654
1098
+ msgid "Settings cleared (except connection settings)."
1099
+ msgstr ""
1100
+
1101
+ #: classes/WP_Piwik/Admin/Settings.php:670
1102
+ msgid "Cache cleared."
1103
+ msgstr ""
1104
+
1105
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1106
+ msgid "site"
1107
+ msgstr ""
1108
+
1109
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1110
+ msgid "sites"
1111
+ msgstr ""
1112
+
1113
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1114
+ msgid "No site configured yet."
1115
+ msgstr ""
1116
+
1117
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1118
+ msgid "Blog ID"
1119
+ msgstr ""
1120
+
1121
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1122
+ msgid "Title"
1123
+ msgstr ""
1124
+
1125
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1126
+ msgid "URL"
1127
+ msgstr ""
1128
+
1129
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1130
+ msgid "Site ID (Piwik)"
1131
+ msgstr ""
1132
+
1133
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1134
+ msgid "Site not created yet."
1135
+ msgstr ""
1136
+
1137
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1138
+ msgid "Statistics"
1139
+ msgstr ""
1140
+
1141
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1142
+ msgid "Currently shown stats:"
1143
+ msgstr ""
1144
+
1145
+ #: classes/WP_Piwik/Request/Php.php:27
1146
+ msgid "Could not resolve"
1147
+ msgstr ""
1148
+
1149
+ #: classes/WP_Piwik/Request/Php.php:27
1150
+ msgid "realpath() returns false"
1151
+ msgstr ""
1152
+
1153
+ #: classes/WP_Piwik/Request/Php.php:39
1154
+ msgid "Class Piwik\\FrontController does not exists."
1155
+ msgstr ""
1156
+
1157
+ #: classes/WP_Piwik/Request/Php.php:42
1158
+ msgid "Class Piwik\\API\\Request does not exists."
1159
+ msgstr ""
1160
+
1161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1162
+ msgid "Piwik Custom Variables"
1163
+ msgstr ""
1164
+
1165
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1166
+ msgid "Name"
1167
+ msgstr ""
1168
+
1169
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1170
+ msgid "Value"
1171
+ msgstr ""
1172
+
1173
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1174
+ msgid "Set custom variables for a page view"
1175
+ msgstr ""
1176
+
1177
+ #: classes/WP_Piwik/Widget.php:91
1178
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1179
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1180
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1181
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1182
+ #: classes/WP_Piwik/Widget/Items.php:23
1183
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1184
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1185
+ #: classes/WP_Piwik/Widget/Overview.php:24
1186
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1187
+ #: classes/WP_Piwik/Widget/Screens.php:35
1188
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1189
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1190
+ #: classes/WP_Piwik/Widget/Systems.php:33
1191
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1192
+ msgid "Piwik error"
1193
+ msgstr ""
1194
+
1195
+ #: classes/WP_Piwik/Widget.php:100
1196
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1197
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1198
+ #: classes/WP_Piwik/Widget/Country.php:39
1199
+ #: classes/WP_Piwik/Widget/Screens.php:37
1200
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1201
+ #: classes/WP_Piwik/Widget/Systems.php:35
1202
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1203
+ msgid "Unique"
1204
+ msgstr ""
1205
+
1206
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1207
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1208
+ msgid "Visits"
1209
+ msgstr ""
1210
+
1211
+ #: classes/WP_Piwik/Widget.php:104
1212
+ msgid "Hits"
1213
+ msgstr ""
1214
+
1215
+ #: classes/WP_Piwik/Widget.php:106
1216
+ msgid "Actions"
1217
+ msgstr ""
1218
+
1219
+ #: classes/WP_Piwik/Widget.php:162
1220
+ msgid "No data available."
1221
+ msgstr ""
1222
+
1223
+ #: classes/WP_Piwik/Widget.php:243
1224
+ msgid "today"
1225
+ msgstr ""
1226
+
1227
+ #: classes/WP_Piwik/Widget.php:248
1228
+ msgid "current month"
1229
+ msgstr ""
1230
+
1231
+ #: classes/WP_Piwik/Widget.php:253
1232
+ msgid "last month"
1233
+ msgstr ""
1234
+
1235
+ #: classes/WP_Piwik/Widget.php:258
1236
+ msgid "current week"
1237
+ msgstr ""
1238
+
1239
+ #: classes/WP_Piwik/Widget.php:263
1240
+ msgid "last week"
1241
+ msgstr ""
1242
+
1243
+ #: classes/WP_Piwik/Widget.php:268
1244
+ msgid "yesterday"
1245
+ msgstr ""
1246
+
1247
+ #: classes/WP_Piwik/Widget.php:293
1248
+ msgid "week"
1249
+ msgstr ""
1250
+
1251
+ #: classes/WP_Piwik/Widget.php:328
1252
+ msgid "last 30 days"
1253
+ msgstr ""
1254
+
1255
+ #: classes/WP_Piwik/Widget.php:330
1256
+ msgid "last 12 "
1257
+ msgstr ""
1258
+
1259
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1260
+ msgid "Browser Details"
1261
+ msgstr ""
1262
+
1263
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1264
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1265
+ msgid "Browser"
1266
+ msgstr ""
1267
+
1268
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1269
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1270
+ #: classes/WP_Piwik/Widget/Country.php:39
1271
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1272
+ #: classes/WP_Piwik/Widget/Screens.php:37
1273
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1274
+ #: classes/WP_Piwik/Widget/Systems.php:35
1275
+ msgid "Percent"
1276
+ msgstr ""
1277
+
1278
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1279
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1280
+ #: classes/WP_Piwik/Widget/Country.php:66
1281
+ #: classes/WP_Piwik/Widget/Screens.php:64
1282
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1283
+ #: classes/WP_Piwik/Widget/Systems.php:62
1284
+ msgid "Others"
1285
+ msgstr ""
1286
+
1287
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1288
+ msgid "Browsers"
1289
+ msgstr ""
1290
+
1291
+ #: classes/WP_Piwik/Widget/Chart.php:19
1292
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1293
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1294
+ msgid "Visitors"
1295
+ msgstr ""
1296
+
1297
+ #: classes/WP_Piwik/Widget/Chart.php:71
1298
+ msgid ""
1299
+ "The graph contains the values shown in the table below (visitors / unique / "
1300
+ "bounces). The red line shows a linear trendline (unique)."
1301
+ msgstr ""
1302
+
1303
+ #: classes/WP_Piwik/Widget/Country.php:18
1304
+ msgid "Countries"
1305
+ msgstr ""
1306
+
1307
+ #: classes/WP_Piwik/Widget/Country.php:39
1308
+ msgid "Country"
1309
+ msgstr ""
1310
+
1311
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1312
+ msgid "E-Commerce"
1313
+ msgstr ""
1314
+
1315
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1316
+ msgid "Conversions"
1317
+ msgstr ""
1318
+
1319
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1320
+ msgid "Visits converted"
1321
+ msgstr ""
1322
+
1323
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1324
+ #: classes/WP_Piwik/Widget/Items.php:27
1325
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1326
+ msgid "Revenue"
1327
+ msgstr ""
1328
+
1329
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1330
+ #: classes/WP_Piwik/Widget/Items.php:32
1331
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1332
+ msgid "Conversion rate"
1333
+ msgstr ""
1334
+
1335
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1336
+ msgid "Conversions (new visitor)"
1337
+ msgstr ""
1338
+
1339
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1340
+ msgid "Visits converted (new visitor)"
1341
+ msgstr ""
1342
+
1343
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1344
+ msgid "Revenue (new visitor)"
1345
+ msgstr ""
1346
+
1347
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1348
+ msgid "Conversion rate (new visitor)"
1349
+ msgstr ""
1350
+
1351
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1352
+ msgid "Conversions (returning visitor)"
1353
+ msgstr ""
1354
+
1355
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1356
+ msgid "Visits converted (returning visitor)"
1357
+ msgstr ""
1358
+
1359
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1360
+ msgid "Revenue (returning visitor)"
1361
+ msgstr ""
1362
+
1363
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1364
+ msgid "Conversion rate (returning visitor)"
1365
+ msgstr ""
1366
+
1367
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1368
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1369
+ msgid "Shortcut"
1370
+ msgstr ""
1371
+
1372
+ #: classes/WP_Piwik/Widget/Items.php:11
1373
+ msgid "E-Commerce Items"
1374
+ msgstr ""
1375
+
1376
+ #: classes/WP_Piwik/Widget/Items.php:26
1377
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1378
+ msgid "Label"
1379
+ msgstr ""
1380
+
1381
+ #: classes/WP_Piwik/Widget/Items.php:28
1382
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1383
+ msgid "Quantity"
1384
+ msgstr ""
1385
+
1386
+ #: classes/WP_Piwik/Widget/Items.php:29
1387
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1388
+ msgid "Orders"
1389
+ msgstr ""
1390
+
1391
+ #: classes/WP_Piwik/Widget/Items.php:30
1392
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1393
+ msgid "Avg. price"
1394
+ msgstr ""
1395
+
1396
+ #: classes/WP_Piwik/Widget/Items.php:31
1397
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1398
+ msgid "Avg. quantity"
1399
+ msgstr ""
1400
+
1401
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1402
+ msgid "E-Commerce Item Categories"
1403
+ msgstr ""
1404
+
1405
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1406
+ msgid "Keywords"
1407
+ msgstr ""
1408
+
1409
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1410
+ #: classes/WP_Piwik/Widget/Search.php:16
1411
+ msgid "Site Search"
1412
+ msgstr ""
1413
+
1414
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1415
+ #: classes/WP_Piwik/Widget/Search.php:25
1416
+ msgid "Keyword"
1417
+ msgstr ""
1418
+
1419
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1420
+ #: classes/WP_Piwik/Widget/Search.php:25
1421
+ msgid "Requests"
1422
+ msgstr ""
1423
+
1424
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1425
+ #: classes/WP_Piwik/Widget/Search.php:25
1426
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1427
+ msgid "Bounced"
1428
+ msgstr ""
1429
+
1430
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1431
+ msgid "Overview"
1432
+ msgstr ""
1433
+
1434
+ #: classes/WP_Piwik/Widget/Overview.php:17
1435
+ msgid "dashboard"
1436
+ msgstr ""
1437
+
1438
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1439
+ msgid "Unique visitors"
1440
+ msgstr ""
1441
+
1442
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1443
+ msgid "Page views"
1444
+ msgstr ""
1445
+
1446
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1447
+ msgid "Total time spent"
1448
+ msgstr ""
1449
+
1450
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1451
+ msgid "Bounce count"
1452
+ msgstr ""
1453
+
1454
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1455
+ msgid "Time/visit"
1456
+ msgstr ""
1457
+
1458
+ #: classes/WP_Piwik/Widget/Overview.php:57
1459
+ msgid "Max. page views in one visit"
1460
+ msgstr ""
1461
+
1462
+ #: classes/WP_Piwik/Widget/Pages.php:16
1463
+ msgid "Pages"
1464
+ msgstr ""
1465
+
1466
+ #: classes/WP_Piwik/Widget/Pages.php:18
1467
+ msgid "Page"
1468
+ msgstr ""
1469
+
1470
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1471
+ msgid "Plugins"
1472
+ msgstr ""
1473
+
1474
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1475
+ msgid "Plugin"
1476
+ msgstr ""
1477
+
1478
+ #: classes/WP_Piwik/Widget/Post.php:43
1479
+ msgid "Min. generation time"
1480
+ msgstr ""
1481
+
1482
+ #: classes/WP_Piwik/Widget/Post.php:44
1483
+ msgid "Max. generation time"
1484
+ msgstr ""
1485
+
1486
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1487
+ msgid "Referrers"
1488
+ msgstr ""
1489
+
1490
+ #: classes/WP_Piwik/Widget/Screens.php:16
1491
+ msgid "Resolutions"
1492
+ msgstr ""
1493
+
1494
+ #: classes/WP_Piwik/Widget/Screens.php:37
1495
+ msgid "Resolution"
1496
+ msgstr ""
1497
+
1498
+ #: classes/WP_Piwik/Widget/Seo.php:13
1499
+ msgid "SEO"
1500
+ msgstr ""
1501
+
1502
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1503
+ msgid "Operation System Details"
1504
+ msgstr ""
1505
+
1506
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1507
+ #: classes/WP_Piwik/Widget/Systems.php:35
1508
+ msgid "Operation System"
1509
+ msgstr ""
1510
+
1511
+ #: classes/WP_Piwik/Widget/Systems.php:14
1512
+ msgid "Operation Systems"
1513
+ msgstr ""
1514
+
1515
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1516
+ msgid "Date"
1517
+ msgstr ""
1518
+
1519
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1520
+ msgid "Page Views"
1521
+ msgstr ""
1522
+
1523
+ #: wp-piwik.php:60
1524
+ #, php-format
1525
+ msgid ""
1526
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1527
+ " Please update PHP to use WP-Piwik."
1528
+ msgstr ""
languages/wp-piwik-de_DE.mo CHANGED
Binary file
languages/wp-piwik-de_DE.po CHANGED
@@ -1,767 +1,1530 @@
1
- # Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
2
- # Copyright (C) 2010 Andr&eacute; Br&auml;kling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
5
- #
6
- #, fuzzy
7
  msgid ""
8
  msgstr ""
9
- "Project-Id-Version: WP-Piwik 0.8.4\n"
10
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
11
- "POT-Creation-Date: 2010-07-19 18:06+0000\n"
12
- "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
  "MIME-Version: 1.0\n"
16
- "Content-Type: text/plain; charset=utf-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
 
 
18
 
19
- #: dashboard/browsers.php:12 dashboard/browsers.php:33
20
- msgid "Browser"
21
- msgstr "Browser"
22
-
23
- #: dashboard/browsers.php:22 dashboard/pages.php:43 dashboard/screens.php:22
24
- #: dashboard/systems.php:22
25
- msgid "Others"
26
- msgstr "Andere"
27
 
28
- #: dashboard/browsers.php:34 dashboard/keywords.php:17 dashboard/pages.php:22
29
- #: dashboard/screens.php:33 dashboard/systems.php:35 dashboard/visitors.php:53
30
- #: dashboard/websites.php:19 wp-piwik.php:305
31
- msgid "Unique"
32
- msgstr "Unique"
33
 
34
- #: dashboard/browsers.php:35 dashboard/plugins.php:33 dashboard/screens.php:34
35
- #: dashboard/systems.php:36
36
- msgid "Percent"
37
- msgstr "Prozent"
38
 
39
- #: dashboard/keywords.php:12
40
- msgid "Keywords"
41
- msgstr "Keywords"
42
 
43
- #: dashboard/keywords.php:17
44
- msgid "Keyword"
45
- msgstr "Keyword"
46
 
47
- #: dashboard/overview.php:12
48
- msgid "Overview"
49
- msgstr "&Uuml;bersicht"
50
 
51
- #: dashboard/overview.php:42 dashboard/visitors.php:24
52
- msgid "Visitors"
53
- msgstr "Besucher"
54
 
55
- #: dashboard/overview.php:43
56
- msgid "Unique visitors"
57
- msgstr "Eindeutige Besucher"
58
 
59
- #: dashboard/overview.php:44
60
- msgid "Page views"
61
- msgstr "Page Views"
62
 
63
- #: dashboard/overview.php:45
64
- msgid "Max. page views in one visit"
65
- msgstr "Max. Seiten/Besuch"
66
 
67
- #: dashboard/overview.php:46
68
- msgid "Total time spent"
69
- msgstr "Verbrachte Zeit"
70
 
71
- msgid "Time/visit"
72
- msgstr "Zeit/Besuch"
 
73
 
74
- #: dashboard/overview.php:47
75
- msgid "Bounce count"
76
- msgstr "Absprungrate"
77
 
78
- #: dashboard/overview.php:49 wp-piwik.php:563
79
- msgid "Shortcut"
80
- msgstr "Shortcut"
81
 
82
- #: dashboard/pages.php:13
83
- msgid "Pages"
84
- msgstr "Seiten"
 
85
 
86
- #: dashboard/pages.php:21
87
- msgid "Page"
88
- msgstr "Seite"
 
89
 
90
- #: dashboard/pages.php:23 dashboard/plugins.php:32 dashboard/visitors.php:52
91
- msgid "Visits"
92
- msgstr "Besuche"
 
 
 
93
 
94
- #: dashboard/plugins.php:12 dashboard/plugins.php:31
95
- msgid "Plugins"
96
- msgstr "Plugins"
 
 
 
97
 
98
- #: dashboard/screens.php:12 dashboard/screens.php:32
99
- msgid "Resolution"
100
- msgstr "Aufl&ouml;sung"
 
 
 
101
 
102
- #: dashboard/systems.php:12 dashboard/systems.php:34
103
- msgid "Operating System"
104
- msgstr "Betriebssystem"
 
 
 
105
 
106
- #: dashboard/visitors.php:51
107
- msgid "Date"
108
- msgstr "Datum"
109
 
110
- #: dashboard/visitors.php:54
111
- msgid "Bounced"
112
- msgstr "Abspr&uuml;nge"
113
 
114
- #: dashboard/visitors.php:67
115
- msgid "Unique TOTAL"
116
- msgstr "Unique GESAMT"
117
 
118
- #: dashboard/visitors.php:67
119
- msgid "Sum"
120
- msgstr "Summe"
121
 
122
- #: dashboard/visitors.php:67
123
- msgid "Avg"
124
- msgstr "Durchschnitt"
125
 
126
- #: dashboard/websites.php:12
127
- msgid "Websites"
128
- msgstr "Webseiten"
 
 
 
 
129
 
130
- #: dashboard/websites.php:18
131
- msgid "Website"
132
- msgstr "Webseite"
133
 
134
- #: wp-piwik.php:110 wp-piwik.php:365
135
- msgid "Piwik Statistics"
136
- msgstr "Piwik Statistiken"
137
 
138
- #. #-#-#-#-# plugin.pot (WP-Piwik 0.8.0) #-#-#-#-#
139
- #. Plugin Name of the plugin/theme
140
- #: wp-piwik.php:111 wp-piwik.php:122 wp-piwik.php:123 wp-piwik.php:146
141
- msgid "WP-Piwik"
142
- msgstr "WP-Piwik"
143
 
144
- #: wp-piwik.php:130 wp-piwik.php:131
145
- msgid "WPMU-Piwik"
146
- msgstr "WPMU-Piwik"
 
 
147
 
148
- #: wp-piwik.php:142 wp-piwik.php:557
149
- msgid "yesterday"
150
- msgstr "gestern"
 
151
 
152
- #: wp-piwik.php:143 wp-piwik.php:558
153
- msgid "today"
154
- msgstr "heute"
155
 
156
- #: wp-piwik.php:144 wp-piwik.php:559
157
- msgid "last30"
158
- msgstr "letzte 30 Tage"
 
159
 
160
- #: wp-piwik.php:144 wp-piwik.php:559
161
- msgid "last 30 days"
162
- msgstr "letzte 30 Tage"
 
 
163
 
164
- #: wp-piwik.php:179
165
- msgid "Settings"
166
- msgstr "Einstellungen"
 
167
 
168
- #: wp-piwik.php:381
169
- msgid "Change"
170
- msgstr "&Auml;ndern"
 
 
171
 
172
- #: wp-piwik.php:382
173
- msgid "Currently shown stats:"
174
- msgstr "Derzeit gezeigte Statistiken:"
 
175
 
176
- #: wp-piwik.php:383
177
- msgid "Current shown stats: <strong>Overall</strong>"
178
- msgstr "Derzeit gezeigte Statistiken: <strong>Gesamt</strong>"
 
 
179
 
180
- #: wp-piwik.php:448
181
- msgid "WP-Piwik Settings"
182
- msgstr ""
183
 
184
- #: wp-piwik.php:455 wp-piwik.php:617
185
- msgid "Account settings"
186
- msgstr "Account-Einstellungen"
187
 
188
- #: wp-piwik.php:457 wp-piwik.php:619
189
  msgid "Piwik URL"
190
  msgstr "Piwik URL"
191
 
192
- #: wp-piwik.php:461 wp-piwik.php:623
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193
  msgid "Auth token"
194
  msgstr "Auth Token"
195
 
196
- #: wp-piwik.php:467 wp-piwik.php:628
197
- msgid "To enable Piwik statistics, please enter your Piwik"
198
- " base URL (like http://mydomain.com/piwik) and your"
199
- " personal authentification token. You can get the token"
200
- " on the API page inside your Piwik interface. It looks"
201
- " like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
202
- msgstr "Um Piwik Statistiken abrufen zu können, musst Du die URL zu Deiner Piwik-Installation (z.B. http://mydomain.com/piwik) und deinen persönlichen Authentifizierungs-Schüssel (Token) angeben. Du findest den Token auf der API-Seite in Deinem Piwik-Interface. Er sieht z.B. so aus: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
 
 
 
203
 
204
- #: wp-piwik.php:477
 
 
 
 
 
 
 
 
 
 
 
205
  msgid ""
206
- "<strong>Important note:</strong> If you do not host this blog on your own, "
207
- "your site admin is able to get your auth token from the database. So he is "
208
- "able to access your statistics. You should never use an auth token with more "
209
- "than simple view access!"
210
- msgstr "<strong>Wichtiger Hinweis:</strong> Wenn Du dieses Blog nicht selber hostest, kann Dein Site Admin Deinen Auth Token aus der Datenbank auslesen. Dadurch kann er auf Deine Statistiken zugreifen. Du solltest niemals einen Auth Token mit mehr als einfachen View-Rechten verwenden! "
211
 
212
- #: wp-piwik.php:485 wp-piwik.php:489
213
- msgid "An error occured"
214
- msgstr "Ein Fehler ist aufgetreten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215
 
216
- #: wp-piwik.php:486
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
217
  msgid ""
218
- "Please check URL and auth token. You need at least view access to one site."
219
- msgstr "Bitte &uuml;berpr&uuml;fe die URL und den auth token. Du ben&ouml;tigst zumindest View-Zugriff auf eine Seite."
 
 
220
 
221
- #: wp-piwik.php:492
222
- msgid "Choose site"
223
- msgstr "Seite"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
 
225
- #: wp-piwik.php:511 wp-piwik.php:547 wp-piwik.php:584 wp-piwik.php:658
226
- msgid "Save settings"
227
- msgstr "Einstellungen speichern"
228
 
229
- #: wp-piwik.php:515 wp-piwik.php:643
230
- msgid "Tracking settings"
231
- msgstr "Tracking-Einstellungen"
232
 
233
- #: wp-piwik.php:521
234
- msgid "Add script"
235
- msgstr "Tracking"
236
 
237
- #: wp-piwik.php:525
238
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
239
- msgstr "Wenn Dein Template wp_footer() verwendet, kann WP-Piwik den JavaScript Code automatisch in Dein Blog einf&uuml;gen."
240
 
241
- #: wp-piwik.php:528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
242
  msgid "Track 404"
243
  msgstr "404-Tracking"
244
 
245
- #: wp-piwik.php:532
246
- msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
 
247
  msgstr "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten hinzuf&uuml;gen."
248
 
249
- #: wp-piwik.php:536 wp-piwik.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
250
  msgid "Tracking filter"
251
  msgstr "Tracking-Filter"
252
 
 
253
  msgid "Choose users by user role you do <strong>not</strong> want to track."
254
  msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst."
255
 
256
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
257
- msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst. Dazu muss die &quot;Tracking&quot;-Funktion aktiviert sein."
 
258
 
259
- #: wp-piwik.php:551
260
- msgid "Statistic view settings"
261
- msgstr "Statistik-Einstellungen"
262
-
263
- #: wp-piwik.php:554
264
- msgid "Dashboard"
265
- msgstr "Dashboard"
266
 
267
- #: wp-piwik.php:556
268
- msgid "No"
269
- msgstr "Nein"
270
 
271
- #: wp-piwik.php:557 wp-piwik.php:558 wp-piwik.php:559
272
- msgid "Yes"
273
- msgstr "Ja"
274
 
275
- #: wp-piwik.php:562
276
- msgid "Display a dashboard widget to your WordPress dashboard."
277
- msgstr "F&uuml;gt Deinem WordPress Dashboard ein Widget hinzu."
278
 
279
- #: wp-piwik.php:567
280
- msgid "Display a shortcut to Piwik itself."
281
- msgstr "Zeigt einen Shortcut zu Piwik an."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
282
 
283
- #: wp-piwik.php:568
284
- msgid "Display to"
285
- msgstr "Anzeigen f&uuml;r"
286
 
287
- #: wp-piwik.php:579
288
- msgid "Choose user roles allowed to see the statistics page."
289
- msgstr "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;rfen."
290
 
291
- #: wp-piwik.php:612
292
- msgid "WPMU-Piwik Settings"
293
- msgstr "WPMU-Piwik Einstellungen"
294
-
295
- #: wp-piwik.php:636
296
- msgid ""
297
- "<strong>Important note:</strong> You have to choose a token which provides "
298
- "administration access. WPMU-Piwik will create new Piwik sites for each blog "
299
- "if it is shown the first time and it is not added yet. All users can access "
300
- "their own statistics only, while site admins can access all statistics. To "
301
- "avoid conflicts, you should use a clean Piwik installation without other "
302
- "sites added. The provided themes should use wp_footer, because it adds the "
303
- "Piwik javascript code to each page."
304
- msgstr "<strong>Wichtiger Hinweis:</strong> Du solltest einen Token mit Adminstrator-Zugang angeben. WPMU-Piwik erstellt "
305
- "f&uuml;r jedes Blog eine eigene Piwik Site, sobald es zum ersten Mal angezeigt wird. Nutzer k&ouml;nnen nur ihre eigenen "
306
- "Statistiken einsehen, w&auml;hrend Site Admins Zugriff auf alle Statistiken haben. Um Konflikte zu vermeiden, solltest Du "
307
- "eine neue Piwik-Installation ohne andere Sites verwenden. Alle verwendeten Themes sollten wp_footer benutzen, da diese "
308
- "Funktion den Piwik JavaScript Code zu jeder Seite hinzuf&uuml;gt."
309
-
310
- #: wp-piwik.php:671
311
- msgid "If you like WP-Piwik, you can support its development by a donation:"
312
- msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer Spende f&ouml;rdern:"
313
 
314
- #: wp-piwik.php:687
315
- msgid "My Amazon.de wishlist (German)"
316
- msgstr "Meine Amazon.de Wunschliste (Deutsch)"
317
 
318
- #. Plugin URI of the plugin/theme
319
- msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
320
- msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
321
 
322
- #. Description of the plugin/theme
323
  msgid ""
324
- "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
325
- "footer."
326
- msgstr "F&uuml;gt Piwik-Statistiken zu Deinem Dashboard-Men&uuml; hinzu und "
327
- "kann den Piwik-Tracking-Code in den Blog-Footer einf&uuml;gen."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
 
329
- #. Author of the plugin/theme
330
- msgid "Andr&eacute; Br&auml;kling"
331
- msgstr "Andr&eacute; Br&auml;kling"
 
 
332
 
333
- #. Author URI of the plugin/theme
334
- msgid "http://www.braekling.de"
335
- msgstr "http://www.braekling.de"
336
 
337
- msgid "Credits"
338
- msgstr "Danksagungen"
 
339
 
340
- msgid "Thank you very much for your donation"
341
- msgstr "Vielen Dank f&uuml;r eure Spenden"
 
342
 
343
- msgid "and all people flattering this"
344
- msgstr "und alle Nutzern, die bei Flatter klicken"
 
 
345
 
346
- msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
347
- msgstr "Die Graphen werden mit <a href=\"http://www.jqplot.com/\">jqPlot</a> erstellt, einem Open-Source-Projekt von Chris Leonello. Probiere es mal aus! (Lizenz: GPL 2.0 und MIT)"
 
 
348
 
349
- msgid "Thank you very much"
350
- msgstr "Vielen Dank"
 
 
 
351
 
352
- msgid ", and"
353
- msgstr " und"
 
354
 
355
- msgid "for your translation work"
356
- msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
 
 
357
 
358
- msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
359
- msgstr "Vielen Dank an alle Nutzer, die mir Mails mit Kritik, Lob, Featurew&uuml;nsche und Bugmeldungen senden. Ihr helft mir dabei, WP-Piwik viel besser zu machen."
 
 
360
 
361
- msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
362
- msgstr "Vielen Dank an <strong>Dich</strong> f&uuml;r die Nutzung meines Plugins. Es ist das gr&ouml;&szlig;te Lob, wenn mein Code tats&auml;chlich benutzt wird!"
 
363
 
364
- msgid "Changes saved"
365
- msgstr "&Auml;nderungen gespeichert"
 
366
 
367
- msgid "%s %s installed."
368
- msgstr "%s %s installiert."
 
369
 
370
- msgid "Next you should connect to Piwik"
371
- msgstr "Als n&auml;chstes solltest Du eine Verbindung zu Piwik herstellen"
 
372
 
373
- msgid "Please validate your configuration"
374
- msgstr "Bitte &uuml;berpr&uuml;fe Deine Konfiguration"
 
375
 
376
- msgid "Default date"
377
- msgstr "Default-Datum"
 
 
378
 
379
- msgid "Default date shown on statistics page."
380
- msgstr "Default-Datum, das auf der Statistik-Seite gezeigt wird."
 
381
 
382
- msgid "Dashboard data"
383
- msgstr "Board-Daten"
 
384
 
385
- msgid "Display an overview widget to your WordPress dashboard."
386
- msgstr "Zeigt ein &Uuml;bersichts-Widget auf dem WordPress-Dashboard."
 
387
 
388
- msgid "Board chart"
389
- msgstr "Board-Chart"
 
390
 
391
- msgid "Display a visitor graph widget to your WordPress dashboard."
392
- msgstr "Zeigt einen Besucher-Graph als Widget auf dem WordPress-Dashboard."
 
393
 
394
- msgid "No data available."
395
- msgstr "Keine Daten vorhanden."
 
396
 
397
- msgid "Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site."
398
- msgstr "Aktiviere diesen Haken, um Dein Blog &uuml;ber seine URL automatisch aus Deinen Piwik-Seiten auszuw&auml;hlen. Wenn Dein Blog bisher nicht zu Piwik hinzugef&uuml;gt wurde, wird WP-Piwik eine neue Seite hinzuf&uuml;gen."
 
399
 
400
- msgid "If you add the Piwik javascript code by wp_footer(),"
401
- msgstr "Wenn Du den Piwik-Code per wp_footer() in Dein Blog einbindest,"
 
 
402
 
403
- msgid "WP-Piwik can automatically use js/index.php instead of piwik.js. See"
404
- msgstr "WP-Piwik kann automatisch js/index.php statt piwik.js verwenden. Siehe"
 
405
 
406
- msgid "WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
407
- msgstr "WP-Piwik kann automatisch den Tracking Code zwingen, die Daten via POST zu senden. Siehe"
 
408
 
409
- msgid "Avoid mod_security"
410
- msgstr "Umgehe mod_security"
 
 
411
 
412
- msgid "Determined site"
413
- msgstr "Ermittelte Seite"
 
 
 
414
 
415
- msgid "Auto config"
416
- msgstr "Auto-Konfiguration"
 
417
 
418
- msgid "Use js/index.php"
419
- msgstr "Nutze js/index.php"
 
420
 
421
- msgid "Show overview"
422
- msgstr "Zeige &Uuml;bersicht"
 
423
 
424
- msgid "Hide overview"
425
- msgstr "Zeige keine &Uuml;bersicht"
 
426
 
427
- msgid "SEO <em>(slow!)</em>"
428
- msgstr "SEO <em>(langsam!)</em>"
 
429
 
430
- msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
431
- msgstr "Zeige SEO-Rankingdaten auf der Statistik-Seite. <em>(Langsam!)</em>"
 
432
 
433
- msgid "Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
434
- msgstr "Konfiguriere WP-Piwik-Widgets, die auf Deinem WordPress Home Dashboard erscheinen sollen."
 
 
 
435
 
436
- msgid "SEO data"
437
- msgstr "SEO-Daten"
 
438
 
439
- msgid "the Piwik team itself"
440
- msgstr "das Piwik-Team selbst"
 
441
 
442
- msgid "Metabox support inspired by"
443
- msgstr "Die Metabox-Unterst&uuml;tzung wurde inspiriert von"
 
444
 
445
- msgid "WP-Piwik support board"
446
- msgstr "WP-Piwik Support Board"
 
447
 
448
- msgid "no registration required, English &amp; German"
449
- msgstr "keine Registrierung erforderlich, Englisch &amp; Deutsch"
 
450
 
451
- msgid "WordPress.org forum about WP-Piwik"
452
- msgstr "WordPress.org Forum &uuml;ber WP-Piwik"
 
 
 
453
 
454
- msgid "WordPress.org registration required, English"
455
- msgstr "Registrierung bei WordPress.org notwendig, Englisch"
 
456
 
457
- msgid "Please don't forget to vote the compatibility at the"
458
- msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
 
 
460
  msgid "Donate"
461
  msgstr "Spenden"
462
 
 
 
 
 
 
463
  msgid "My Amazon.de wishlist"
464
  msgstr "Meine Wunschliste bei Amazon.de"
465
 
466
- msgid "Piwik error"
467
- msgstr "Piwik-Fehler"
468
-
469
- msgid "Important"
470
- msgstr "Wichtig"
471
-
472
- msgid "Thanks for using WP-Piwik!"
473
- msgstr "Vielen Dank f&uuml;r die Verwendung von WP-Piwik!"
474
-
475
- msgid "Auto site configuration is"
476
- msgstr "Die Auto-Konfiguration ist"
477
 
478
- msgid "Tracking code insertion is"
479
- msgstr "Das Einf&uuml;gen des Tracking-Codes ist"
 
480
 
481
- msgid "enabled"
482
- msgstr "aktiviert"
 
483
 
484
- msgid "disabled"
485
- msgstr "deaktiviert"
 
486
 
487
- msgid "You are using Piwik"
488
- msgstr "Du verwendest Piwik"
 
 
 
 
 
489
 
490
- msgid "and"
491
- msgstr "und"
 
492
 
493
- msgid "Error: cURL is not enabled and fopen is not allowed to open URLs. WP-Piwik won't be able to connect to Piwik."
494
- msgstr "Fehler: cURL ist nicht aktiviert und fopen darf keine URLs &ouml;ffnen. WP-Piwik kann so keine Verbindung zu Piwik aufbauen."
 
495
 
496
- msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database."
497
- msgstr "<strong>Wichtiger Hinweis:</strong> Wenn Du dieses Blog nicht selber hostest, kann Dein Site Admin Deinen Auth Token aus der Datenbank auslesen."
 
 
 
 
498
 
499
- msgid "Add tracking code"
500
- msgstr "Tracking-Code einf&uuml;gen"
 
 
 
501
 
502
- msgid "Tracking code preview"
503
- msgstr "Tracking-Code Vorschau"
 
504
 
505
- msgid "Piwik Settings"
506
- msgstr "Piwik Einstellungen"
 
507
 
508
- msgid "Statistics"
509
- msgstr "Statistiken"
 
510
 
511
- msgid "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:"
 
 
 
512
  msgstr "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;gbar sein:"
513
 
 
514
  msgid "cURL is"
515
  msgstr "cURL ist"
516
 
517
- msgid "allow_url_fopen is"
518
- msgstr "allow_url_fopen ist"
519
-
520
  msgid "not"
521
  msgstr "nicht"
522
 
 
523
  msgid "available"
524
  msgstr "verf&uuml;gbar"
525
 
526
- msgid "Test script result"
527
- msgstr "Ergebnis des Testskripts"
 
 
 
 
 
528
 
529
- msgid "Please confirm your reset request"
530
- msgstr "Bitte best&auml;tige Deine Reset-Anweisung"
 
531
 
532
- msgid "YES, please reset <strong>all</strong> WP-Piwik settings <strong>except</strong> auth token and Piwi URL."
533
- msgstr "JA, bitte setze <strong>alle</strong> WP-Piwik Einstellung au&szlig;er Auth Token und Piwik URL zur&uuml;ck."
 
534
 
535
- msgid "WP-Piwik reset done"
536
- msgstr "WP-Piwik wurde zur&uuml;ckgesetzt"
 
537
 
538
- msgid "Get more debug information"
539
- msgstr "Erhalte weitere Debug-Informationen"
 
540
 
541
- msgid "Run test script"
542
- msgstr "Starte Testskript"
 
543
 
544
- msgid "Get site configuration details"
545
- msgstr "Ermittle Detailinformationen zur Seitenkonfiguration"
 
546
 
547
- msgid "Reset WP-Piwik settings except auth token and Piwik URL"
548
- msgstr "Setzte die Einstellungen von WP-Piwik mit Ausnahme von Auth Token und Piwik URL zur&uuml;ck."
 
549
 
550
- msgid "You have to enter your auth token and the Piwik URL before you can access more debug functions."
551
- msgstr "Du musst Deinen Auth Token und die Piwik URL eingeben, bevor Du auf weitere Debug-Funktionen zugreifen kannst."
 
552
 
 
553
  msgid "Latest support threads on WordPress.org"
554
  msgstr "Die letzten Support-Beitr&auml;ge auf WordPress.org"
555
 
556
- msgid "This will not affect Piwik itself. Resetting large networks may take some minutes."
557
- msgstr "Dies hat keinen Einfluss auf Piwik selbst. Das Zur&uuml;cksetzen gro&szlig;er Netzwerke kann einige Minuten dauern."
 
558
 
559
- msgid ", and all people flattering this"
560
- msgstr " und allen, die WP-Piwik flattrn"
561
-
562
- msgid "Disable time limit"
563
- msgstr "Zeitlimit deaktivieren"
564
 
565
- msgid "Use set_time_limit(0) if stats page causes a time out."
566
- msgstr "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
 
567
 
568
- msgid "in network mode"
569
- msgstr "im Netzwerk-Modus"
 
570
 
571
- msgid "To enable Piwik statistics, please enter"
572
- msgstr "Um die Piwik-Statistiken zu aktivieren, gibt bitte die folgenden Daten ein:"
 
573
 
574
- msgid "your Piwik base URL (like http://mydomain.com/piwik) or your Piwik server path (like /var/www/mydomain.com/httpdocs/piwik/)"
575
- msgstr "Die URL Deiner Piwik-Installation (z.B. http://mydomain.com/piwik) oder den Serverpfad zu Deiner Piwik-Installation (z.B. /var/www/mydomain.com/httpdocs/piwik/)"
 
576
 
577
- msgid "your personal Piwik authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
578
- msgstr "Deinen pers&ouml;nlichen Piwik Authentifikations-Token. Du findest ihn auf der API-Seite des Piwik-Interfaces. Er sieht z.B. so aus: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
 
579
 
580
- msgid "No idea what I'm talking about?"
581
- msgstr "Keine Idee, wovon ich rede?"
 
582
 
583
- msgid "Get help."
584
- msgstr "Hier gibt es Hilfe."
 
585
 
586
- msgid "Piwik path"
587
- msgstr "Piwik Pfad"
 
588
 
589
- msgid "Disable cookies"
590
- msgstr "Cookies deaktivieren"
 
591
 
592
- msgid "Disable all tracking cookies for a visitor."
593
- msgstr "Schalte alle Tracking-Cookies f&uuml;r Besucher ab."
 
594
 
595
- msgid "Show graph on WordPress Toolbar"
596
- msgstr "Zeige einen Graphen in der WordPress Toolbar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
597
 
598
- msgid "Display the last 30 days visitor stats on WordPress Toolbar."
599
- msgstr "Zeige die Besucherstatistik der letzten 30 Tage in der WordPress Toolbar an."
 
 
 
 
 
 
 
 
600
 
601
- msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a> (License: GPL 2.0 and MIT) and <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (License: New BSD License)."
602
- msgstr "Die Graphen werden mit <a href=\"http://www.jqplot.com/\">jqPlot</a> (Lizenz: GPL 2.0 and MIT) und <a href=\"http://omnipotent.net/jquery.sparkline/\">jQuery Sparklines</a> (Lizenz: New BSD License) erstellt."
 
 
603
 
604
- msgid "Tabbed settings page suggested by the"
605
- msgstr "Die Tabs f&uuml;r die Einstellungen wurden inspiriert von einem Artikel im"
 
606
 
607
- msgid "If you like to use the PHP API and also to enable tracking by WP-Piwik, please enter your Piwik URL, too. Otherwise your tracking code may be erroneous."
608
- msgstr "Falls Du die PHP API verwenden und das Tracking per WP-Piwik aktivieren willst, gib bitte auch Deine Piwik URL an. Andernfalls k&ouml;nnte Dein Tracking Code fehlerhaft sein."
 
609
 
610
- msgid "Title"
611
- msgstr "Titel"
 
612
 
613
- msgid "Site ID (Piwik)"
614
- msgstr "Seiten-ID (Piwik)"
 
615
 
616
- msgid "Expert Settings"
617
- msgstr "Expertenkonfiguration"
 
618
 
619
- msgid "Disable SSL peer verification"
620
- msgstr "SSL Peer-Verifikation deaktivieren"
 
621
 
622
- msgid "not recommended"
623
- msgstr "Nicht empfohlen"
 
624
 
625
- msgid "Invalid path. Please enter the file path to Piwik."
626
- msgstr "Ung&uuml;ltiger Pfad. Bitte gib den Dateipfad von Piwik an."
 
627
 
628
- msgid "Enable shortcodes in post or page content."
629
- msgstr "Aktiviere Shortcodes innerhalb von Artikeln und Seiten."
 
630
 
631
- msgid "Connection timeout"
632
- msgstr "Verbindungs-Timeout"
 
633
 
634
- msgid "User agent"
635
- msgstr "User Agent"
 
636
 
637
- msgid "Default tracking"
638
- msgstr "Standard-Tracking"
 
639
 
640
- msgid "Use proxy script"
641
- msgstr "Verwende Proxy-Skript"
 
642
 
643
- msgid "WP-Piwik uses the Piwik default tracking code."
644
- msgstr "WP-Piwik verwendet den normalen Tracking Code."
 
 
645
 
646
- msgid "WP-Piwik can automatically use js/index.php instead of piwik.js and piwik.php. See"
647
- msgstr "WP-Piwik kann automatisch js/index.php statt piwik.js und piwik.php verwenden. Siehe"
 
 
 
 
 
 
 
648
 
649
- msgid "WP-Piwik will use the piwik.php proxy script. See"
650
- msgstr "WP-Piwik benutzt das piwik.php-Proxy-Skript, siehe"
 
 
 
 
 
 
651
 
652
- msgid "Enable shortcodes"
653
- msgstr "Aktiviere Shortcodes"
 
654
 
655
- msgid "Requests"
656
- msgstr "Anfragen"
 
 
 
657
 
658
- msgid "Site Search Keywords"
659
- msgstr "Suchanfragen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
660
 
661
- msgid "Site Search without Results"
662
- msgstr "Suchanfragen ohne Ergebnisse"
 
663
 
664
- msgid "Disabled in proxy mode."
665
- msgstr "Im Proxy-Modus deaktiviert."
 
 
666
 
667
- msgid "Leave blank if you do not want to define a CDN URL or you do not know what this is."
668
- msgstr "Einfach freilassen, falls Du keine CDN URL definieren m&ouml;chtest oder nicht wei&szlig;t, worum es geht."
 
 
669
 
670
- msgid "Adds the &lt;noscript&gt; code to your footer."
671
- msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
 
 
672
 
673
- msgid "Use Piwik's advanced Site Search Analytics feature. See"
674
- msgstr "Benutze Piwiks erweiterte Site Search Analyse. Siehe"
 
 
675
 
676
- msgid "Enable tracking for visitors without JavaScript (not recommended). See"
677
- msgstr "Aktiviere das Tracking von Besuchern ohne JavaScript (nicht empfohlen). Siehe"
 
 
678
 
679
- msgid "Add rec parameter to noscript code"
680
- msgstr "F&uuml;ge rec-Parameter zum noscript Code hinzu"
 
681
 
682
- msgid "Add &lt;noscript&gt;"
683
- msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
 
684
 
685
- msgid "Cache API calls, which not contain today's values, for a week"
686
- msgstr "Cache alle API-Aufrufe, die keine heutigen Daten enthalten, f&uuml;r eine Woche"
 
 
687
 
688
- msgid "Enable cache"
689
- msgstr "Cache einschalten"
 
 
690
 
691
- msgid "This will add Piwik campaign parameters to the RSS feed links."
692
- msgstr "Dadurch werden Piwik Kampagnen-Parameter an die Links des RSS-Feeds angehangen."
 
 
693
 
694
- msgid "Campaign"
695
- msgstr "Kampagne"
 
 
 
696
 
697
- msgid "Keyword: post name."
698
- msgstr "Schl&uuml;sselwort: Name des Beitrags."
 
699
 
700
- msgid "Enable to track posts in feeds via tracking pixel."
701
- msgstr "Aktivieren, um Beir&auml;ge im Feed via Tracking-Pixel zu z&auml;hlen."
 
702
 
703
- msgid "Enable to track users on admin pages (remember to configure the tracking filter appropriately)."
704
- msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
 
705
 
706
- msgid "Track RSS feed links as campaign"
707
- msgstr "Links in RSS-Feeds als Kampagne tracken"
 
708
 
709
- msgid "Show stats about single posts at the post edit admin page."
710
- msgstr "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
 
711
 
712
- msgid "Show per post stats"
713
- msgstr "Zeige Beitrags-Statistiken"
 
714
 
715
- msgid "Add data-cfasync=false"
716
- msgstr "data-cfasync=false einf&uuml;gen"
 
717
 
718
- msgid "Track admin pages"
719
- msgstr "Admin-Seiten tracken"
 
720
 
721
- msgid "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to ignore the script."
722
- msgstr "Fügt data-cfasync=false zum Script-Tag hinzu, z.B. damit Rocket Loader das Skript ignoriert."
 
723
 
724
- msgid "Add annotation on new post"
725
- msgstr "Notiz bei neuem Post"
 
726
 
727
- msgid "Add a Piwik annotation on each new post, see"
728
- msgstr "F&uuml;gt in Piwik f&uuml;r jeden neuen Post eine Notiz hinzu, siehe"
 
729
 
730
- msgid "JavaScript code position"
731
- msgstr "Position des JavaScript-Codes"
 
732
 
733
- msgid "Choose whether the JavaScript code is added to the footer or the header."
734
- msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
 
735
 
736
- msgid "Show custom variables box"
737
- msgstr "Zeige Custom-Variables-Box"
 
738
 
739
- msgid "Show a custom vars edit box on post edit page."
740
- msgstr "Zeige eine Custom-Variables-Eingabebox auf den Edit-Post-Seiten."
 
741
 
742
- msgid "Limit cookie lifetime"
743
- msgstr "Cookie-Lebensdauer beschr&auml;nken"
 
744
 
745
- msgid "Limit cookie lifetime as follows"
746
- msgstr "Beschr&auml;nke die Cookie-Lebensdauer wie folgt"
 
747
 
748
- msgid "Session timeout (seconds)"
749
- msgstr "Session-Timeout (Sekunden)"
 
750
 
751
- msgid "Visitor timeout (seconds)"
752
- msgstr "Besucher-Timeout (Sekunden)"
 
753
 
754
- msgid "Track visitors across all subdomains"
755
- msgstr "Besucher &uuml;ber alle Subdomains aufzeichnen"
 
 
756
 
757
- msgid "Adds *.-prefix to cookie domain."
758
- msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
 
759
 
760
- msgid "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s. Please update PHP to use WP-Piwik."
761
- msgstr "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
 
762
 
763
- msgid "Track visitors across all alias URLs"
764
- msgstr "Besucher &uuml;ber alle alternative URLs aufzeichnen"
 
765
 
766
- msgid "Adds *.-prefix to tracked domain."
767
- msgstr "F&uuml;gt ein *.-Pr&auml;fix zur getrackten Domain hinzu."
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
+ # André Bräkling, 2015-2017
 
 
5
  msgid ""
6
  msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
9
+ "PO-Revision-Date: 2017-10-09 20:51+0000\n"
10
+ "Last-Translator: André Bräkling\n"
11
+ "Language-Team: German (Germany) (http://www.transifex.com/piwik/wp-piwik/language/de_DE/)\n"
 
12
  "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: de_DE\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
18
+ #: classes/WP_Piwik.php:203
19
+ #, php-format
20
+ msgid "%s %s installed."
21
+ msgstr "%s %s installiert."
 
 
 
 
22
 
23
+ #: classes/WP_Piwik.php:203
24
+ msgid "Next you should connect to Piwik"
25
+ msgstr "Als n&auml;chstes solltest Du eine Verbindung zu Piwik herstellen"
 
 
26
 
27
+ #: classes/WP_Piwik.php:237
28
+ #, php-format
29
+ msgid "%s updated to %s."
30
+ msgstr "%s aktualisiert auf %s."
31
 
32
+ #: classes/WP_Piwik.php:237
33
+ msgid "Please validate your configuration"
34
+ msgstr "Bitte &uuml;berpr&uuml;fe Deine Konfiguration"
35
 
36
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
37
+ msgid "Settings"
38
+ msgstr "Einstellungen"
39
 
40
+ #: classes/WP_Piwik.php:272
41
+ msgid "Important"
42
+ msgstr "Wichtig"
43
 
44
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
45
+ msgid "Piwik Statistics"
46
+ msgstr "Piwik Statistiken"
47
 
48
+ #: classes/WP_Piwik.php:499
49
+ msgid "Configure WP-Piwik"
50
+ msgstr "Konfiguriere WP-Piwik"
51
 
52
+ #: classes/WP_Piwik.php:992
53
+ msgid "An error occured"
54
+ msgstr "Ein Fehler ist aufgetreten"
55
 
56
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
57
+ msgid "Support"
58
+ msgstr "Support"
59
 
60
+ #: classes/WP_Piwik.php:1275
61
+ msgid "Cheatin&#8217; uh?"
62
+ msgstr "Schummelst wohl?"
63
 
64
+ #: classes/WP_Piwik/Admin/Settings.php:24
65
+ msgid "Reload"
66
+ msgstr "Neu laden"
67
 
68
+ #: classes/WP_Piwik/Admin/Settings.php:27
69
+ msgid "Changes saved."
70
+ msgstr "&Auml;nderungen gespeichert"
71
 
72
+ #: classes/WP_Piwik/Admin/Settings.php:55
73
+ msgid "Thanks for using WP-Piwik!"
74
+ msgstr "Vielen Dank f&uuml;r die Verwendung von WP-Piwik!"
75
 
76
+ #: classes/WP_Piwik/Admin/Settings.php:58
77
+ #, php-format
78
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
79
+ msgstr "WP-Piwik %s wurde erfolgreich mit Piwik %s verbunden."
80
 
81
+ #: classes/WP_Piwik/Admin/Settings.php:58
82
+ #, php-format
83
+ msgid "You are running WordPress %s."
84
+ msgstr "Du verwendest WordPress %s."
85
 
86
+ #: classes/WP_Piwik/Admin/Settings.php:58
87
+ #, php-format
88
+ msgid ""
89
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
90
+ "your sites as different websites."
91
+ msgstr "Du verwendest ein WordPress %s Blog Netzwerk (WPMU). WP-Piwik wird Deine Seiten als unterschiedliche Webseiten behandeln."
92
 
93
+ #: classes/WP_Piwik/Admin/Settings.php:62
94
+ #, php-format
95
+ msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
97
+ " the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr "WP-Piwik %s konnte sich mit Deiner Konfiguration nicht mit Piwik verbinden. Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
99
 
100
+ #: classes/WP_Piwik/Admin/Settings.php:64
101
+ #, php-format
102
+ msgid ""
103
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
104
+ "During connection the following error occured: <br /><code>%s</code>"
105
+ msgstr "WP-Piwik %s konnte mit der vorliegenden Konfiguration keine Verbindung zu Piwik aufbauen. Beim Verbindungsaufbau ist folgender Fehler aufgetreten: <br /><code>%s</code>"
106
 
107
+ #: classes/WP_Piwik/Admin/Settings.php:67
108
+ #, php-format
109
+ msgid ""
110
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
111
+ "Piwik&laquo; section below."
112
+ msgstr "WP-Piwik %s muss zun&auml;chst mit Piwik verbunden werden. Bitte &uuml;berpr&uuml;fe die &raquo;Mit Piwik verbinden&laquo;-Sektion unten."
113
 
114
+ #: classes/WP_Piwik/Admin/Settings.php:71
115
+ msgid "Connect to Piwik"
116
+ msgstr "Mit Piwik verbinden"
117
 
118
+ #: classes/WP_Piwik/Admin/Settings.php:76
119
+ msgid "Show Statistics"
120
+ msgstr "Zeige Statistiken"
121
 
122
+ #: classes/WP_Piwik/Admin/Settings.php:80
123
+ msgid "Enable Tracking"
124
+ msgstr "Aktiviere Tracking"
125
 
126
+ #: classes/WP_Piwik/Admin/Settings.php:85
127
+ msgid "Expert Settings"
128
+ msgstr "Expertenkonfiguration"
129
 
130
+ #: classes/WP_Piwik/Admin/Settings.php:93
131
+ msgid "Credits"
132
+ msgstr "Danksagungen"
133
 
134
+ #: classes/WP_Piwik/Admin/Settings.php:106
135
+ msgid ""
136
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
137
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
138
+ " To use this you will need your own Piwik instance. If you do not already "
139
+ "have a Piwik setup, you have two simple options: use either"
140
+ msgstr "WP-Piwik ist ein WordPress Plugin, um eine Auswahl von Piwik-Statistiken in Deinem WordPress Admin-Dashboard anzuzeigen, und um Deinen Piwik-Tracking-Code hinzuzufügen und zu konfigurieren. Um es zu verwenden, musst Du zunächst eine Piwik-Installation haben. Es gibt zwei M&ouml;glichkeiten: Betreibe Piwik entweder "
141
 
142
+ #: classes/WP_Piwik/Admin/Settings.php:106
143
+ msgid "a self-hosted Piwik"
144
+ msgstr "ein selbst-gehostetes Piwik"
145
 
146
+ #: classes/WP_Piwik/Admin/Settings.php:106
147
+ msgid "or"
148
+ msgstr "oder"
149
 
150
+ #: classes/WP_Piwik/Admin/Settings.php:106
151
+ msgid "a cloud-hosted Piwik by InnoCraft"
152
+ msgstr "ein cloud-gehostetes Piwik von InnoCraft"
 
 
153
 
154
+ #: classes/WP_Piwik/Admin/Settings.php:109
155
+ msgid ""
156
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
157
+ "and not connect to InnoCraft Cloud."
158
+ msgstr "Weder cURL noch dopen sind verfügbar. Daher kann WP-Piwik sich weder mit der HTTP noch mit der InnoCraft Cloud verbinden."
159
 
160
+ #: classes/WP_Piwik/Admin/Settings.php:109
161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
162
+ msgid "More information"
163
+ msgstr "Weitere Informationen"
164
 
165
+ #: classes/WP_Piwik/Admin/Settings.php:111
166
+ msgid "You can choose between three connection methods:"
167
+ msgstr "Du kannst zwischen drei Verbindungsmöglichkeiten wählen:"
168
 
169
+ #: classes/WP_Piwik/Admin/Settings.php:111
170
+ #: classes/WP_Piwik/Admin/Settings.php:114
171
+ msgid "Self-hosted (HTTP API, default)"
172
+ msgstr "Selbst-gehostet (HTTP API, Standard)"
173
 
174
+ #: classes/WP_Piwik/Admin/Settings.php:111
175
+ msgid ""
176
+ "This is the default option for a self-hosted Piwik and should work for most "
177
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
178
+ msgstr "Dies ist die Standard-Einstellung für ein selbst-gehostetes Piwik und sollte in den meisten Konfigurationen funktionieren. WP-Piwik verbindet sich mit Piwik &uuml;ber http(s)."
179
 
180
+ #: classes/WP_Piwik/Admin/Settings.php:111
181
+ #: classes/WP_Piwik/Admin/Settings.php:115
182
+ msgid "Self-hosted (PHP API)"
183
+ msgstr "Selbst-gehostet (PHP API)"
184
 
185
+ #: classes/WP_Piwik/Admin/Settings.php:111
186
+ msgid ""
187
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
188
+ " machine and you know the full server path to your Piwik instance."
189
+ msgstr "W&auml;hle diese Option, wenn Dein selbst-gehostetes Piwik und WordPress auf dem gleichen Server laufen und Du den vollen Serverpfad zu Deiner Piwik-Installation kennst."
190
 
191
+ #: classes/WP_Piwik/Admin/Settings.php:111
192
+ #: classes/WP_Piwik/Admin/Settings.php:116
193
+ msgid "Cloud-hosted (InnoCraft Cloud)"
194
+ msgstr "Cloud-hosted (InnoCraft Cloud)"
195
 
196
+ #: classes/WP_Piwik/Admin/Settings.php:111
197
+ msgid ""
198
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
199
+ "option."
200
+ msgstr "Wenn Du ein cloud-hosted Piwik von InnoCraft verwendet, kannst Du einfach diese Option wählen."
201
 
202
+ #: classes/WP_Piwik/Admin/Settings.php:112
203
+ msgid "Piwik Mode"
204
+ msgstr "Piwik-Modus"
205
 
206
+ #: classes/WP_Piwik/Admin/Settings.php:113
207
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
208
+ msgstr "Deaktiviert (WP-Piwik wird sich nicht mit Piwik verbinden)"
209
 
210
+ #: classes/WP_Piwik/Admin/Settings.php:119
211
  msgid "Piwik URL"
212
  msgstr "Piwik URL"
213
 
214
+ #: classes/WP_Piwik/Admin/Settings.php:119
215
+ msgid ""
216
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
217
+ "instance, e.g. http://www.example.com/piwik/."
218
+ msgstr "Gebe Deine Piwik-URL ein. Es handelt sich um die gleiche URL, die Du auch verwendest, um Dein Piwik zu &ouml;ffnen, z.B. http://www.example.com/piwik/."
219
+
220
+ #: classes/WP_Piwik/Admin/Settings.php:120
221
+ msgid "Piwik path"
222
+ msgstr "Piwik Pfad"
223
+
224
+ #: classes/WP_Piwik/Admin/Settings.php:120
225
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
226
+ msgstr "Gib den Dateipfad zu Deiner Piwik-Installation an, z.B. /var/www/piwik/."
227
+
228
+ #: classes/WP_Piwik/Admin/Settings.php:121
229
+ msgid "Piwik subdomain"
230
+ msgstr "Piwik-Subdomain"
231
+
232
+ #: classes/WP_Piwik/Admin/Settings.php:121
233
+ msgid ""
234
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
235
+ "https://SUBDOMAIN.innocraft.cloud."
236
+ msgstr "Gib Deine InnoCraft Cloud Subdomain an. Sie ist Teil der URL: https://SUBDOMAIN.innocraft.cloud."
237
+
238
+ #: classes/WP_Piwik/Admin/Settings.php:122
239
  msgid "Auth token"
240
  msgstr "Auth Token"
241
 
242
+ #: classes/WP_Piwik/Admin/Settings.php:122
243
+ msgid ""
244
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
245
+ "0a1b2c34d56e78901fa2bc3d45678efa."
246
+ msgstr "Gib hier Dein Piwik Auth Token an. Es ist ein alphanumerische Code wie 0a1b2c34d56e78901fa2bc3d45678efa."
247
+
248
+ #: classes/WP_Piwik/Admin/Settings.php:122
249
+ #, php-format
250
+ msgid "See %sWP-Piwik FAQ%s."
251
+ msgstr "Siehe %sdie WP-Piwik FAQ%s"
252
 
253
+ #: classes/WP_Piwik/Admin/Settings.php:127
254
+ msgid "Auto config"
255
+ msgstr "Auto-Konfiguration"
256
+
257
+ #: classes/WP_Piwik/Admin/Settings.php:127
258
+ msgid ""
259
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
260
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
261
+ msgstr "Aktiviere diesen Haken, um Dein Blog &uuml;ber seine URL automatisch aus Deinen Piwik-Seiten auszuw&auml;hlen. Wenn Dein Blog bisher nicht zu Piwik hinzugef&uuml;gt wurde, wird WP-Piwik eine neue Seite hinzuf&uuml;gen."
262
+
263
+ #: classes/WP_Piwik/Admin/Settings.php:131
264
+ #, php-format
265
  msgid ""
266
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
267
+ "/><code>%s</code>"
268
+ msgstr "WP-Piwik %s konnte keine Seiten finden, für die zumindest View-Zugriff eingerichtet ist: <br /><code>%s</code>"
 
 
269
 
270
+ #: classes/WP_Piwik/Admin/Settings.php:141
271
+ msgid "Determined site"
272
+ msgstr "Ermittelte Seite"
273
+
274
+ #: classes/WP_Piwik/Admin/Settings.php:146
275
+ msgid "Select site"
276
+ msgstr "W&auml;hle die Seite"
277
+
278
+ #: classes/WP_Piwik/Admin/Settings.php:155
279
+ msgid "Piwik default date"
280
+ msgstr "Piwik Standard-Datum"
281
+
282
+ #: classes/WP_Piwik/Admin/Settings.php:156
283
+ #: classes/WP_Piwik/Admin/Settings.php:170
284
+ msgid "Today"
285
+ msgstr "Heute"
286
+
287
+ #: classes/WP_Piwik/Admin/Settings.php:157
288
+ #: classes/WP_Piwik/Admin/Settings.php:169
289
+ msgid "Yesterday"
290
+ msgstr "Gestern"
291
+
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
+ msgid "Current month"
294
+ msgstr "Aktueller Monat"
295
+
296
+ #: classes/WP_Piwik/Admin/Settings.php:159
297
+ msgid "Last month"
298
+ msgstr "Letzter Monat"
299
+
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
+ msgid "Current week"
302
+ msgstr "Aktuelle Woche"
303
+
304
+ #: classes/WP_Piwik/Admin/Settings.php:161
305
+ msgid "Last week"
306
+ msgstr "Letzte Woche"
307
+
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
+ msgid "Default date shown on statistics page."
310
+ msgstr "Default-Datum, das auf der Statistik-Seite gezeigt wird."
311
+
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
+ msgid "Show SEO data"
314
+ msgstr "Zeige SEO-Daten"
315
+
316
+ #: classes/WP_Piwik/Admin/Settings.php:164
317
+ msgid "Display SEO ranking data on statistics page."
318
+ msgstr "Zeige SEO-Ranking-Daten auf der Statistiken-Seite."
319
+
320
+ #: classes/WP_Piwik/Admin/Settings.php:164
321
+ #: classes/WP_Piwik/Admin/Settings.php:176
322
+ msgid "Slow!"
323
+ msgstr "Langsam!"
324
+
325
+ #: classes/WP_Piwik/Admin/Settings.php:165
326
+ msgid "Show e-commerce data"
327
+ msgstr "E-Commerce Daten anzeigen"
328
+
329
+ #: classes/WP_Piwik/Admin/Settings.php:165
330
+ msgid "Display e-commerce data on statistics page."
331
+ msgstr "Zeige E-Commerce Daten auf der Statistik-Seite an."
332
+
333
+ #: classes/WP_Piwik/Admin/Settings.php:167
334
+ msgid "Dashboard overview"
335
+ msgstr "Dashboard Übersicht"
336
+
337
+ #: classes/WP_Piwik/Admin/Settings.php:168
338
+ #: classes/WP_Piwik/Admin/Settings.php:208
339
+ #: classes/WP_Piwik/Admin/Settings.php:210
340
+ #: classes/WP_Piwik/Admin/Settings.php:231
341
+ #: classes/WP_Piwik/Admin/Settings.php:285
342
+ #: classes/WP_Piwik/Admin/Settings.php:340
343
+ msgid "Disabled"
344
+ msgstr "Deaktiviert"
345
+
346
+ #: classes/WP_Piwik/Admin/Settings.php:171
347
+ msgid "Last 30 days"
348
+ msgstr "Letzte 30 Tage"
349
+
350
+ #: classes/WP_Piwik/Admin/Settings.php:172
351
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
352
+ msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Übersicht&quot;."
353
+
354
+ #: classes/WP_Piwik/Admin/Settings.php:174
355
+ msgid "Dashboard graph"
356
+ msgstr "Dashboard-Graph"
357
+
358
+ #: classes/WP_Piwik/Admin/Settings.php:174
359
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
360
+ msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;Graph&quot;."
361
+
362
+ #: classes/WP_Piwik/Admin/Settings.php:176
363
+ msgid "Dashboard SEO"
364
+ msgstr "Dashboard SEO"
365
+
366
+ #: classes/WP_Piwik/Admin/Settings.php:176
367
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
368
+ msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;SEO&quot;."
369
+
370
+ #: classes/WP_Piwik/Admin/Settings.php:178
371
+ msgid "Dashboard e-commerce"
372
+ msgstr "Dashboard E-Commerce"
373
+
374
+ #: classes/WP_Piwik/Admin/Settings.php:178
375
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
376
+ msgstr "Aktiviere das WP-Piwik Dashboard Widget &quot;E-Commerce&quot;."
377
+
378
+ #: classes/WP_Piwik/Admin/Settings.php:180
379
+ msgid "Show graph on WordPress Toolbar"
380
+ msgstr "Zeige einen Graphen in der WordPress Toolbar"
381
+
382
+ #: classes/WP_Piwik/Admin/Settings.php:180
383
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
384
+ msgstr "Zeige einen Besuchergraph der letzten 30 Tage in der WordPress' Toolbar."
385
+
386
+ #: classes/WP_Piwik/Admin/Settings.php:182
387
+ msgid "Display stats to"
388
+ msgstr "Zeige Statistiken für"
389
+
390
+ #: classes/WP_Piwik/Admin/Settings.php:189
391
+ msgid "Choose user roles allowed to see the statistics page."
392
+ msgstr "W&auml;hle diejenigen Nutzerrollen, die sich die Statistiken ansehen d&uuml;rfen."
393
+
394
+ #: classes/WP_Piwik/Admin/Settings.php:191
395
+ msgid "Show per post stats"
396
+ msgstr "Zeige Beitrags-Statistiken"
397
+
398
+ #: classes/WP_Piwik/Admin/Settings.php:191
399
+ msgid "Show stats about single posts at the post edit admin page."
400
+ msgstr "Zeige Statistiken zu einzelnen Beitr&auml;gen auf der Bearbeiten-Seite."
401
+
402
+ #: classes/WP_Piwik/Admin/Settings.php:193
403
+ msgid "Piwik shortcut"
404
+ msgstr "Piwik-Verlinkung"
405
+
406
+ #: classes/WP_Piwik/Admin/Settings.php:193
407
+ msgid "Display a shortcut to Piwik itself."
408
+ msgstr "Zeigt einen Shortcut zu Piwik an."
409
 
410
+ #: classes/WP_Piwik/Admin/Settings.php:195
411
+ msgid "WP-Piwik display name"
412
+ msgstr "Anzeigename f&uuml;r WP-Piwik"
413
+
414
+ #: classes/WP_Piwik/Admin/Settings.php:195
415
+ msgid "Plugin name shown in WordPress."
416
+ msgstr "Der Name, mit dem das Plugin in WordPress angezeigt wird."
417
+
418
+ #: classes/WP_Piwik/Admin/Settings.php:197
419
+ msgid "Enable shortcodes"
420
+ msgstr "Aktiviere Shortcodes"
421
+
422
+ #: classes/WP_Piwik/Admin/Settings.php:197
423
+ msgid "Enable shortcodes in post or page content."
424
+ msgstr "Aktiviere Shortcodes innerhalb von Artikeln und Seiten."
425
+
426
+ #: classes/WP_Piwik/Admin/Settings.php:208
427
+ msgid "You can choose between four tracking code modes:"
428
+ msgstr "Du kannst zwischen vier Tracking-Code-Varianten wählen:"
429
+
430
+ #: classes/WP_Piwik/Admin/Settings.php:208
431
  msgid ""
432
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
433
+ "tracking code to your template files or you use another plugin to add the "
434
+ "tracking code."
435
+ msgstr "WP-Piwik wird den Tracking-Code nicht hinzuf&uuml;gen. Benutze dies, wenn Du den Tracking-Code direkt in Deinem Template oder &uuml;ber ein anderes Plugin einfügen willst."
436
 
437
+ #: classes/WP_Piwik/Admin/Settings.php:208
438
+ #: classes/WP_Piwik/Admin/Settings.php:211
439
+ msgid "Default tracking"
440
+ msgstr "Standard-Tracking"
441
+
442
+ #: classes/WP_Piwik/Admin/Settings.php:208
443
+ msgid "WP-Piwik will use Piwik's standard tracking code."
444
+ msgstr "WP-Piwik verwendet den Standard Tracking-Code von Piwik."
445
+
446
+ #: classes/WP_Piwik/Admin/Settings.php:208
447
+ #: classes/WP_Piwik/Admin/Settings.php:212
448
+ msgid "Use js/index.php"
449
+ msgstr "Nutze js/index.php"
450
+
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
+ msgid ""
453
+ "You can choose this tracking code, to deliver a minified proxy code and to "
454
+ "avoid using the files called piwik.js or piwik.php."
455
+ msgstr "Du kannst diesen Tracking-Code w&auml;hlen, um einen minimierten Proxy-Code auszuliefern und dabei zu vermeiden, dass die Dateien mit dem Namen piwik.js oder piwik.php verwendet werden."
456
+
457
+ #: classes/WP_Piwik/Admin/Settings.php:208
458
+ #, php-format
459
+ msgid "See %sreadme file%s."
460
+ msgstr "Siehe %sReadme-Datei%s."
461
+
462
+ #: classes/WP_Piwik/Admin/Settings.php:208
463
+ #: classes/WP_Piwik/Admin/Settings.php:213
464
+ msgid "Use proxy script"
465
+ msgstr "Verwende Proxy-Skript"
466
+
467
+ #: classes/WP_Piwik/Admin/Settings.php:208
468
+ msgid "Use this tracking code to not reveal the Piwik server URL."
469
+ msgstr "Verwende diesen Tracking-Code, um die URL zu Deinem Piwik-Sever nicht offenzulegen."
470
+
471
+ #: classes/WP_Piwik/Admin/Settings.php:208
472
+ #: classes/WP_Piwik/Admin/Settings.php:228
473
+ #: classes/WP_Piwik/Admin/Settings.php:238
474
+ #, php-format
475
+ msgid "See %sPiwik FAQ%s."
476
+ msgstr "Siehe %sPiwik FAQ%s."
477
+
478
+ #: classes/WP_Piwik/Admin/Settings.php:208
479
+ #: classes/WP_Piwik/Admin/Settings.php:214
480
+ msgid "Enter manually"
481
+ msgstr "Manuelle Eingabe"
482
+
483
+ #: classes/WP_Piwik/Admin/Settings.php:208
484
+ msgid ""
485
+ "Enter your own tracking code manually. You can choose one of the prior "
486
+ "options, pre-configure your tracking code and switch to manually editing at "
487
+ "last."
488
+ msgstr "Gebe manuell Deinen eigenen Tracking-Code ein. Du kannst eine der vorhergehenden Optionen nutzen, Deinen Tracking-Code vorkonfigurieren und abschlie&szlig;end auf die manuelle Bearbeitung wechseln."
489
+
490
+ #: classes/WP_Piwik/Admin/Settings.php:208
491
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
492
+ msgstr "Verwende den Platzhalter {ID}, um Piwiks Site-ID einzuf&uuml;gen."
493
+
494
+ #: classes/WP_Piwik/Admin/Settings.php:209
495
+ msgid "Add tracking code"
496
+ msgstr "Tracking-Code einf&uuml;gen"
497
+
498
+ #: classes/WP_Piwik/Admin/Settings.php:217
499
+ msgid "Tracking code"
500
+ msgstr "Tracking-Code"
501
+
502
+ #: classes/WP_Piwik/Admin/Settings.php:219
503
+ msgid "JavaScript code position"
504
+ msgstr "Position des JavaScript-Codes"
505
+
506
+ #: classes/WP_Piwik/Admin/Settings.php:220
507
+ msgid "Footer"
508
+ msgstr "Fußbereich"
509
+
510
+ #: classes/WP_Piwik/Admin/Settings.php:221
511
+ msgid "Header"
512
+ msgstr "Kopfbereich"
513
+
514
+ #: classes/WP_Piwik/Admin/Settings.php:222
515
+ msgid ""
516
+ "Choose whether the JavaScript code is added to the footer or the header."
517
+ msgstr "W&auml;hle, ob der JavaScript-Code im Footer oder im Header eingef&uuml;gt werden soll."
518
+
519
+ #: classes/WP_Piwik/Admin/Settings.php:224
520
+ msgid "Noscript code"
521
+ msgstr "Noscript-Code"
522
+
523
+ #: classes/WP_Piwik/Admin/Settings.php:226
524
+ msgid "Add &lt;noscript&gt;"
525
+ msgstr "F&uuml;ge &lt;noscript&gt; hinzu"
526
+
527
+ #: classes/WP_Piwik/Admin/Settings.php:226
528
+ msgid "Adds the &lt;noscript&gt; code to your footer."
529
+ msgstr "F&uuml;gt den &lt;noscript&gt;-Code im Footer ein."
530
+
531
+ #: classes/WP_Piwik/Admin/Settings.php:226
532
+ #: classes/WP_Piwik/Admin/Settings.php:228
533
+ msgid "Disabled in proxy mode."
534
+ msgstr "Im Proxy-Modus deaktiviert."
535
 
536
+ #: classes/WP_Piwik/Admin/Settings.php:228
537
+ msgid "Add rec parameter to noscript code"
538
+ msgstr "F&uuml;ge rec-Parameter zum noscript Code hinzu"
539
 
540
+ #: classes/WP_Piwik/Admin/Settings.php:228
541
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
542
+ msgstr "Aktiviere das Tracking für Besucher ohne JavaScript (nicht empfohlen)."
543
 
544
+ #: classes/WP_Piwik/Admin/Settings.php:230
545
+ msgid "Enable content tracking"
546
+ msgstr "Aktiviere Content-Tracking"
547
 
548
+ #: classes/WP_Piwik/Admin/Settings.php:232
549
+ msgid "Track all content blocks"
550
+ msgstr "Tracke alle Content-Bereiche"
551
 
552
+ #: classes/WP_Piwik/Admin/Settings.php:233
553
+ msgid "Track only visible content blocks"
554
+ msgstr "Tracke nur sichtbare Content-Bereiche"
555
+
556
+ #: classes/WP_Piwik/Admin/Settings.php:234
557
+ msgid ""
558
+ "Content tracking allows you to track interaction with the content of a web "
559
+ "page or application."
560
+ msgstr "Das Content-Tracking erlaubt es Dir, Interaktionen mit dem Inhalt einer Webseite oder -anwendung zu tracken."
561
+
562
+ #: classes/WP_Piwik/Admin/Settings.php:234
563
+ #: classes/WP_Piwik/Admin/Settings.php:236
564
+ #: classes/WP_Piwik/Admin/Settings.php:245
565
+ #: classes/WP_Piwik/Admin/Settings.php:247
566
+ #: classes/WP_Piwik/Admin/Settings.php:249
567
+ #: classes/WP_Piwik/Admin/Settings.php:270
568
+ #: classes/WP_Piwik/Admin/Settings.php:272
569
+ #: classes/WP_Piwik/Admin/Settings.php:278
570
+ #: classes/WP_Piwik/Admin/Settings.php:343
571
+ #, php-format
572
+ msgid "See %sPiwik documentation%s."
573
+ msgstr "Siehe %sPiwik-Dokumentation%s."
574
+
575
+ #: classes/WP_Piwik/Admin/Settings.php:236
576
+ msgid "Track search"
577
+ msgstr "Tracke Suchanfragen"
578
+
579
+ #: classes/WP_Piwik/Admin/Settings.php:236
580
+ msgid "Use Piwik's advanced Site Search Analytics feature."
581
+ msgstr "Nutze Piwiks Site Search Funktion, um interne Suchen zu tracken."
582
+
583
+ #: classes/WP_Piwik/Admin/Settings.php:238
584
  msgid "Track 404"
585
  msgstr "404-Tracking"
586
 
587
+ #: classes/WP_Piwik/Admin/Settings.php:238
588
+ msgid ""
589
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
590
  msgstr "WP-Piwik kann automatisch eine eigene Kategorie f&uuml;r 404-Seiten hinzuf&uuml;gen."
591
 
592
+ #: classes/WP_Piwik/Admin/Settings.php:241
593
+ msgid "Add annotation on new post of type"
594
+ msgstr "Notiz bei neuen Posts von folgenden Typen"
595
+
596
+ #: classes/WP_Piwik/Admin/Settings.php:247
597
+ msgid "Show custom variables box"
598
+ msgstr "Zeige Custom-Variables-Box"
599
+
600
+ #: classes/WP_Piwik/Admin/Settings.php:247
601
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
602
+ msgstr "Zeige eine Eingabebox für &quot;custom variables&quot; auf der Seite zum Bearbeiten von Posts."
603
+
604
+ #: classes/WP_Piwik/Admin/Settings.php:249
605
+ msgid "Add new file types for download tracking"
606
+ msgstr "F&uuml;ge weitere Dateiendungen f&uuml;r das Download-Tracking hinzu"
607
+
608
+ #: classes/WP_Piwik/Admin/Settings.php:249
609
+ msgid ""
610
+ "Add file extensions for download tracking, divided by a vertical bar "
611
+ "(&#124;)."
612
+ msgstr "F&uuml;ge Dateiendungen zum Download-Tracking hinzu. Trenne mehrere Erweiterung durch einen senkrechten Strich (&#124;)."
613
+
614
+ #: classes/WP_Piwik/Admin/Settings.php:251
615
+ msgid "Disable cookies"
616
+ msgstr "Cookies deaktivieren"
617
+
618
+ #: classes/WP_Piwik/Admin/Settings.php:251
619
+ msgid "Disable all tracking cookies for a visitor."
620
+ msgstr "Schalte alle Tracking-Cookies f&uuml;r Besucher ab."
621
+
622
+ #: classes/WP_Piwik/Admin/Settings.php:253
623
+ msgid "Limit cookie lifetime"
624
+ msgstr "Cookie-Lebensdauer beschr&auml;nken"
625
+
626
+ #: classes/WP_Piwik/Admin/Settings.php:253
627
+ msgid ""
628
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
629
+ " period as necessary."
630
+ msgstr "Du kannst die Cookie-Lebenszeit begrenzen, um Deine Besucher nicht länger als notwendig zu tracken."
631
+
632
+ #: classes/WP_Piwik/Admin/Settings.php:255
633
+ msgid "Visitor timeout (seconds)"
634
+ msgstr "Besucher-Timeout (Sekunden)"
635
+
636
+ #: classes/WP_Piwik/Admin/Settings.php:257
637
+ msgid "Session timeout (seconds)"
638
+ msgstr "Session-Timeout (Sekunden)"
639
+
640
+ #: classes/WP_Piwik/Admin/Settings.php:259
641
+ msgid "Referral timeout (seconds)"
642
+ msgstr "Referral-Timeout (Sekunden)"
643
+
644
+ #: classes/WP_Piwik/Admin/Settings.php:261
645
+ msgid "Track admin pages"
646
+ msgstr "Admin-Seiten tracken"
647
+
648
+ #: classes/WP_Piwik/Admin/Settings.php:261
649
+ msgid ""
650
+ "Enable to track users on admin pages (remember to configure the tracking "
651
+ "filter appropriately)."
652
+ msgstr "Aktivieren, um Nutzer auf Admin-Seiten zu z&auml;hlen (bitte den Tracking Filter entsprechend konfigurieren)."
653
+
654
+ #: classes/WP_Piwik/Admin/Settings.php:264
655
  msgid "Tracking filter"
656
  msgstr "Tracking-Filter"
657
 
658
+ #: classes/WP_Piwik/Admin/Settings.php:268
659
  msgid "Choose users by user role you do <strong>not</strong> want to track."
660
  msgstr "W&auml;hle diejenigen Nutzerrollen, die Du <strong>nicht</strong> erfassen willst."
661
 
662
+ #: classes/WP_Piwik/Admin/Settings.php:270
663
+ msgid "Track subdomains in the same website"
664
+ msgstr "Tracke Subdomains innerhalb der gleichen Webseite"
665
 
666
+ #: classes/WP_Piwik/Admin/Settings.php:270
667
+ msgid "Adds *.-prefix to cookie domain."
668
+ msgstr "F&uuml;gt ein *.-Pr&auml;fix zur Cookie Domain hinzu."
 
 
 
 
669
 
670
+ #: classes/WP_Piwik/Admin/Settings.php:272
671
+ msgid "Do not count subdomains as outlink"
672
+ msgstr "Werte Subdomains nicht als ausgehenden Link"
673
 
674
+ #: classes/WP_Piwik/Admin/Settings.php:272
675
+ msgid "Adds *.-prefix to tracked domain."
676
+ msgstr "F&uuml;gt ein *.-Pr&auml;fix zur getrackten Domain hinzu."
677
 
678
+ #: classes/WP_Piwik/Admin/Settings.php:274
679
+ msgid "Enable cross domain linking"
680
+ msgstr "Aktiviere Cross-Domain-Verlinkung"
681
 
682
+ #: classes/WP_Piwik/Admin/Settings.php:274
683
+ msgid ""
684
+ "When enabled, it will make sure to use the same visitor ID for the same "
685
+ "visitor across several domains. This works only when this feature is enabled"
686
+ " because the visitor ID is stored in a cookie and cannot be read on the "
687
+ "other domain by default. When this feature is enabled, it will append a URL "
688
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
689
+ "URL that belongs to one of your domains. For this feature to work, you also "
690
+ "have to configure which domains should be treated as local in your Piwik "
691
+ "website settings. This feature requires Piwik 3.0.2."
692
+ msgstr "Wenn aktiviert, stellt die Funktion sicher, dass die gleiche Besucher-ID für den gleichen Besucher über mehrere Domains hinweg benutzt wird. Dies funktioniert nur, wenn die Funktion aktiviert ist, da die Besucher-ID in einem Cookie gespeichert wird und somit nicht auf einer anderen Domain gelesen werden kann. Über diese Funktion wird der URL der Parameter \"pk_vid\" hinzugefügt, der die Besucher-ID enthält, sobald ein Nutzer auf eine URL klickt, die zu Deinen Domains gehört. Damit es funktioniert, müssen die als lokal zu betrachtenden Domains auch in den Piwik Webseiten-Einstellungen konfiguriert sein. Die Funktion erfordert zumindest Piwik 3.0.2."
693
+
694
+ #: classes/WP_Piwik/Admin/Settings.php:276
695
+ msgid "Track RSS feeds"
696
+ msgstr "Tracke RSS-Feeds"
697
+
698
+ #: classes/WP_Piwik/Admin/Settings.php:276
699
+ msgid "Enable to track posts in feeds via tracking pixel."
700
+ msgstr "Aktivieren, um Beir&auml;ge im Feed via Tracking-Pixel zu z&auml;hlen."
701
 
702
+ #: classes/WP_Piwik/Admin/Settings.php:278
703
+ msgid "Track RSS feed links as campaign"
704
+ msgstr "Links in RSS-Feeds als Kampagne tracken"
705
 
706
+ #: classes/WP_Piwik/Admin/Settings.php:278
707
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
708
+ msgstr "Dies f&uuml;gt einen Piwik-Kampagnen-Parameter zu den RSS-Feed-Links hinzu."
709
 
710
+ #: classes/WP_Piwik/Admin/Settings.php:280
711
+ msgid "RSS feed campaign"
712
+ msgstr "RSS-Feed Kampagne"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
 
714
+ #: classes/WP_Piwik/Admin/Settings.php:280
715
+ msgid "Keyword: post name."
716
+ msgstr "Schl&uuml;sselwort: Name des Beitrags."
717
 
718
+ #: classes/WP_Piwik/Admin/Settings.php:282
719
+ msgid "Enable heartbeat timer"
720
+ msgstr "Aktiviere Heartbeat-Timer"
721
 
722
+ #: classes/WP_Piwik/Admin/Settings.php:282
723
  msgid ""
724
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
725
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
726
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
727
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
728
+ "HTTP requests on your site."
729
+ msgstr "Aktiviere den Heratbeat-Timer, um genauere Besuchszeiten zu erhalten, indem HTTP-Ping-Anfragen gesendet werden, solange die Seite geöffnet ist. Gib den Zeitabstand zwischen den Ping-Anfragen in Sekunden (Piwik-Default: 15) an oder trage 0 zum deaktivieren ein. <strong>Hinweis:</strong> Dadurch entsteht eine Vielzahl zusätzlicher HTTP-Anfragen an Deine Seite."
730
+
731
+ #: classes/WP_Piwik/Admin/Settings.php:284
732
+ msgid "User ID Tracking"
733
+ msgstr "Nutzer-ID Tracking"
734
+
735
+ #: classes/WP_Piwik/Admin/Settings.php:286
736
+ msgid "WP User ID"
737
+ msgstr "WP User ID"
738
+
739
+ #: classes/WP_Piwik/Admin/Settings.php:287
740
+ msgid "Email Address"
741
+ msgstr "E-Mail-Adresse"
742
+
743
+ #: classes/WP_Piwik/Admin/Settings.php:288
744
+ msgid "Username"
745
+ msgstr "Benutzername"
746
+
747
+ #: classes/WP_Piwik/Admin/Settings.php:289
748
+ msgid "Display Name (Not Recommended!)"
749
+ msgstr "Anzeigename (nicht empfohlen)"
750
+
751
+ #: classes/WP_Piwik/Admin/Settings.php:290
752
+ msgid ""
753
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
754
+ "can select which field from the User's profile is tracked as the &quot;User "
755
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
756
+ msgstr "Wenn Nutzer in WordPress eingeloggt ist, tracked WP-Piwik deren &quot;User ID&quot;. Du kannst w&auml;hlen, welches Feld des Nutzerprofils dabei als &quot;User ID&quot; verwendet wird. Wenn die Funktion aktiviert wird, empfiehlt sich das Tracking auf Basis der E-Mail-Adresse."
757
 
758
+ #: classes/WP_Piwik/Admin/Settings.php:295
759
+ msgid ""
760
+ "Usually, you do not need to change these settings. If you want to do so, you"
761
+ " should know what you do or you got an expert's advice."
762
+ msgstr "Normalerweise solltest Du diese Einstellungen nicht ändern müssen. Solltest Du hier doch etwas ändern wollen, solltest Du wissen was Du tust oder dies auf Anleitung eines Experten tun."
763
 
764
+ #: classes/WP_Piwik/Admin/Settings.php:297
765
+ msgid "Enable cache"
766
+ msgstr "Cache einschalten"
767
 
768
+ #: classes/WP_Piwik/Admin/Settings.php:297
769
+ msgid "Cache API calls, which not contain today's values, for a week."
770
+ msgstr "Cache API-Anfragen, die keine heutigen Werte enthalten, für eine Woche."
771
 
772
+ #: classes/WP_Piwik/Admin/Settings.php:300
773
+ msgid "HTTP connection via"
774
+ msgstr "HTTP-Verbindung &uuml;ber"
775
 
776
+ #: classes/WP_Piwik/Admin/Settings.php:301
777
+ #: classes/WP_Piwik/Admin/Settings.php:590
778
+ msgid "cURL"
779
+ msgstr "cURL"
780
 
781
+ #: classes/WP_Piwik/Admin/Settings.php:302
782
+ #: classes/WP_Piwik/Admin/Settings.php:590
783
+ msgid "fopen"
784
+ msgstr "fopen"
785
 
786
+ #: classes/WP_Piwik/Admin/Settings.php:303
787
+ msgid ""
788
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
789
+ " or Cloud mode."
790
+ msgstr "Wähle, ob WP-Piwik cURL oder dopen verwenden soll, um im HTTP oder Cloud Modus mit Piwik zu verbinden."
791
 
792
+ #: classes/WP_Piwik/Admin/Settings.php:305
793
+ msgid "HTTP method"
794
+ msgstr "HTTP-Methode"
795
 
796
+ #: classes/WP_Piwik/Admin/Settings.php:306
797
+ #: classes/WP_Piwik/Admin/Settings.php:590
798
+ msgid "POST"
799
+ msgstr "POST"
800
 
801
+ #: classes/WP_Piwik/Admin/Settings.php:307
802
+ #: classes/WP_Piwik/Admin/Settings.php:590
803
+ msgid "GET"
804
+ msgstr "GET"
805
 
806
+ #: classes/WP_Piwik/Admin/Settings.php:308
807
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
808
+ msgstr "Wähle, ob WP-Piwik POST oder GET im HTTP oder Cloud Modus verwenden soll."
809
 
810
+ #: classes/WP_Piwik/Admin/Settings.php:310
811
+ msgid "Disable time limit"
812
+ msgstr "Zeitlimit deaktivieren"
813
 
814
+ #: classes/WP_Piwik/Admin/Settings.php:310
815
+ msgid "Use set_time_limit(0) if stats page causes a time out."
816
+ msgstr "Verwende set_time_limit(0) falls die Statistik-Seite einen Timeout erzeugt."
817
 
818
+ #: classes/WP_Piwik/Admin/Settings.php:312
819
+ msgid "Connection timeout"
820
+ msgstr "Verbindungs-Timeout"
821
 
822
+ #: classes/WP_Piwik/Admin/Settings.php:314
823
+ msgid "Disable SSL peer verification"
824
+ msgstr "SSL Peer-Verifikation deaktivieren"
825
 
826
+ #: classes/WP_Piwik/Admin/Settings.php:314
827
+ #: classes/WP_Piwik/Admin/Settings.php:315
828
+ msgid "not recommended"
829
+ msgstr "Nicht empfohlen"
830
 
831
+ #: classes/WP_Piwik/Admin/Settings.php:315
832
+ msgid "Disable SSL host verification"
833
+ msgstr "SSL-Host-Verifizierung deaktivieren"
834
 
835
+ #: classes/WP_Piwik/Admin/Settings.php:317
836
+ msgid "User agent"
837
+ msgstr "User Agent"
838
 
839
+ #: classes/WP_Piwik/Admin/Settings.php:318
840
+ msgid "Use the PHP default user agent"
841
+ msgstr "Verwende den PHP-Standard User-Agent"
842
 
843
+ #: classes/WP_Piwik/Admin/Settings.php:318
844
+ msgid "empty"
845
+ msgstr "leer"
846
 
847
+ #: classes/WP_Piwik/Admin/Settings.php:319
848
+ msgid "Define a specific user agent"
849
+ msgstr "Lege einen spezifischen User-Agent fest"
850
 
851
+ #: classes/WP_Piwik/Admin/Settings.php:321
852
+ msgid "Specific user agent"
853
+ msgstr "Spezifischer User-Agent"
854
 
855
+ #: classes/WP_Piwik/Admin/Settings.php:323
856
+ msgid "Enable DNS prefetch"
857
+ msgstr "Aktiviere DNS-Prefetch"
858
 
859
+ #: classes/WP_Piwik/Admin/Settings.php:323
860
+ #, php-format
861
+ msgid "See %sPiwik Blog%s."
862
+ msgstr "Siehe %sPiwik Blog%s."
863
 
864
+ #: classes/WP_Piwik/Admin/Settings.php:323
865
+ msgid "Add a DNS prefetch tag. "
866
+ msgstr "Fügt einen DNS-Prefetch-Tag hinzu."
867
 
868
+ #: classes/WP_Piwik/Admin/Settings.php:325
869
+ msgid "Add data-cfasync=false"
870
+ msgstr "data-cfasync=false einf&uuml;gen"
871
 
872
+ #: classes/WP_Piwik/Admin/Settings.php:325
873
+ #, php-format
874
+ msgid "See %sCloudFlare Knowledge Base%s."
875
+ msgstr "Siehe %sdie CloudFlare Knowledge Base%s."
876
 
877
+ #: classes/WP_Piwik/Admin/Settings.php:325
878
+ msgid ""
879
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
880
+ "ignore the script. "
881
+ msgstr "F&uuml;ge data-cfasync=false zum Script-Tag hinzu. Damit wird z.B. Rocket Loader aufgefordert, das Skript zu ignorieren."
882
 
883
+ #: classes/WP_Piwik/Admin/Settings.php:327
884
+ msgid "CDN URL"
885
+ msgstr "CDN URL"
886
 
887
+ #: classes/WP_Piwik/Admin/Settings.php:329
888
+ msgid "CDN URL (SSL)"
889
+ msgstr "CDN URL (SSL)"
890
 
891
+ #: classes/WP_Piwik/Admin/Settings.php:331
892
+ msgid "Force Piwik to use a specific protocol"
893
+ msgstr "Zwinge Piwik, ein bestimmtes Protokoll zu verwenden"
894
 
895
+ #: classes/WP_Piwik/Admin/Settings.php:332
896
+ msgid "Disabled (default)"
897
+ msgstr "Deaktiviert (Standard)"
898
 
899
+ #: classes/WP_Piwik/Admin/Settings.php:333
900
+ msgid "http"
901
+ msgstr "http"
902
 
903
+ #: classes/WP_Piwik/Admin/Settings.php:334
904
+ msgid "https (SSL)"
905
+ msgstr "https (SSL)"
906
 
907
+ #: classes/WP_Piwik/Admin/Settings.php:335
908
+ msgid ""
909
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
910
+ "work with a CDN URL."
911
+ msgstr "W&auml;hle aus, ob Du Piwik ausdr&uuml;cklich zwingen willst, HTTP oder HTTPS zu verwenden. Funktioniert nicht mit einer CDN URL."
912
 
913
+ #: classes/WP_Piwik/Admin/Settings.php:337
914
+ msgid "Update notice"
915
+ msgstr "Update-Hinweis"
916
 
917
+ #: classes/WP_Piwik/Admin/Settings.php:338
918
+ msgid "Show always if WP-Piwik is updated"
919
+ msgstr "Immer anzeigen, wenn WP-Piwik aktualisiert wurde"
920
 
921
+ #: classes/WP_Piwik/Admin/Settings.php:339
922
+ msgid "Show only if WP-Piwik is updated and settings were changed"
923
+ msgstr "Immer anzeigen, wenn WP-Piwik aktualisiert und dabei die Konfiguration ge&auml;ndert wurde"
924
 
925
+ #: classes/WP_Piwik/Admin/Settings.php:341
926
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
927
+ msgstr "W&auml;hole aus, ob Du einen Hinweis erhalten m&ouml;chtest, wenn WP-Piwik aktualisiert wurde."
928
 
929
+ #: classes/WP_Piwik/Admin/Settings.php:343
930
+ msgid "Define all file types for download tracking"
931
+ msgstr "Lege alle Dateiendungen für das Download-Tracking fest"
932
 
933
+ #: classes/WP_Piwik/Admin/Settings.php:343
934
+ msgid ""
935
+ "Replace Piwik's default file extensions for download tracking, divided by a "
936
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
937
+ msgstr "Ersetze Piwiks Standard-Dateiendungen für das Download-Tracking, getrennt durch einen senkrechten Strich (&#124;). Lasse dieses Feld frei, um die Standard-Einstellungen von Piwik zu erhalten."
938
 
939
+ #: classes/WP_Piwik/Admin/Settings.php:345
940
+ msgid "Set classes to be treated as downloads"
941
+ msgstr "Lege die Klassen fest, die als Download behandelt werden sollen."
942
 
943
+ #: classes/WP_Piwik/Admin/Settings.php:345
944
+ msgid ""
945
+ "Set classes to be treated as downloads (in addition to piwik_download), "
946
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
947
+ "settings."
948
+ msgstr "Lege die Klassen fest, die (zusätzlich zu piwik_download) als Download behandelt werden sollen. Trenne mehrere Klassen durch einen senkrechten Strich (&#124;). Lasse dieses Feld frei, um die Standard-Einstellungen von Piwik zu erhalten."
949
+
950
+ #: classes/WP_Piwik/Admin/Settings.php:345
951
+ #: classes/WP_Piwik/Admin/Settings.php:347
952
+ #, php-format
953
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
954
+ msgstr "Siehe %sPiwik JavaScript Tracking Client Referenz%s."
955
+
956
+ #: classes/WP_Piwik/Admin/Settings.php:347
957
+ msgid "Set classes to be treated as outlinks"
958
+ msgstr "Lege die Klassen fest, die als ausgehender Link behandelt werden sollen"
959
+
960
+ #: classes/WP_Piwik/Admin/Settings.php:347
961
+ msgid ""
962
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
963
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
964
+ msgstr "Lege die Klassen fest, die (zusätzlich zu piwik_link) als ausgehender Link behandelt werden sollen. Trenne mehrere Klassen durch einen senkrechten Strich (&#124;). Lasse dieses Feld frei, um die Standard-Einstellungen von Piwik zu erhalten."
965
 
966
+ #: classes/WP_Piwik/Admin/Settings.php:508
967
  msgid "Donate"
968
  msgstr "Spenden"
969
 
970
+ #: classes/WP_Piwik/Admin/Settings.php:511
971
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
972
+ msgstr "Wenn Dir WP-Piwik gef&auml;llt, kannst Du die weitere Entwicklung mit einer Spende f&ouml;rdern:"
973
+
974
+ #: classes/WP_Piwik/Admin/Settings.php:530
975
  msgid "My Amazon.de wishlist"
976
  msgstr "Meine Wunschliste bei Amazon.de"
977
 
978
+ #: classes/WP_Piwik/Admin/Settings.php:533
979
+ #: classes/WP_Piwik/Admin/Settings.php:575
980
+ msgid "Please don't forget to vote the compatibility at the"
981
+ msgstr "Bitte denke daran, eine Kompatibilit&auml;tsbewertung abzugeben:"
 
 
 
 
 
 
 
982
 
983
+ #: classes/WP_Piwik/Admin/Settings.php:561
984
+ msgid "Thank you very much for your donation"
985
+ msgstr "Vielen Dank f&uuml;r eure Spenden"
986
 
987
+ #: classes/WP_Piwik/Admin/Settings.php:561
988
+ msgid "the Piwik team itself"
989
+ msgstr "das Piwik-Team selbst"
990
 
991
+ #: classes/WP_Piwik/Admin/Settings.php:561
992
+ msgid ", and all people flattering this"
993
+ msgstr " und allen, die WP-Piwik flattrn"
994
 
995
+ #: classes/WP_Piwik/Admin/Settings.php:562
996
+ msgid ""
997
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
998
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
999
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1000
+ "Sparklines</a> (License: New BSD License)."
1001
+ msgstr "Graphen erstellt mit <a href=\"http://www.jqplot.com/\" target=\"_BLANK\">jqPlot</a> (Lizenz: GPL 2.0 and MIT) und <a href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery Sparklines</a> (Lizenz: New BSD License)."
1002
 
1003
+ #: classes/WP_Piwik/Admin/Settings.php:563
1004
+ msgid "Thank you very much"
1005
+ msgstr "Vielen Dank"
1006
 
1007
+ #: classes/WP_Piwik/Admin/Settings.php:563
1008
+ msgid "for your translation work"
1009
+ msgstr "f&uuml;r eure &Uuml;bersetzungsarbeit"
1010
 
1011
+ #: classes/WP_Piwik/Admin/Settings.php:564
1012
+ msgid ""
1013
+ "Thank you very much, all users who send me mails containing criticism, "
1014
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1015
+ " much better."
1016
+ msgstr "Vielen Dank an alle Nutzer, die mir Mails mit Kritik, Lob, Featurew&uuml;nsche und Bugmeldungen senden. Ihr helft mir dabei, WP-Piwik viel besser zu machen."
1017
 
1018
+ #: classes/WP_Piwik/Admin/Settings.php:565
1019
+ msgid ""
1020
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1021
+ "if my piece of code is really used!"
1022
+ msgstr "Vielen Dank an <strong>Dich</strong> f&uuml;r die Nutzung meines Plugins. Es ist das gr&ouml;&szlig;te Lob, wenn mein Code tats&auml;chlich benutzt wird!"
1023
 
1024
+ #: classes/WP_Piwik/Admin/Settings.php:574
1025
+ msgid "The best place to get help:"
1026
+ msgstr "Der beste Platz, um Hilfe zu bekommen:"
1027
 
1028
+ #: classes/WP_Piwik/Admin/Settings.php:574
1029
+ msgid "WP-Piwik support forum"
1030
+ msgstr "WP-Piwik Support-Forum"
1031
 
1032
+ #: classes/WP_Piwik/Admin/Settings.php:577
1033
+ msgid "Debugging"
1034
+ msgstr "Fehlersuche"
1035
 
1036
+ #: classes/WP_Piwik/Admin/Settings.php:578
1037
+ msgid ""
1038
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1039
+ "available:"
1040
  msgstr "Entweder allow_url_fopen muss aktiviert <em>oder</em> cURL muss verf&uuml;gbar sein:"
1041
 
1042
+ #: classes/WP_Piwik/Admin/Settings.php:581
1043
  msgid "cURL is"
1044
  msgstr "cURL ist"
1045
 
1046
+ #: classes/WP_Piwik/Admin/Settings.php:582
1047
+ #: classes/WP_Piwik/Admin/Settings.php:587
 
1048
  msgid "not"
1049
  msgstr "nicht"
1050
 
1051
+ #: classes/WP_Piwik/Admin/Settings.php:583
1052
  msgid "available"
1053
  msgstr "verf&uuml;gbar"
1054
 
1055
+ #: classes/WP_Piwik/Admin/Settings.php:586
1056
+ msgid "allow_url_fopen is"
1057
+ msgstr "allow_url_fopen ist"
1058
+
1059
+ #: classes/WP_Piwik/Admin/Settings.php:588
1060
+ msgid "enabled"
1061
+ msgstr "aktiviert"
1062
 
1063
+ #: classes/WP_Piwik/Admin/Settings.php:590
1064
+ msgid "is used."
1065
+ msgstr "wird verwendet."
1066
 
1067
+ #: classes/WP_Piwik/Admin/Settings.php:592
1068
+ msgid "Determined Piwik base URL is"
1069
+ msgstr "Die ermittelte Piwik-Basis-URL ist"
1070
 
1071
+ #: classes/WP_Piwik/Admin/Settings.php:596
1072
+ msgid "Tools"
1073
+ msgstr "Tools"
1074
 
1075
+ #: classes/WP_Piwik/Admin/Settings.php:598
1076
+ msgid "Run testscript"
1077
+ msgstr "Testskript ausf&uuml;hren"
1078
 
1079
+ #: classes/WP_Piwik/Admin/Settings.php:599
1080
+ msgid "Sitebrowser"
1081
+ msgstr "Sitebrowser"
1082
 
1083
+ #: classes/WP_Piwik/Admin/Settings.php:600
1084
+ msgid "Clear cache"
1085
+ msgstr "Cache leeren"
1086
 
1087
+ #: classes/WP_Piwik/Admin/Settings.php:601
1088
+ msgid "Are you sure you want to clear all settings?"
1089
+ msgstr "Bist Du Dir sicher, dass Du alle Einstellungen l&ouml;schen willst?"
1090
 
1091
+ #: classes/WP_Piwik/Admin/Settings.php:601
1092
+ msgid "Reset WP-Piwik"
1093
+ msgstr "WP-Piwik zur&uuml;cksetzen"
1094
 
1095
+ #: classes/WP_Piwik/Admin/Settings.php:603
1096
  msgid "Latest support threads on WordPress.org"
1097
  msgstr "Die letzten Support-Beitr&auml;ge auf WordPress.org"
1098
 
1099
+ #: classes/WP_Piwik/Admin/Settings.php:654
1100
+ msgid "Settings cleared (except connection settings)."
1101
+ msgstr "Einstellungen gel&ouml;scht (au&szlig;er Verbindungsdaten)"
1102
 
1103
+ #: classes/WP_Piwik/Admin/Settings.php:670
1104
+ msgid "Cache cleared."
1105
+ msgstr "Cache geleert."
 
 
1106
 
1107
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1108
+ msgid "site"
1109
+ msgstr "Seite"
1110
 
1111
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1112
+ msgid "sites"
1113
+ msgstr "Seiten"
1114
 
1115
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1116
+ msgid "No site configured yet."
1117
+ msgstr "Noch keine Seite konfiguriert."
1118
 
1119
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1120
+ msgid "Blog ID"
1121
+ msgstr "Blog ID"
1122
 
1123
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1124
+ msgid "Title"
1125
+ msgstr "Titel"
1126
 
1127
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1128
+ msgid "URL"
1129
+ msgstr "URL"
1130
 
1131
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1132
+ msgid "Site ID (Piwik)"
1133
+ msgstr "Seiten-ID (Piwik)"
1134
 
1135
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1136
+ msgid "Site not created yet."
1137
+ msgstr "Seite noch nicht erstellt."
1138
 
1139
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1140
+ msgid "Statistics"
1141
+ msgstr "Statistiken"
1142
 
1143
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1144
+ msgid "Currently shown stats:"
1145
+ msgstr "Derzeit gezeigte Statistiken:"
1146
 
1147
+ #: classes/WP_Piwik/Request/Php.php:27
1148
+ msgid "Could not resolve"
1149
+ msgstr "Keine Verbindung zu"
1150
+
1151
+ #: classes/WP_Piwik/Request/Php.php:27
1152
+ msgid "realpath() returns false"
1153
+ msgstr "realpath() gibt false zur&uuml;ck"
1154
+
1155
+ #: classes/WP_Piwik/Request/Php.php:39
1156
+ msgid "Class Piwik\\FrontController does not exists."
1157
+ msgstr "Die Klasse Piwik\\FrontController existiert nicht."
1158
+
1159
+ #: classes/WP_Piwik/Request/Php.php:42
1160
+ msgid "Class Piwik\\API\\Request does not exists."
1161
+ msgstr "Die Klasse Piwik\\API\\Request existiert nicht."
1162
+
1163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1164
+ msgid "Piwik Custom Variables"
1165
+ msgstr "Piwik Custom Variables"
1166
+
1167
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1168
+ msgid "Name"
1169
+ msgstr "Name"
1170
+
1171
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1172
+ msgid "Value"
1173
+ msgstr "Wert"
1174
+
1175
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1176
+ msgid "Set custom variables for a page view"
1177
+ msgstr "Definiere custom variables f&uuml;r einen Seitenaufruf."
1178
+
1179
+ #: classes/WP_Piwik/Widget.php:91
1180
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1181
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1182
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1183
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1184
+ #: classes/WP_Piwik/Widget/Items.php:23
1185
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1186
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1187
+ #: classes/WP_Piwik/Widget/Overview.php:24
1188
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1189
+ #: classes/WP_Piwik/Widget/Screens.php:35
1190
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1191
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1192
+ #: classes/WP_Piwik/Widget/Systems.php:33
1193
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1194
+ msgid "Piwik error"
1195
+ msgstr "Piwik-Fehler"
1196
 
1197
+ #: classes/WP_Piwik/Widget.php:100
1198
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1199
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1200
+ #: classes/WP_Piwik/Widget/Country.php:39
1201
+ #: classes/WP_Piwik/Widget/Screens.php:37
1202
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1203
+ #: classes/WP_Piwik/Widget/Systems.php:35
1204
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1205
+ msgid "Unique"
1206
+ msgstr "Unique"
1207
 
1208
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1209
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1210
+ msgid "Visits"
1211
+ msgstr "Besuche"
1212
 
1213
+ #: classes/WP_Piwik/Widget.php:104
1214
+ msgid "Hits"
1215
+ msgstr "Aufrufe"
1216
 
1217
+ #: classes/WP_Piwik/Widget.php:106
1218
+ msgid "Actions"
1219
+ msgstr "Aktionen"
1220
 
1221
+ #: classes/WP_Piwik/Widget.php:162
1222
+ msgid "No data available."
1223
+ msgstr "Keine Daten vorhanden."
1224
 
1225
+ #: classes/WP_Piwik/Widget.php:243
1226
+ msgid "today"
1227
+ msgstr "heute"
1228
 
1229
+ #: classes/WP_Piwik/Widget.php:248
1230
+ msgid "current month"
1231
+ msgstr "aktueller Monat"
1232
 
1233
+ #: classes/WP_Piwik/Widget.php:253
1234
+ msgid "last month"
1235
+ msgstr "letzter Monat"
1236
 
1237
+ #: classes/WP_Piwik/Widget.php:258
1238
+ msgid "current week"
1239
+ msgstr "aktuelle Woche"
1240
 
1241
+ #: classes/WP_Piwik/Widget.php:263
1242
+ msgid "last week"
1243
+ msgstr "letzte Woche"
1244
 
1245
+ #: classes/WP_Piwik/Widget.php:268
1246
+ msgid "yesterday"
1247
+ msgstr "gestern"
1248
 
1249
+ #: classes/WP_Piwik/Widget.php:293
1250
+ msgid "week"
1251
+ msgstr "Woche"
1252
 
1253
+ #: classes/WP_Piwik/Widget.php:328
1254
+ msgid "last 30 days"
1255
+ msgstr "letzte 30 Tage"
1256
 
1257
+ #: classes/WP_Piwik/Widget.php:330
1258
+ msgid "last 12 "
1259
+ msgstr "letzte 12"
1260
 
1261
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1262
+ msgid "Browser Details"
1263
+ msgstr "Browser-Details"
1264
 
1265
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1266
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1267
+ msgid "Browser"
1268
+ msgstr "Browser"
1269
 
1270
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1271
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1272
+ #: classes/WP_Piwik/Widget/Country.php:39
1273
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1274
+ #: classes/WP_Piwik/Widget/Screens.php:37
1275
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1276
+ #: classes/WP_Piwik/Widget/Systems.php:35
1277
+ msgid "Percent"
1278
+ msgstr "Prozent"
1279
 
1280
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1281
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1282
+ #: classes/WP_Piwik/Widget/Country.php:66
1283
+ #: classes/WP_Piwik/Widget/Screens.php:64
1284
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1285
+ #: classes/WP_Piwik/Widget/Systems.php:62
1286
+ msgid "Others"
1287
+ msgstr "Andere"
1288
 
1289
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1290
+ msgid "Browsers"
1291
+ msgstr "Browser"
1292
 
1293
+ #: classes/WP_Piwik/Widget/Chart.php:19
1294
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1295
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1296
+ msgid "Visitors"
1297
+ msgstr "Besucher"
1298
 
1299
+ #: classes/WP_Piwik/Widget/Chart.php:71
1300
+ msgid ""
1301
+ "The graph contains the values shown in the table below (visitors / unique / "
1302
+ "bounces). The red line shows a linear trendline (unique)."
1303
+ msgstr "Der Graph zeigt die Werte aus der Besucher-Tabelle (Besucher / Unique / Abspr&uuml;nge). Die rote Linie zeigt eine lineare Trendlinie (Unique)."
1304
+
1305
+ #: classes/WP_Piwik/Widget/Country.php:18
1306
+ msgid "Countries"
1307
+ msgstr "L&auml;nder"
1308
+
1309
+ #: classes/WP_Piwik/Widget/Country.php:39
1310
+ msgid "Country"
1311
+ msgstr "Land"
1312
+
1313
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1314
+ msgid "E-Commerce"
1315
+ msgstr "E-Commerce"
1316
+
1317
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1318
+ msgid "Conversions"
1319
+ msgstr "Conversions"
1320
+
1321
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1322
+ msgid "Visits converted"
1323
+ msgstr "Besucher Conversions"
1324
+
1325
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1326
+ #: classes/WP_Piwik/Widget/Items.php:27
1327
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1328
+ msgid "Revenue"
1329
+ msgstr "Umsatz"
1330
+
1331
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1332
+ #: classes/WP_Piwik/Widget/Items.php:32
1333
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1334
+ msgid "Conversion rate"
1335
+ msgstr "Konversionsrate"
1336
+
1337
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1338
+ msgid "Conversions (new visitor)"
1339
+ msgstr "Conversions (neue Besucher)"
1340
+
1341
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1342
+ msgid "Visits converted (new visitor)"
1343
+ msgstr "Conversions (neue Besucher)"
1344
+
1345
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1346
+ msgid "Revenue (new visitor)"
1347
+ msgstr "Umsatz (neue Besucher)"
1348
+
1349
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1350
+ msgid "Conversion rate (new visitor)"
1351
+ msgstr "Konversionsrate (neue Besucher)"
1352
+
1353
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1354
+ msgid "Conversions (returning visitor)"
1355
+ msgstr "Conversions (wiederkehrende Besucher)"
1356
+
1357
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1358
+ msgid "Visits converted (returning visitor)"
1359
+ msgstr "Conversions (wiederkehrende Besucher)"
1360
+
1361
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1362
+ msgid "Revenue (returning visitor)"
1363
+ msgstr "Umsatz (wiederkehrende Besucher)"
1364
+
1365
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1366
+ msgid "Conversion rate (returning visitor)"
1367
+ msgstr "Konversionsrate (wiederkehrende Besucher))"
1368
+
1369
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1370
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1371
+ msgid "Shortcut"
1372
+ msgstr "Shortcut"
1373
 
1374
+ #: classes/WP_Piwik/Widget/Items.php:11
1375
+ msgid "E-Commerce Items"
1376
+ msgstr "E-Commerce Artikel"
1377
 
1378
+ #: classes/WP_Piwik/Widget/Items.php:26
1379
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1380
+ msgid "Label"
1381
+ msgstr "Bezeichnung"
1382
 
1383
+ #: classes/WP_Piwik/Widget/Items.php:28
1384
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1385
+ msgid "Quantity"
1386
+ msgstr "Anzahl"
1387
 
1388
+ #: classes/WP_Piwik/Widget/Items.php:29
1389
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1390
+ msgid "Orders"
1391
+ msgstr "Bestellungen"
1392
 
1393
+ #: classes/WP_Piwik/Widget/Items.php:30
1394
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1395
+ msgid "Avg. price"
1396
+ msgstr "&#216; Preis"
1397
 
1398
+ #: classes/WP_Piwik/Widget/Items.php:31
1399
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1400
+ msgid "Avg. quantity"
1401
+ msgstr "&#216; Anzahl"
1402
 
1403
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1404
+ msgid "E-Commerce Item Categories"
1405
+ msgstr "E-Commerce Artikel-Kategorien"
1406
 
1407
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1408
+ msgid "Keywords"
1409
+ msgstr "Keywords"
1410
 
1411
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1412
+ #: classes/WP_Piwik/Widget/Search.php:16
1413
+ msgid "Site Search"
1414
+ msgstr "Seitensuche"
1415
 
1416
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1417
+ #: classes/WP_Piwik/Widget/Search.php:25
1418
+ msgid "Keyword"
1419
+ msgstr "Keyword"
1420
 
1421
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1422
+ #: classes/WP_Piwik/Widget/Search.php:25
1423
+ msgid "Requests"
1424
+ msgstr "Anfragen"
1425
 
1426
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1427
+ #: classes/WP_Piwik/Widget/Search.php:25
1428
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1429
+ msgid "Bounced"
1430
+ msgstr "Abspr&uuml;nge"
1431
 
1432
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1433
+ msgid "Overview"
1434
+ msgstr "&Uuml;bersicht"
1435
 
1436
+ #: classes/WP_Piwik/Widget/Overview.php:17
1437
+ msgid "dashboard"
1438
+ msgstr "Dashboard"
1439
 
1440
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1441
+ msgid "Unique visitors"
1442
+ msgstr "Eindeutige Besucher"
1443
 
1444
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1445
+ msgid "Page views"
1446
+ msgstr "Page Views"
1447
 
1448
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1449
+ msgid "Total time spent"
1450
+ msgstr "Verbrachte Zeit"
1451
 
1452
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1453
+ msgid "Bounce count"
1454
+ msgstr "Absprungrate"
1455
 
1456
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1457
+ msgid "Time/visit"
1458
+ msgstr "Zeit/Besuch"
1459
 
1460
+ #: classes/WP_Piwik/Widget/Overview.php:57
1461
+ msgid "Max. page views in one visit"
1462
+ msgstr "Max. Seiten/Besuch"
1463
 
1464
+ #: classes/WP_Piwik/Widget/Pages.php:16
1465
+ msgid "Pages"
1466
+ msgstr "Seiten"
1467
 
1468
+ #: classes/WP_Piwik/Widget/Pages.php:18
1469
+ msgid "Page"
1470
+ msgstr "Seite"
1471
 
1472
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1473
+ msgid "Plugins"
1474
+ msgstr "Plugins"
1475
 
1476
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1477
+ msgid "Plugin"
1478
+ msgstr "Plugin"
1479
 
1480
+ #: classes/WP_Piwik/Widget/Post.php:43
1481
+ msgid "Min. generation time"
1482
+ msgstr "Min. Zeit zur Generierung"
1483
 
1484
+ #: classes/WP_Piwik/Widget/Post.php:44
1485
+ msgid "Max. generation time"
1486
+ msgstr "Max. Zeit zur Generierung"
1487
 
1488
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1489
+ msgid "Referrers"
1490
+ msgstr "Referrer"
1491
 
1492
+ #: classes/WP_Piwik/Widget/Screens.php:16
1493
+ msgid "Resolutions"
1494
+ msgstr "Aufl&ouml;sungen"
1495
 
1496
+ #: classes/WP_Piwik/Widget/Screens.php:37
1497
+ msgid "Resolution"
1498
+ msgstr "Aufl&ouml;sung"
1499
 
1500
+ #: classes/WP_Piwik/Widget/Seo.php:13
1501
+ msgid "SEO"
1502
+ msgstr "SEO"
1503
 
1504
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1505
+ msgid "Operation System Details"
1506
+ msgstr "Betriebssystem-Details"
1507
 
1508
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1509
+ #: classes/WP_Piwik/Widget/Systems.php:35
1510
+ msgid "Operation System"
1511
+ msgstr "Betriebssystem"
1512
 
1513
+ #: classes/WP_Piwik/Widget/Systems.php:14
1514
+ msgid "Operation Systems"
1515
+ msgstr "Betriebssysteme"
1516
 
1517
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1518
+ msgid "Date"
1519
+ msgstr "Datum"
1520
 
1521
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1522
+ msgid "Page Views"
1523
+ msgstr "Seitenansichten"
1524
 
1525
+ #: wp-piwik.php:60
1526
+ #, php-format
1527
+ msgid ""
1528
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1529
+ " Please update PHP to use WP-Piwik."
1530
+ msgstr "WP-Piwik ben&ouml;tigt zumindest PHP 5.3. Du verwendest die veraltete Version %s. Bitte aktualisiere PHP um WP-Piwik zu nutzen."
languages/wp-piwik-el.mo ADDED
Binary file
languages/wp-piwik-el.po ADDED
@@ -0,0 +1,1531 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
+ # Vasilis Lourdas, 2016-2017
5
+ # Vasilis Lourdas, 2015
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: WP-Piwik\n"
9
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
10
+ "PO-Revision-Date: 2017-10-15 18:39+0000\n"
11
+ "Last-Translator: André Bräkling\n"
12
+ "Language-Team: Greek (http://www.transifex.com/piwik/wp-piwik/language/el/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: el\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+
19
+ #: classes/WP_Piwik.php:203
20
+ #, php-format
21
+ msgid "%s %s installed."
22
+ msgstr "Το %s %s εγκαταστάθηκε."
23
+
24
+ #: classes/WP_Piwik.php:203
25
+ msgid "Next you should connect to Piwik"
26
+ msgstr "Στη συνέχεια συνδεθείτε με Piwik"
27
+
28
+ #: classes/WP_Piwik.php:237
29
+ #, php-format
30
+ msgid "%s updated to %s."
31
+ msgstr "Το %s ενημερώθηκε σε %s."
32
+
33
+ #: classes/WP_Piwik.php:237
34
+ msgid "Please validate your configuration"
35
+ msgstr "Παρακαλώ επαληθεύστε τη διαμόρφωση"
36
+
37
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
38
+ msgid "Settings"
39
+ msgstr "Ρυθμίσεις"
40
+
41
+ #: classes/WP_Piwik.php:272
42
+ msgid "Important"
43
+ msgstr "Σημαντικό"
44
+
45
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
46
+ msgid "Piwik Statistics"
47
+ msgstr "Piwik Στατιστικά"
48
+
49
+ #: classes/WP_Piwik.php:499
50
+ msgid "Configure WP-Piwik"
51
+ msgstr "Παραμετροποίηση του WP-Piwik"
52
+
53
+ #: classes/WP_Piwik.php:992
54
+ msgid "An error occured"
55
+ msgstr "Παρουσιάστηκε σφάλμα"
56
+
57
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
58
+ msgid "Support"
59
+ msgstr "Υποστήριξη"
60
+
61
+ #: classes/WP_Piwik.php:1275
62
+ msgid "Cheatin&#8217; uh?"
63
+ msgstr "Κλέβεις, έτσι;"
64
+
65
+ #: classes/WP_Piwik/Admin/Settings.php:24
66
+ msgid "Reload"
67
+ msgstr "Επαναφόρτωση"
68
+
69
+ #: classes/WP_Piwik/Admin/Settings.php:27
70
+ msgid "Changes saved."
71
+ msgstr "Οι αλλαγές αποθηκεύθηκαν."
72
+
73
+ #: classes/WP_Piwik/Admin/Settings.php:55
74
+ msgid "Thanks for using WP-Piwik!"
75
+ msgstr "Ευχαριστούμε που χρησιμοποιείτε το WP-Piwik!"
76
+
77
+ #: classes/WP_Piwik/Admin/Settings.php:58
78
+ #, php-format
79
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
80
+ msgstr "Το WP-Piwik %s συνδέθηκε με επιτυχία στο Piwik %s."
81
+
82
+ #: classes/WP_Piwik/Admin/Settings.php:58
83
+ #, php-format
84
+ msgid "You are running WordPress %s."
85
+ msgstr "Τρέχετε το WordPress %s."
86
+
87
+ #: classes/WP_Piwik/Admin/Settings.php:58
88
+ #, php-format
89
+ msgid ""
90
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
91
+ "your sites as different websites."
92
+ msgstr "Τρέχετε ένα δίκτυο ιστολογίων (WPMU) WordPress %s. Το WP-Piwik θα χειρίζεται όλους τους ιστοτόπους σας ως διαφορετικούς."
93
+
94
+ #: classes/WP_Piwik/Admin/Settings.php:62
95
+ #, php-format
96
+ msgid ""
97
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
98
+ " the &raquo;Connect to Piwik&laquo; section below."
99
+ msgstr "Το WP-Piwik %s δεν μπόρεσε να συνδεθεί με το Piwik χρησιμοποιώντας τις ρυθμίσεις σας. Δείτε την παρακάτω παράγραφο %raquo;Σύνδεση με το Piwik&laquo;."
100
+
101
+ #: classes/WP_Piwik/Admin/Settings.php:64
102
+ #, php-format
103
+ msgid ""
104
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
105
+ "During connection the following error occured: <br /><code>%s</code>"
106
+ msgstr "Το WP-Piwik δεν ήταν δυνατό να συνδεθεί με το Piwik χρησιμοποιώντας την παραμετροποίησή σας. Κατά την σύνδεση, συνέβη το εξής σφάλμα: <br /><code>%s</code>"
107
+
108
+ #: classes/WP_Piwik/Admin/Settings.php:67
109
+ #, php-format
110
+ msgid ""
111
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
112
+ "Piwik&laquo; section below."
113
+ msgstr "Το WP-Piwik %s πρέπει να συνδεθεί πρώτα με το Piwik. Ελέγξτε το τμήμα &raquo;Σύνδεση με το Piwik&laquo; παρακάτω."
114
+
115
+ #: classes/WP_Piwik/Admin/Settings.php:71
116
+ msgid "Connect to Piwik"
117
+ msgstr "Σύνδεση με το Piwik"
118
+
119
+ #: classes/WP_Piwik/Admin/Settings.php:76
120
+ msgid "Show Statistics"
121
+ msgstr "Εμφάνιση στατιστικών"
122
+
123
+ #: classes/WP_Piwik/Admin/Settings.php:80
124
+ msgid "Enable Tracking"
125
+ msgstr "Ενεργοποίηση παρακολούθησης"
126
+
127
+ #: classes/WP_Piwik/Admin/Settings.php:85
128
+ msgid "Expert Settings"
129
+ msgstr "Ρυθμίσεις για προχωρημένους"
130
+
131
+ #: classes/WP_Piwik/Admin/Settings.php:93
132
+ msgid "Credits"
133
+ msgstr "Συντελεστές"
134
+
135
+ #: classes/WP_Piwik/Admin/Settings.php:106
136
+ msgid ""
137
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
138
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
139
+ " To use this you will need your own Piwik instance. If you do not already "
140
+ "have a Piwik setup, you have two simple options: use either"
141
+ msgstr "Το WP-Piwik είναι ένα πρόσθετο για το WordPress για να εμφανίζει μια επιλογή από στατιστικά του Piwik στον πίνακα διαχείρισης του WordPress και για να προσθέτετε και παραμετροποιείτε τον κώδικα παρακολούθησης του Piwik. Αν δεν έχετε ήδη κάποια εγκατάσταση του Piwik, έχετε δύο απλές επιλογές: να χρησιμοποιήσετε είτε"
142
+
143
+ #: classes/WP_Piwik/Admin/Settings.php:106
144
+ msgid "a self-hosted Piwik"
145
+ msgstr "ένα Piwik στημένο τοπικά"
146
+
147
+ #: classes/WP_Piwik/Admin/Settings.php:106
148
+ msgid "or"
149
+ msgstr "ή"
150
+
151
+ #: classes/WP_Piwik/Admin/Settings.php:106
152
+ msgid "a cloud-hosted Piwik by InnoCraft"
153
+ msgstr "ένα Piwik στημένο στο σύννεφο από την InnoCraft"
154
+
155
+ #: classes/WP_Piwik/Admin/Settings.php:109
156
+ msgid ""
157
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
158
+ "and not connect to InnoCraft Cloud."
159
+ msgstr "Ούτε το cURL ούτε η fopen είναι διαθέσιμα. Έτσι, το WP-Piwik δεν μπορεί να χρησιμοποιήσει το HTTP API και να συνδεθεί με το σύννεφο InnoCraft."
160
+
161
+ #: classes/WP_Piwik/Admin/Settings.php:109
162
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
163
+ msgid "More information"
164
+ msgstr "Περισσότερες πληροφορίες"
165
+
166
+ #: classes/WP_Piwik/Admin/Settings.php:111
167
+ msgid "You can choose between three connection methods:"
168
+ msgstr "Μπορείτε να επιλέξετε μεταξύ των τριών τρόπων σύνδεσης:"
169
+
170
+ #: classes/WP_Piwik/Admin/Settings.php:111
171
+ #: classes/WP_Piwik/Admin/Settings.php:114
172
+ msgid "Self-hosted (HTTP API, default)"
173
+ msgstr "Φιλοξενία σε εσάς (HTTP API, εξ' ορισμού)"
174
+
175
+ #: classes/WP_Piwik/Admin/Settings.php:111
176
+ msgid ""
177
+ "This is the default option for a self-hosted Piwik and should work for most "
178
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
179
+ msgstr "Αυτή είναι η προκαθορισμένη επιλογή για Piwik που φιλοξενείται σε εσάς και αναμένεται να δουλέψει για τις περισσότερες εγκαταστάσεις. Το WP-Piwik θα συνδεθεί με το Piwik με χρήση http(s)."
180
+
181
+ #: classes/WP_Piwik/Admin/Settings.php:111
182
+ #: classes/WP_Piwik/Admin/Settings.php:115
183
+ msgid "Self-hosted (PHP API)"
184
+ msgstr "Φιλοξενία σε εσάς (PHP API)"
185
+
186
+ #: classes/WP_Piwik/Admin/Settings.php:111
187
+ msgid ""
188
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
189
+ " machine and you know the full server path to your Piwik instance."
190
+ msgstr "Επιλέξτε αυτή την επιλογή, αν το Piwik που φιλοξενείται σε εσάς και το WordPress εκτελούνται στον ίδιο διακομιστή και γνωρίζετε την πλήρη διαδρομή για το στιγμιότυπο του Piwik."
191
+
192
+ #: classes/WP_Piwik/Admin/Settings.php:111
193
+ #: classes/WP_Piwik/Admin/Settings.php:116
194
+ msgid "Cloud-hosted (InnoCraft Cloud)"
195
+ msgstr "Στημένο στο σύννεφο (Σύννεφο InnoCraft)"
196
+
197
+ #: classes/WP_Piwik/Admin/Settings.php:111
198
+ msgid ""
199
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
200
+ "option."
201
+ msgstr ""
202
+
203
+ #: classes/WP_Piwik/Admin/Settings.php:112
204
+ msgid "Piwik Mode"
205
+ msgstr "Κατάσταση του Piwik"
206
+
207
+ #: classes/WP_Piwik/Admin/Settings.php:113
208
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
209
+ msgstr "Ανενεργό (το WP-Piwik δεν συνδέεται με το Piwik)"
210
+
211
+ #: classes/WP_Piwik/Admin/Settings.php:119
212
+ msgid "Piwik URL"
213
+ msgstr "Piwik URL"
214
+
215
+ #: classes/WP_Piwik/Admin/Settings.php:119
216
+ msgid ""
217
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
218
+ "instance, e.g. http://www.example.com/piwik/."
219
+ msgstr "Εισάγετε τη διεύθυνση URL του Piwik. Αυτή είναι η ίδια διεύθυνση URL που χρησιμοποιείτε για να προσπελάσετε το στιγμιότυπο Piwik σας, πχ. http://www.example.com/piwik/."
220
+
221
+ #: classes/WP_Piwik/Admin/Settings.php:120
222
+ msgid "Piwik path"
223
+ msgstr "Διαδρομή του Piwik"
224
+
225
+ #: classes/WP_Piwik/Admin/Settings.php:120
226
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
227
+ msgstr "Εισάγετε την πλήρη διαδρομή για το στιγμιότυπο του Piwik σας, πχ. /var/www/piwik."
228
+
229
+ #: classes/WP_Piwik/Admin/Settings.php:121
230
+ msgid "Piwik subdomain"
231
+ msgstr "Υποόνομα χώρου Piwik"
232
+
233
+ #: classes/WP_Piwik/Admin/Settings.php:121
234
+ msgid ""
235
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
236
+ "https://SUBDOMAIN.innocraft.cloud."
237
+ msgstr ""
238
+
239
+ #: classes/WP_Piwik/Admin/Settings.php:122
240
+ msgid "Auth token"
241
+ msgstr "Σύμβολο γνησιότητας"
242
+
243
+ #: classes/WP_Piwik/Admin/Settings.php:122
244
+ msgid ""
245
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
246
+ "0a1b2c34d56e78901fa2bc3d45678efa."
247
+ msgstr "Εισάγετε εδώ τον κωδικό πιστοποίησης του Piwik. Είναι ένας αλφαριθμητικός κωδικός σαν το 0a1b2c34d56e78901fa2bc3d45678efa."
248
+
249
+ #: classes/WP_Piwik/Admin/Settings.php:122
250
+ #, php-format
251
+ msgid "See %sWP-Piwik FAQ%s."
252
+ msgstr "Δείτε τις %sΣυχνές ερωταπαντήσεις του WP-Piwik%s."
253
+
254
+ #: classes/WP_Piwik/Admin/Settings.php:127
255
+ msgid "Auto config"
256
+ msgstr "Αυτόματη ρύθμιση"
257
+
258
+ #: classes/WP_Piwik/Admin/Settings.php:127
259
+ msgid ""
260
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
261
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
262
+ msgstr "Επιλέξτε αυτό για να γίνεται αυτόματη επιλογή του ιστολογίου σας από τους ιστοτόπους σας του Piwik με τη διεύθυνση URL. Αν το ιστολόγιό σας δεν έχει προστεθεί ακόμη, το WP-Piwik θα προσθέσει αυτόματα ένα νέο ιστοτόπο."
263
+
264
+ #: classes/WP_Piwik/Admin/Settings.php:131
265
+ #, php-format
266
+ msgid ""
267
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
268
+ "/><code>%s</code>"
269
+ msgstr ""
270
+
271
+ #: classes/WP_Piwik/Admin/Settings.php:141
272
+ msgid "Determined site"
273
+ msgstr "Ιστοτόπος που εντοπίστηκε"
274
+
275
+ #: classes/WP_Piwik/Admin/Settings.php:146
276
+ msgid "Select site"
277
+ msgstr "Επιλέξτε ιστοτόπο"
278
+
279
+ #: classes/WP_Piwik/Admin/Settings.php:155
280
+ msgid "Piwik default date"
281
+ msgstr "Προκαθορισμένη ημερομηνία Piwik"
282
+
283
+ #: classes/WP_Piwik/Admin/Settings.php:156
284
+ #: classes/WP_Piwik/Admin/Settings.php:170
285
+ msgid "Today"
286
+ msgstr "Σήμερα"
287
+
288
+ #: classes/WP_Piwik/Admin/Settings.php:157
289
+ #: classes/WP_Piwik/Admin/Settings.php:169
290
+ msgid "Yesterday"
291
+ msgstr "Εχθές"
292
+
293
+ #: classes/WP_Piwik/Admin/Settings.php:158
294
+ msgid "Current month"
295
+ msgstr "Τρέχων μήνας"
296
+
297
+ #: classes/WP_Piwik/Admin/Settings.php:159
298
+ msgid "Last month"
299
+ msgstr "Προηγούμενος μήνας"
300
+
301
+ #: classes/WP_Piwik/Admin/Settings.php:160
302
+ msgid "Current week"
303
+ msgstr "Τρέχουσα εβδομάδα"
304
+
305
+ #: classes/WP_Piwik/Admin/Settings.php:161
306
+ msgid "Last week"
307
+ msgstr "Προηγούμενη εβδομάδα"
308
+
309
+ #: classes/WP_Piwik/Admin/Settings.php:162
310
+ msgid "Default date shown on statistics page."
311
+ msgstr "Προεπιλεγμένη ημερομηνία που αναγράφεται στη σελίδα των στατιστικών."
312
+
313
+ #: classes/WP_Piwik/Admin/Settings.php:164
314
+ msgid "Show SEO data"
315
+ msgstr "Εμφάνιση των δεδομένων SEO"
316
+
317
+ #: classes/WP_Piwik/Admin/Settings.php:164
318
+ msgid "Display SEO ranking data on statistics page."
319
+ msgstr "Εμφάνιση των δεδομένων κατάταξης SEO στη σελίδα στατιστικών."
320
+
321
+ #: classes/WP_Piwik/Admin/Settings.php:164
322
+ #: classes/WP_Piwik/Admin/Settings.php:176
323
+ msgid "Slow!"
324
+ msgstr "Αργό!"
325
+
326
+ #: classes/WP_Piwik/Admin/Settings.php:165
327
+ msgid "Show e-commerce data"
328
+ msgstr ""
329
+
330
+ #: classes/WP_Piwik/Admin/Settings.php:165
331
+ msgid "Display e-commerce data on statistics page."
332
+ msgstr ""
333
+
334
+ #: classes/WP_Piwik/Admin/Settings.php:167
335
+ msgid "Dashboard overview"
336
+ msgstr "Σύνοψη πίνακα"
337
+
338
+ #: classes/WP_Piwik/Admin/Settings.php:168
339
+ #: classes/WP_Piwik/Admin/Settings.php:208
340
+ #: classes/WP_Piwik/Admin/Settings.php:210
341
+ #: classes/WP_Piwik/Admin/Settings.php:231
342
+ #: classes/WP_Piwik/Admin/Settings.php:285
343
+ #: classes/WP_Piwik/Admin/Settings.php:340
344
+ msgid "Disabled"
345
+ msgstr "Ανενεργό"
346
+
347
+ #: classes/WP_Piwik/Admin/Settings.php:171
348
+ msgid "Last 30 days"
349
+ msgstr "Προηγούμενες 30 ημέρες"
350
+
351
+ #: classes/WP_Piwik/Admin/Settings.php:172
352
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
353
+ msgstr "Ενεργοποίηση της &quot;Σύνοψης&quot; του πίνακα του γραφικού συστατικού WP-Piwik."
354
+
355
+ #: classes/WP_Piwik/Admin/Settings.php:174
356
+ msgid "Dashboard graph"
357
+ msgstr "Γράφημα πίνακα"
358
+
359
+ #: classes/WP_Piwik/Admin/Settings.php:174
360
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
361
+ msgstr "Ενεργοποίηση του &quot;γραφικού&quot; συστατικού πίνακα του WP-Piwik."
362
+
363
+ #: classes/WP_Piwik/Admin/Settings.php:176
364
+ msgid "Dashboard SEO"
365
+ msgstr "SEO πίνακα"
366
+
367
+ #: classes/WP_Piwik/Admin/Settings.php:176
368
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
369
+ msgstr "Ενεργοποίηση του γραφικού συστατικού &quot;SEO&quot; του πίνακα ελέγχου του WP-Piwik."
370
+
371
+ #: classes/WP_Piwik/Admin/Settings.php:178
372
+ msgid "Dashboard e-commerce"
373
+ msgstr ""
374
+
375
+ #: classes/WP_Piwik/Admin/Settings.php:178
376
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
377
+ msgstr ""
378
+
379
+ #: classes/WP_Piwik/Admin/Settings.php:180
380
+ msgid "Show graph on WordPress Toolbar"
381
+ msgstr "Εμφάνιση γραφήματος στην μπάρα εργαλείων του WordPress"
382
+
383
+ #: classes/WP_Piwik/Admin/Settings.php:180
384
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
385
+ msgstr "Εμφάνιση του γραφήματος επισκέψεων για τις τελευταίες 30 ημέρες στην μπάρα εργαλείων του WordPress."
386
+
387
+ #: classes/WP_Piwik/Admin/Settings.php:182
388
+ msgid "Display stats to"
389
+ msgstr "Εμφάνιση στατιστικών σε"
390
+
391
+ #: classes/WP_Piwik/Admin/Settings.php:189
392
+ msgid "Choose user roles allowed to see the statistics page."
393
+ msgstr "Επιλέξτε τους ρόλους χρηστών, οι οποίοι επιτρέπεται να βλέπουν τα στατιστικά."
394
+
395
+ #: classes/WP_Piwik/Admin/Settings.php:191
396
+ msgid "Show per post stats"
397
+ msgstr "Εμφάνιση στατιστικών ανά καταχώρηση"
398
+
399
+ #: classes/WP_Piwik/Admin/Settings.php:191
400
+ msgid "Show stats about single posts at the post edit admin page."
401
+ msgstr "Εμφάνιση στατιστικών για μεμονωμένες καταχωρήσεις στη σελίδα διαχείρισης της καταχώρησης."
402
+
403
+ #: classes/WP_Piwik/Admin/Settings.php:193
404
+ msgid "Piwik shortcut"
405
+ msgstr "Συντόμευση Piwik"
406
+
407
+ #: classes/WP_Piwik/Admin/Settings.php:193
408
+ msgid "Display a shortcut to Piwik itself."
409
+ msgstr "Εμφάνιση μιας συντόμευσης προς Piwik."
410
+
411
+ #: classes/WP_Piwik/Admin/Settings.php:195
412
+ msgid "WP-Piwik display name"
413
+ msgstr "Εμφανιζόμενο όνομα WP-Piwik"
414
+
415
+ #: classes/WP_Piwik/Admin/Settings.php:195
416
+ msgid "Plugin name shown in WordPress."
417
+ msgstr "Το όνομα του πρόσθετου που θα εμφανίζεται στο WordPress."
418
+
419
+ #: classes/WP_Piwik/Admin/Settings.php:197
420
+ msgid "Enable shortcodes"
421
+ msgstr "Ενεργοποίηση σύντομων κωδικών"
422
+
423
+ #: classes/WP_Piwik/Admin/Settings.php:197
424
+ msgid "Enable shortcodes in post or page content."
425
+ msgstr "Ενεργοποίηση σύντομων κωδικών στο περιεχόμενο καταχωρήσεων ή σελίδων."
426
+
427
+ #: classes/WP_Piwik/Admin/Settings.php:208
428
+ msgid "You can choose between four tracking code modes:"
429
+ msgstr "Μπορείτε να επιλέξετε μεταξύ τεσσάρων καταστάσεων κωδικών παρακολούθησης:"
430
+
431
+ #: classes/WP_Piwik/Admin/Settings.php:208
432
+ msgid ""
433
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
434
+ "tracking code to your template files or you use another plugin to add the "
435
+ "tracking code."
436
+ msgstr "Το WP-Piwik δεν θα προσθέσει τον κώδικα παρακολούθησης. Χρησιμοποιήστε το αυτό, αν θέλετε να προσθέτετε τον κώδικα παρακολούθησης στα αρχεία προτύπων ή χρησιμοποιείτε κάποιο άλλο πρόσθετο για την προσθήκη του κώδικα."
437
+
438
+ #: classes/WP_Piwik/Admin/Settings.php:208
439
+ #: classes/WP_Piwik/Admin/Settings.php:211
440
+ msgid "Default tracking"
441
+ msgstr "Προκαθορισμένη παρακολούθηση"
442
+
443
+ #: classes/WP_Piwik/Admin/Settings.php:208
444
+ msgid "WP-Piwik will use Piwik's standard tracking code."
445
+ msgstr "Το WP-Piwik θα χρησιμοποιήσει τον προκαθορισμένο κώδικα παρακολούθησης του Piwik."
446
+
447
+ #: classes/WP_Piwik/Admin/Settings.php:208
448
+ #: classes/WP_Piwik/Admin/Settings.php:212
449
+ msgid "Use js/index.php"
450
+ msgstr "Χρήση του js/index.php"
451
+
452
+ #: classes/WP_Piwik/Admin/Settings.php:208
453
+ msgid ""
454
+ "You can choose this tracking code, to deliver a minified proxy code and to "
455
+ "avoid using the files called piwik.js or piwik.php."
456
+ msgstr "Μπορείτε να επιλέξετε αυτό τον κώδικα παρακολούθησης, για να παρέχετε ένα ελαχιστοποιημένο σε μέγεθος κώδικα μεσολαβητή και να αποφύγετε την χρήση των αρχείων piwik.js ή piwik.php."
457
+
458
+ #: classes/WP_Piwik/Admin/Settings.php:208
459
+ #, php-format
460
+ msgid "See %sreadme file%s."
461
+ msgstr "Δείτε το %sαρχείο readme%s."
462
+
463
+ #: classes/WP_Piwik/Admin/Settings.php:208
464
+ #: classes/WP_Piwik/Admin/Settings.php:213
465
+ msgid "Use proxy script"
466
+ msgstr "Χρήση σεναρίου διαμεσολαβητή"
467
+
468
+ #: classes/WP_Piwik/Admin/Settings.php:208
469
+ msgid "Use this tracking code to not reveal the Piwik server URL."
470
+ msgstr "Χρησιμοποιήστε αυτό τον κώδικα παρακολούθησης για να μην αποκαλύπτετε τη διεύθυνση URL του Piwik."
471
+
472
+ #: classes/WP_Piwik/Admin/Settings.php:208
473
+ #: classes/WP_Piwik/Admin/Settings.php:228
474
+ #: classes/WP_Piwik/Admin/Settings.php:238
475
+ #, php-format
476
+ msgid "See %sPiwik FAQ%s."
477
+ msgstr "Δείτε τις %sσυχνές ερωταπαντήσεις του Piwik%s."
478
+
479
+ #: classes/WP_Piwik/Admin/Settings.php:208
480
+ #: classes/WP_Piwik/Admin/Settings.php:214
481
+ msgid "Enter manually"
482
+ msgstr "Εισάγετε χειροκίνητα"
483
+
484
+ #: classes/WP_Piwik/Admin/Settings.php:208
485
+ msgid ""
486
+ "Enter your own tracking code manually. You can choose one of the prior "
487
+ "options, pre-configure your tracking code and switch to manually editing at "
488
+ "last."
489
+ msgstr "Εισάγετε μόνοι σας τον κώδικα παρακολούθησης. Μπορείτε να επιλέξετε μία από τις προηγούμενες επιλογές, να προρυθμίσετε τον κώδικά σας και τέλος να μεταβείτε σε κατάσταση επεξεργασίας."
490
+
491
+ #: classes/WP_Piwik/Admin/Settings.php:208
492
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
493
+ msgstr "Χρήση του κωδικού (ID) για την προσθήκη του αναγνωριστικού ιστοτόπου του Piwik."
494
+
495
+ #: classes/WP_Piwik/Admin/Settings.php:209
496
+ msgid "Add tracking code"
497
+ msgstr "Προσθήκη κώδικα παρακολούθησης"
498
+
499
+ #: classes/WP_Piwik/Admin/Settings.php:217
500
+ msgid "Tracking code"
501
+ msgstr "Κώδικας παρακολούθησης"
502
+
503
+ #: classes/WP_Piwik/Admin/Settings.php:219
504
+ msgid "JavaScript code position"
505
+ msgstr "Θέση του κώδικα JavaScript"
506
+
507
+ #: classes/WP_Piwik/Admin/Settings.php:220
508
+ msgid "Footer"
509
+ msgstr "Υποσέλιδο"
510
+
511
+ #: classes/WP_Piwik/Admin/Settings.php:221
512
+ msgid "Header"
513
+ msgstr "Κεφαλίδα"
514
+
515
+ #: classes/WP_Piwik/Admin/Settings.php:222
516
+ msgid ""
517
+ "Choose whether the JavaScript code is added to the footer or the header."
518
+ msgstr "Επιλέξτε αν ο κώδικας JavaScript θα προστίθεται στο υποσέλιδο ή την κεφαλίδα."
519
+
520
+ #: classes/WP_Piwik/Admin/Settings.php:224
521
+ msgid "Noscript code"
522
+ msgstr "Κώδικας noscript"
523
+
524
+ #: classes/WP_Piwik/Admin/Settings.php:226
525
+ msgid "Add &lt;noscript&gt;"
526
+ msgstr "Προσθήκη του &lt;noscript&gt;"
527
+
528
+ #: classes/WP_Piwik/Admin/Settings.php:226
529
+ msgid "Adds the &lt;noscript&gt; code to your footer."
530
+ msgstr "Προσθέτει τον κώδικα &lt;noscript&gt; στο υποσέλιδο."
531
+
532
+ #: classes/WP_Piwik/Admin/Settings.php:226
533
+ #: classes/WP_Piwik/Admin/Settings.php:228
534
+ msgid "Disabled in proxy mode."
535
+ msgstr "Απενεργοποιημένο σε κατάσταση διαμεσολαβητή."
536
+
537
+ #: classes/WP_Piwik/Admin/Settings.php:228
538
+ msgid "Add rec parameter to noscript code"
539
+ msgstr "Προσθήκη παραμέτρου rec στον κώδικα noscript"
540
+
541
+ #: classes/WP_Piwik/Admin/Settings.php:228
542
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
543
+ msgstr "Να ενεργοποιηθεί η παρακολούθηση για επισκέπτες χωρίς JavaScript (δεν προτείνεται)."
544
+
545
+ #: classes/WP_Piwik/Admin/Settings.php:230
546
+ msgid "Enable content tracking"
547
+ msgstr "Ενεργοποίηση παρακολούθησης περιεχομένου"
548
+
549
+ #: classes/WP_Piwik/Admin/Settings.php:232
550
+ msgid "Track all content blocks"
551
+ msgstr "Να παρακολουθούνται όλα τα μπλοκ περιεχομένου"
552
+
553
+ #: classes/WP_Piwik/Admin/Settings.php:233
554
+ msgid "Track only visible content blocks"
555
+ msgstr "Να παρακολουθούνται μόνο τα ορατά μπλοκ"
556
+
557
+ #: classes/WP_Piwik/Admin/Settings.php:234
558
+ msgid ""
559
+ "Content tracking allows you to track interaction with the content of a web "
560
+ "page or application."
561
+ msgstr "Η παρακολούθηση περιεχομένου σας επιτρέπει να παρακολουθείτε την αλληλεπίδραση με το περιεχόμενο μιας ιστοσελίδας ή εφαρμογής."
562
+
563
+ #: classes/WP_Piwik/Admin/Settings.php:234
564
+ #: classes/WP_Piwik/Admin/Settings.php:236
565
+ #: classes/WP_Piwik/Admin/Settings.php:245
566
+ #: classes/WP_Piwik/Admin/Settings.php:247
567
+ #: classes/WP_Piwik/Admin/Settings.php:249
568
+ #: classes/WP_Piwik/Admin/Settings.php:270
569
+ #: classes/WP_Piwik/Admin/Settings.php:272
570
+ #: classes/WP_Piwik/Admin/Settings.php:278
571
+ #: classes/WP_Piwik/Admin/Settings.php:343
572
+ #, php-format
573
+ msgid "See %sPiwik documentation%s."
574
+ msgstr "Δείτε την %sτεκμηρίωση του Piwik%s."
575
+
576
+ #: classes/WP_Piwik/Admin/Settings.php:236
577
+ msgid "Track search"
578
+ msgstr "Παρακολούθηση της αναζήτησης"
579
+
580
+ #: classes/WP_Piwik/Admin/Settings.php:236
581
+ msgid "Use Piwik's advanced Site Search Analytics feature."
582
+ msgstr "Να γίνεται χρήση του χαρακτηριστικού των προχωρημένων Αναλυτικών Αναζήτησης Ιστοτόπου."
583
+
584
+ #: classes/WP_Piwik/Admin/Settings.php:238
585
+ msgid "Track 404"
586
+ msgstr "Παρακολούθηση 404"
587
+
588
+ #: classes/WP_Piwik/Admin/Settings.php:238
589
+ msgid ""
590
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
591
+ msgstr "Το WP-Piwik μπορεί να προσθέτει αυτόματα μια 404-κατηγορία για να παρακολουθούνται οι επισκέψεις 404."
592
+
593
+ #: classes/WP_Piwik/Admin/Settings.php:241
594
+ msgid "Add annotation on new post of type"
595
+ msgstr ""
596
+
597
+ #: classes/WP_Piwik/Admin/Settings.php:247
598
+ msgid "Show custom variables box"
599
+ msgstr "Εμφάνιση του κουτιού προσαρμοσμένων μεταβλητών"
600
+
601
+ #: classes/WP_Piwik/Admin/Settings.php:247
602
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
603
+ msgstr "Να εμφανίζεται ένα κουτί επεξεργασίας &quot;προσαρμοσμένων μεταβλητών&quot; στη σελίδα επεξεργασίας της καταχώρησης."
604
+
605
+ #: classes/WP_Piwik/Admin/Settings.php:249
606
+ msgid "Add new file types for download tracking"
607
+ msgstr "Προσθήκη νέων τύπων αρχείων για την παρακολούθηση των κατεβασμάτων"
608
+
609
+ #: classes/WP_Piwik/Admin/Settings.php:249
610
+ msgid ""
611
+ "Add file extensions for download tracking, divided by a vertical bar "
612
+ "(&#124;)."
613
+ msgstr "Προσθήκη επεκτάσεων αρχείων για την παρακολούθηση των κατεβασμάτων, χωρισμένα με τον χαρακτήρας της κάθετης μπάρας (&#124;)."
614
+
615
+ #: classes/WP_Piwik/Admin/Settings.php:251
616
+ msgid "Disable cookies"
617
+ msgstr "Απενεργοποίηση των cookies"
618
+
619
+ #: classes/WP_Piwik/Admin/Settings.php:251
620
+ msgid "Disable all tracking cookies for a visitor."
621
+ msgstr "Απενεργοποίηση όλων των cookies παρακολούθησης για ένα επισκέπτη."
622
+
623
+ #: classes/WP_Piwik/Admin/Settings.php:253
624
+ msgid "Limit cookie lifetime"
625
+ msgstr "Περιορισμός του χρόνου ζωής των cookies"
626
+
627
+ #: classes/WP_Piwik/Admin/Settings.php:253
628
+ msgid ""
629
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
630
+ " period as necessary."
631
+ msgstr "Μπορείτε να περιορίσετε το χρονικό όριο ισχύος των cookies για να μην παρακολουθείτετους χρήστες σας για ένα συγκεκριμένο χρονικό διάστημα όπως απαιτείται."
632
+
633
+ #: classes/WP_Piwik/Admin/Settings.php:255
634
+ msgid "Visitor timeout (seconds)"
635
+ msgstr "Χρόνος λήξης επισκεπτών (δευτερόλεπτα)"
636
+
637
+ #: classes/WP_Piwik/Admin/Settings.php:257
638
+ msgid "Session timeout (seconds)"
639
+ msgstr "Χρόνος λήξης συνόδου (δευτερόλεπτα)"
640
+
641
+ #: classes/WP_Piwik/Admin/Settings.php:259
642
+ msgid "Referral timeout (seconds)"
643
+ msgstr "Χρονικό όριο αναφορέα (δευτερόλεπτα)"
644
+
645
+ #: classes/WP_Piwik/Admin/Settings.php:261
646
+ msgid "Track admin pages"
647
+ msgstr "Παρακολούθηση των σελίδων διαχείρισης"
648
+
649
+ #: classes/WP_Piwik/Admin/Settings.php:261
650
+ msgid ""
651
+ "Enable to track users on admin pages (remember to configure the tracking "
652
+ "filter appropriately)."
653
+ msgstr "Ενεργοποιήστε για να παρακολουθείτε τους χρήστες στις σελίδες διαχείρισης (θυμηθείτε να ρυθμίσετε ανάλογα το φίλτρο παρακολούθησης)."
654
+
655
+ #: classes/WP_Piwik/Admin/Settings.php:264
656
+ msgid "Tracking filter"
657
+ msgstr "Φίλτρο Παρακολούθησης"
658
+
659
+ #: classes/WP_Piwik/Admin/Settings.php:268
660
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
661
+ msgstr "Επιλέξτε το ρόλο χρήστη, τον οποίο <strong>δε</strong> θέλετε να παρακολουθήσετε."
662
+
663
+ #: classes/WP_Piwik/Admin/Settings.php:270
664
+ msgid "Track subdomains in the same website"
665
+ msgstr "Να παρακολουθούνται τα υπο-ονόματα χώρου στον ίδιο ιστοτόπο"
666
+
667
+ #: classes/WP_Piwik/Admin/Settings.php:270
668
+ msgid "Adds *.-prefix to cookie domain."
669
+ msgstr "Προσθέτει την κατάληξη *.-prefix στα cookies ονομάτων χώρου."
670
+
671
+ #: classes/WP_Piwik/Admin/Settings.php:272
672
+ msgid "Do not count subdomains as outlink"
673
+ msgstr "Να μην μετρώνται τα υπο-ονόματα χώρου ως εξωτερικοί σύνδεσμοι"
674
+
675
+ #: classes/WP_Piwik/Admin/Settings.php:272
676
+ msgid "Adds *.-prefix to tracked domain."
677
+ msgstr "Προσθέτει το πρόθεμα *.-prefix στον ιστοτόπο που παρακολουθείται."
678
+
679
+ #: classes/WP_Piwik/Admin/Settings.php:274
680
+ msgid "Enable cross domain linking"
681
+ msgstr ""
682
+
683
+ #: classes/WP_Piwik/Admin/Settings.php:274
684
+ msgid ""
685
+ "When enabled, it will make sure to use the same visitor ID for the same "
686
+ "visitor across several domains. This works only when this feature is enabled"
687
+ " because the visitor ID is stored in a cookie and cannot be read on the "
688
+ "other domain by default. When this feature is enabled, it will append a URL "
689
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
690
+ "URL that belongs to one of your domains. For this feature to work, you also "
691
+ "have to configure which domains should be treated as local in your Piwik "
692
+ "website settings. This feature requires Piwik 3.0.2."
693
+ msgstr ""
694
+
695
+ #: classes/WP_Piwik/Admin/Settings.php:276
696
+ msgid "Track RSS feeds"
697
+ msgstr "Παρακολούθηση των δεδομένων ροών RSS"
698
+
699
+ #: classes/WP_Piwik/Admin/Settings.php:276
700
+ msgid "Enable to track posts in feeds via tracking pixel."
701
+ msgstr "Ενεργοποίηση της παρακολούθησης των καταχωρήσεων στις ροές μέσω ενός pixel παρακολούθησης."
702
+
703
+ #: classes/WP_Piwik/Admin/Settings.php:278
704
+ msgid "Track RSS feed links as campaign"
705
+ msgstr "Παρακολούθηση των συνδέσμων ροών RSS ως καμπάνια"
706
+
707
+ #: classes/WP_Piwik/Admin/Settings.php:278
708
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
709
+ msgstr ""
710
+
711
+ #: classes/WP_Piwik/Admin/Settings.php:280
712
+ msgid "RSS feed campaign"
713
+ msgstr "Καμπάνια ροών RSS"
714
+
715
+ #: classes/WP_Piwik/Admin/Settings.php:280
716
+ msgid "Keyword: post name."
717
+ msgstr "Λέξη κλειδί: όνομα καταχώρησης."
718
+
719
+ #: classes/WP_Piwik/Admin/Settings.php:282
720
+ msgid "Enable heartbeat timer"
721
+ msgstr "Εμφάνιση χρονομετρητή παλμού"
722
+
723
+ #: classes/WP_Piwik/Admin/Settings.php:282
724
+ msgid ""
725
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
726
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
727
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
728
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
729
+ "HTTP requests on your site."
730
+ msgstr "Ενεργοποίηση ενός μετρητή παλμού για την λήψη ακριβέστερων μετρήσεων επισκέψεων με την αποστολή περιοδικών αιτήσεων HTTP ping όσο ο ιστοτόπος είναι σε λειτουργία. Εισάγετε το χρόνο μεταξύ των ping σε δευτερόλεπτα (προκαθορισμένο για το Piwik: 15 δευτερόλεπτα) για να το ενεργοποιήσετε ή 0 για απενεργοποίηση του χαρακτηριστικού αυτού. <strong>Σημείωση:</strong> Το χαρακτηριστικό αυτό θα προκαλεί αρκετές πρόσθετες αιτήσεις HTTP στον ιστοτόπο σας."
731
+
732
+ #: classes/WP_Piwik/Admin/Settings.php:284
733
+ msgid "User ID Tracking"
734
+ msgstr "Αναγνωριστικό ανίχνευσης χρήστη"
735
+
736
+ #: classes/WP_Piwik/Admin/Settings.php:286
737
+ msgid "WP User ID"
738
+ msgstr "Αναγνωριστικό χρήστη WP"
739
+
740
+ #: classes/WP_Piwik/Admin/Settings.php:287
741
+ msgid "Email Address"
742
+ msgstr "Διεύθυνση ηλ. ταχυδρομείου"
743
+
744
+ #: classes/WP_Piwik/Admin/Settings.php:288
745
+ msgid "Username"
746
+ msgstr "Όνομα χρήστη"
747
+
748
+ #: classes/WP_Piwik/Admin/Settings.php:289
749
+ msgid "Display Name (Not Recommended!)"
750
+ msgstr "Εμφανιζόμενο όνομα (δεν προτείνεται!)"
751
+
752
+ #: classes/WP_Piwik/Admin/Settings.php:290
753
+ msgid ""
754
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
755
+ "can select which field from the User's profile is tracked as the &quot;User "
756
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
757
+ msgstr "Όταν ένας χρήστης κάνει είσοδο στο WordPress, παρακολουθήστε το &quot;Αναγνωριστικό Χρήστη&quot; του. Μπορείτε να επιλέξετε ποιο πεδίο από το προφίλ χρήστη θα χρησιμοποιείται ως το &quot;Αναγνωριστικό χρήστη&quot;. Όταν είναι ενεργό, προτείνεται η παρακολούθηση βάσει της διεύθυνσης ηλ. ταχυδρομείου."
758
+
759
+ #: classes/WP_Piwik/Admin/Settings.php:295
760
+ msgid ""
761
+ "Usually, you do not need to change these settings. If you want to do so, you"
762
+ " should know what you do or you got an expert's advice."
763
+ msgstr "Συνήθως, δε χρειάζεται να αλλάξετε αυτές τις ρυθμίσεις. Αν επιθυμείτε να το κάνετε, θα πρέπει να γνωρίζετε τι κάνετε ή να πάρετε τη γνώμη ενός ειδικού."
764
+
765
+ #: classes/WP_Piwik/Admin/Settings.php:297
766
+ msgid "Enable cache"
767
+ msgstr "Ενεργοποίηση λανθάνουσας μνήμης"
768
+
769
+ #: classes/WP_Piwik/Admin/Settings.php:297
770
+ msgid "Cache API calls, which not contain today's values, for a week."
771
+ msgstr "Οι κλήσεις API, που δεν περιέχουν τις σημερινές τιμές, να μπαίνουν στη λανθάνουσα μνήμη για μια εβδομάδα."
772
+
773
+ #: classes/WP_Piwik/Admin/Settings.php:300
774
+ msgid "HTTP connection via"
775
+ msgstr "Σύνδεση HTTP μέσω"
776
+
777
+ #: classes/WP_Piwik/Admin/Settings.php:301
778
+ #: classes/WP_Piwik/Admin/Settings.php:590
779
+ msgid "cURL"
780
+ msgstr "cURL"
781
+
782
+ #: classes/WP_Piwik/Admin/Settings.php:302
783
+ #: classes/WP_Piwik/Admin/Settings.php:590
784
+ msgid "fopen"
785
+ msgstr "fopen"
786
+
787
+ #: classes/WP_Piwik/Admin/Settings.php:303
788
+ msgid ""
789
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
790
+ " or Cloud mode."
791
+ msgstr ""
792
+
793
+ #: classes/WP_Piwik/Admin/Settings.php:305
794
+ msgid "HTTP method"
795
+ msgstr "Μέθοδος HTTP"
796
+
797
+ #: classes/WP_Piwik/Admin/Settings.php:306
798
+ #: classes/WP_Piwik/Admin/Settings.php:590
799
+ msgid "POST"
800
+ msgstr "POST"
801
+
802
+ #: classes/WP_Piwik/Admin/Settings.php:307
803
+ #: classes/WP_Piwik/Admin/Settings.php:590
804
+ msgid "GET"
805
+ msgstr "GET"
806
+
807
+ #: classes/WP_Piwik/Admin/Settings.php:308
808
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
809
+ msgstr ""
810
+
811
+ #: classes/WP_Piwik/Admin/Settings.php:310
812
+ msgid "Disable time limit"
813
+ msgstr "Απενεργοποίηση χρονικού ορίου"
814
+
815
+ #: classes/WP_Piwik/Admin/Settings.php:310
816
+ msgid "Use set_time_limit(0) if stats page causes a time out."
817
+ msgstr "Χρήση της set_time_limit(0) αν η σελίδα στατιστικών προκαλέσει υπέρβαση χρονικού ορίου."
818
+
819
+ #: classes/WP_Piwik/Admin/Settings.php:312
820
+ msgid "Connection timeout"
821
+ msgstr "Χρονικό όριο"
822
+
823
+ #: classes/WP_Piwik/Admin/Settings.php:314
824
+ msgid "Disable SSL peer verification"
825
+ msgstr "Απενεργοποίηση της ομότιμης επαλήθευσης SSL"
826
+
827
+ #: classes/WP_Piwik/Admin/Settings.php:314
828
+ #: classes/WP_Piwik/Admin/Settings.php:315
829
+ msgid "not recommended"
830
+ msgstr "δε συνίσταται"
831
+
832
+ #: classes/WP_Piwik/Admin/Settings.php:315
833
+ msgid "Disable SSL host verification"
834
+ msgstr "Απενεργοποίηση της επαλήθευσης του διακομιστή SSL"
835
+
836
+ #: classes/WP_Piwik/Admin/Settings.php:317
837
+ msgid "User agent"
838
+ msgstr "Πρόγραμμα πελάτης"
839
+
840
+ #: classes/WP_Piwik/Admin/Settings.php:318
841
+ msgid "Use the PHP default user agent"
842
+ msgstr "Χρήση του προκαθορισμένου πράκτορα χρήστη της PHP"
843
+
844
+ #: classes/WP_Piwik/Admin/Settings.php:318
845
+ msgid "empty"
846
+ msgstr "κενό"
847
+
848
+ #: classes/WP_Piwik/Admin/Settings.php:319
849
+ msgid "Define a specific user agent"
850
+ msgstr "Ορισμός συγκεκριμένου πράκτορα χρήστη"
851
+
852
+ #: classes/WP_Piwik/Admin/Settings.php:321
853
+ msgid "Specific user agent"
854
+ msgstr "Συγκεκριμένος πράκτορας χρήστη"
855
+
856
+ #: classes/WP_Piwik/Admin/Settings.php:323
857
+ msgid "Enable DNS prefetch"
858
+ msgstr ""
859
+
860
+ #: classes/WP_Piwik/Admin/Settings.php:323
861
+ #, php-format
862
+ msgid "See %sPiwik Blog%s."
863
+ msgstr ""
864
+
865
+ #: classes/WP_Piwik/Admin/Settings.php:323
866
+ msgid "Add a DNS prefetch tag. "
867
+ msgstr ""
868
+
869
+ #: classes/WP_Piwik/Admin/Settings.php:325
870
+ msgid "Add data-cfasync=false"
871
+ msgstr "Προσθήκη του data-cfasync=false"
872
+
873
+ #: classes/WP_Piwik/Admin/Settings.php:325
874
+ #, php-format
875
+ msgid "See %sCloudFlare Knowledge Base%s."
876
+ msgstr ""
877
+
878
+ #: classes/WP_Piwik/Admin/Settings.php:325
879
+ msgid ""
880
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
881
+ "ignore the script. "
882
+ msgstr ""
883
+
884
+ #: classes/WP_Piwik/Admin/Settings.php:327
885
+ msgid "CDN URL"
886
+ msgstr "Διεύθυνση URL του CDN"
887
+
888
+ #: classes/WP_Piwik/Admin/Settings.php:329
889
+ msgid "CDN URL (SSL)"
890
+ msgstr "Διεύθυνση URL του CDN (SSL)"
891
+
892
+ #: classes/WP_Piwik/Admin/Settings.php:331
893
+ msgid "Force Piwik to use a specific protocol"
894
+ msgstr "Να χρησιμοποιεί το Piwik συγκεκριμένο πρωτόκολλο"
895
+
896
+ #: classes/WP_Piwik/Admin/Settings.php:332
897
+ msgid "Disabled (default)"
898
+ msgstr "Απενεργοποιημένο (εξ' ορισμού)"
899
+
900
+ #: classes/WP_Piwik/Admin/Settings.php:333
901
+ msgid "http"
902
+ msgstr "http"
903
+
904
+ #: classes/WP_Piwik/Admin/Settings.php:334
905
+ msgid "https (SSL)"
906
+ msgstr "https (SSL)"
907
+
908
+ #: classes/WP_Piwik/Admin/Settings.php:335
909
+ msgid ""
910
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
911
+ "work with a CDN URL."
912
+ msgstr "Επιλέξτε αν θέλετε να υποχρεώσετε το Piwik να χρησιμοποιεί HTTP ή HTTPS. Δεν δουλεύει με διεύθυνση URL για CDN."
913
+
914
+ #: classes/WP_Piwik/Admin/Settings.php:337
915
+ msgid "Update notice"
916
+ msgstr "Σημείωση αναβάθμισης"
917
+
918
+ #: classes/WP_Piwik/Admin/Settings.php:338
919
+ msgid "Show always if WP-Piwik is updated"
920
+ msgstr "Εμφάνιση πάντα αν το WP-Piwik ενημερώνεται"
921
+
922
+ #: classes/WP_Piwik/Admin/Settings.php:339
923
+ msgid "Show only if WP-Piwik is updated and settings were changed"
924
+ msgstr "Εμφάνιση μόνο αν το WP-Piwik ενημερώνεται και οι ρυθμίσεις του έχουν αλλάξει"
925
+
926
+ #: classes/WP_Piwik/Admin/Settings.php:341
927
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
928
+ msgstr "Επιλέξτε αν επιθυμείτε να λαμβάνετε ενημέρωση για το αν το WP-Piwik ενημερώνεται."
929
+
930
+ #: classes/WP_Piwik/Admin/Settings.php:343
931
+ msgid "Define all file types for download tracking"
932
+ msgstr "Ορίστε όλους τους τύπους αρχείων για την παρακολούθηση των μεταφορτώσεων"
933
+
934
+ #: classes/WP_Piwik/Admin/Settings.php:343
935
+ msgid ""
936
+ "Replace Piwik's default file extensions for download tracking, divided by a "
937
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
938
+ msgstr "Αντικαταστήστε τους προκαθορισμένους τύπους αρχείων για την παρακολούθηση μεταφορτώσεων, χωρισμένους με μια κάθετη μπάρα (&#124;). Αφήστε το κενό για να κρατηθούν οι προκαθορισμένες ρυθμίσεις του Piwik."
939
+
940
+ #: classes/WP_Piwik/Admin/Settings.php:345
941
+ msgid "Set classes to be treated as downloads"
942
+ msgstr ""
943
+
944
+ #: classes/WP_Piwik/Admin/Settings.php:345
945
+ msgid ""
946
+ "Set classes to be treated as downloads (in addition to piwik_download), "
947
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
948
+ "settings."
949
+ msgstr ""
950
+
951
+ #: classes/WP_Piwik/Admin/Settings.php:345
952
+ #: classes/WP_Piwik/Admin/Settings.php:347
953
+ #, php-format
954
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
955
+ msgstr ""
956
+
957
+ #: classes/WP_Piwik/Admin/Settings.php:347
958
+ msgid "Set classes to be treated as outlinks"
959
+ msgstr ""
960
+
961
+ #: classes/WP_Piwik/Admin/Settings.php:347
962
+ msgid ""
963
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
964
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
965
+ msgstr ""
966
+
967
+ #: classes/WP_Piwik/Admin/Settings.php:508
968
+ msgid "Donate"
969
+ msgstr "Δωρήστε"
970
+
971
+ #: classes/WP_Piwik/Admin/Settings.php:511
972
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
973
+ msgstr "Αν σας αρέσει το WP-Piwik, μπορείτε να στηρίξετε την ανάπτυξή του με μια δωρεά:"
974
+
975
+ #: classes/WP_Piwik/Admin/Settings.php:530
976
+ msgid "My Amazon.de wishlist"
977
+ msgstr "Η λίστα επιθυμίας μου στο Amazon.de"
978
+
979
+ #: classes/WP_Piwik/Admin/Settings.php:533
980
+ #: classes/WP_Piwik/Admin/Settings.php:575
981
+ msgid "Please don't forget to vote the compatibility at the"
982
+ msgstr "Παρακαλούμε μην ξεχάσετε να ψηφίσετε για την συμβατότητα στο"
983
+
984
+ #: classes/WP_Piwik/Admin/Settings.php:561
985
+ msgid "Thank you very much for your donation"
986
+ msgstr "Ευχαριστώ για τις δωρεές"
987
+
988
+ #: classes/WP_Piwik/Admin/Settings.php:561
989
+ msgid "the Piwik team itself"
990
+ msgstr "η ομάδα του Piwik"
991
+
992
+ #: classes/WP_Piwik/Admin/Settings.php:561
993
+ msgid ", and all people flattering this"
994
+ msgstr " και όλοι οι άνθρωποι που το επαινούν"
995
+
996
+ #: classes/WP_Piwik/Admin/Settings.php:562
997
+ msgid ""
998
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
999
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
1000
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1001
+ "Sparklines</a> (License: New BSD License)."
1002
+ msgstr ""
1003
+
1004
+ #: classes/WP_Piwik/Admin/Settings.php:563
1005
+ msgid "Thank you very much"
1006
+ msgstr "Ευχαριστώ πολύ"
1007
+
1008
+ #: classes/WP_Piwik/Admin/Settings.php:563
1009
+ msgid "for your translation work"
1010
+ msgstr "για τη μετάφραση"
1011
+
1012
+ #: classes/WP_Piwik/Admin/Settings.php:564
1013
+ msgid ""
1014
+ "Thank you very much, all users who send me mails containing criticism, "
1015
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1016
+ " much better."
1017
+ msgstr "Σας ευχαριστώ πολύ, όλους τους χρήστες που μου στείλατε μηνύματα που περιέχουν κριτική, επιδοκιμασία, αιτήματα για νέες λειτουργίες και αναφορές σφαλμάτων! Βοηθάτε να γίνει το WP-piwik πολύ καλύτερο."
1018
+
1019
+ #: classes/WP_Piwik/Admin/Settings.php:565
1020
+ msgid ""
1021
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1022
+ "if my piece of code is really used!"
1023
+ msgstr "<strong>Σας ευχαριστώ</ strong> για τη χρήση του plugin μου. Είναι ο καλύτερος έπαινος, αν ο κώδικάς μου χρησιμοποιείται πραγματικά!"
1024
+
1025
+ #: classes/WP_Piwik/Admin/Settings.php:574
1026
+ msgid "The best place to get help:"
1027
+ msgstr "Το καλύτερο μέρος για βοήθεια:"
1028
+
1029
+ #: classes/WP_Piwik/Admin/Settings.php:574
1030
+ msgid "WP-Piwik support forum"
1031
+ msgstr "Φόρουμ υποστήριξης για το WP-Piwik"
1032
+
1033
+ #: classes/WP_Piwik/Admin/Settings.php:577
1034
+ msgid "Debugging"
1035
+ msgstr "Αποσφαλμάτωση"
1036
+
1037
+ #: classes/WP_Piwik/Admin/Settings.php:578
1038
+ msgid ""
1039
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1040
+ "available:"
1041
+ msgstr "Είτε το allow_url_fopen πρέπει να είναι ενεργοποιημένο <em>είτε</em> το cURL να είναι διαθέσιμο:"
1042
+
1043
+ #: classes/WP_Piwik/Admin/Settings.php:581
1044
+ msgid "cURL is"
1045
+ msgstr "Το cURL είναι"
1046
+
1047
+ #: classes/WP_Piwik/Admin/Settings.php:582
1048
+ #: classes/WP_Piwik/Admin/Settings.php:587
1049
+ msgid "not"
1050
+ msgstr "μη"
1051
+
1052
+ #: classes/WP_Piwik/Admin/Settings.php:583
1053
+ msgid "available"
1054
+ msgstr "διαθέσιμο"
1055
+
1056
+ #: classes/WP_Piwik/Admin/Settings.php:586
1057
+ msgid "allow_url_fopen is"
1058
+ msgstr "Το allow_url_fopen είναι"
1059
+
1060
+ #: classes/WP_Piwik/Admin/Settings.php:588
1061
+ msgid "enabled"
1062
+ msgstr "ενεργοποιημένο"
1063
+
1064
+ #: classes/WP_Piwik/Admin/Settings.php:590
1065
+ msgid "is used."
1066
+ msgstr "χρησιμοποιείται."
1067
+
1068
+ #: classes/WP_Piwik/Admin/Settings.php:592
1069
+ msgid "Determined Piwik base URL is"
1070
+ msgstr "Η βασική διεύθυνση URL για το Piwik καθορίστηκε σε"
1071
+
1072
+ #: classes/WP_Piwik/Admin/Settings.php:596
1073
+ msgid "Tools"
1074
+ msgstr "Εργαλεία"
1075
+
1076
+ #: classes/WP_Piwik/Admin/Settings.php:598
1077
+ msgid "Run testscript"
1078
+ msgstr "Εκτέλεση του σεναρίου δοκιμής"
1079
+
1080
+ #: classes/WP_Piwik/Admin/Settings.php:599
1081
+ msgid "Sitebrowser"
1082
+ msgstr "Περιηγητής ιστοτόπου"
1083
+
1084
+ #: classes/WP_Piwik/Admin/Settings.php:600
1085
+ msgid "Clear cache"
1086
+ msgstr "Καθαρισμός της λανθάνουσας μνήμης"
1087
+
1088
+ #: classes/WP_Piwik/Admin/Settings.php:601
1089
+ msgid "Are you sure you want to clear all settings?"
1090
+ msgstr "Είστε σίγουροι για τον καθαρισμό όλων των ρυθμίσεων;"
1091
+
1092
+ #: classes/WP_Piwik/Admin/Settings.php:601
1093
+ msgid "Reset WP-Piwik"
1094
+ msgstr "Αρχικοποίηση του WP-Piwik"
1095
+
1096
+ #: classes/WP_Piwik/Admin/Settings.php:603
1097
+ msgid "Latest support threads on WordPress.org"
1098
+ msgstr "Τα τελευταία θέματα για υποστήριξη στο WordPress.org"
1099
+
1100
+ #: classes/WP_Piwik/Admin/Settings.php:654
1101
+ msgid "Settings cleared (except connection settings)."
1102
+ msgstr "Οι ρυθμίσεις καθαρίστηκαν (εκτός από τις ρυθμίσεις σύνδεσης)."
1103
+
1104
+ #: classes/WP_Piwik/Admin/Settings.php:670
1105
+ msgid "Cache cleared."
1106
+ msgstr "Η λανθάνουσα μνήμη διαγράφηκε."
1107
+
1108
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1109
+ msgid "site"
1110
+ msgstr "ιστοτόπος"
1111
+
1112
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1113
+ msgid "sites"
1114
+ msgstr "ιστοτόποι"
1115
+
1116
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1117
+ msgid "No site configured yet."
1118
+ msgstr "Δεν έχει παραμετροποιηθεί ακόμη ιστοτόπος."
1119
+
1120
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1121
+ msgid "Blog ID"
1122
+ msgstr "Αναγνωριστικό ιστολογήματος"
1123
+
1124
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1125
+ msgid "Title"
1126
+ msgstr "Τίτλος"
1127
+
1128
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1129
+ msgid "URL"
1130
+ msgstr "Διεύθυνση URL"
1131
+
1132
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1133
+ msgid "Site ID (Piwik)"
1134
+ msgstr "Αναγνωριστικό ιστοτόπου (Piwik)"
1135
+
1136
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1137
+ msgid "Site not created yet."
1138
+ msgstr "Ο ιστοτόπος δεν έχει ακόμη δημιουργηθεί."
1139
+
1140
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1141
+ msgid "Statistics"
1142
+ msgstr "Στατιστικά"
1143
+
1144
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1145
+ msgid "Currently shown stats:"
1146
+ msgstr "Τρέχουσα προβολή στατιστικών:"
1147
+
1148
+ #: classes/WP_Piwik/Request/Php.php:27
1149
+ msgid "Could not resolve"
1150
+ msgstr "Δεν ήταν δυνατή η επίλυση"
1151
+
1152
+ #: classes/WP_Piwik/Request/Php.php:27
1153
+ msgid "realpath() returns false"
1154
+ msgstr "Το realpath() επιστρέφει ψευδές"
1155
+
1156
+ #: classes/WP_Piwik/Request/Php.php:39
1157
+ msgid "Class Piwik\\FrontController does not exists."
1158
+ msgstr "Δεν υπάρχει η κλάση Piwik\\FrontController."
1159
+
1160
+ #: classes/WP_Piwik/Request/Php.php:42
1161
+ msgid "Class Piwik\\API\\Request does not exists."
1162
+ msgstr "Δεν υπάρχει η κλάση Piwik\\API\\Request."
1163
+
1164
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1165
+ msgid "Piwik Custom Variables"
1166
+ msgstr "Προσαρμοσμένες Μεταβλητές του Piwik"
1167
+
1168
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1169
+ msgid "Name"
1170
+ msgstr "Όνομα"
1171
+
1172
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1173
+ msgid "Value"
1174
+ msgstr "Τιμή"
1175
+
1176
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1177
+ msgid "Set custom variables for a page view"
1178
+ msgstr "Ορισμός προσαρμοσμένων μεταβλητών για εμφάνιση σελίδας"
1179
+
1180
+ #: classes/WP_Piwik/Widget.php:91
1181
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1182
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1183
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1184
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1185
+ #: classes/WP_Piwik/Widget/Items.php:23
1186
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1187
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1188
+ #: classes/WP_Piwik/Widget/Overview.php:24
1189
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1190
+ #: classes/WP_Piwik/Widget/Screens.php:35
1191
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1192
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1193
+ #: classes/WP_Piwik/Widget/Systems.php:33
1194
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1195
+ msgid "Piwik error"
1196
+ msgstr "Σφάλμα του Piwik"
1197
+
1198
+ #: classes/WP_Piwik/Widget.php:100
1199
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1200
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1201
+ #: classes/WP_Piwik/Widget/Country.php:39
1202
+ #: classes/WP_Piwik/Widget/Screens.php:37
1203
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1204
+ #: classes/WP_Piwik/Widget/Systems.php:35
1205
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1206
+ msgid "Unique"
1207
+ msgstr "Μοναδικοί"
1208
+
1209
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1210
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1211
+ msgid "Visits"
1212
+ msgstr "Επισκέψεις"
1213
+
1214
+ #: classes/WP_Piwik/Widget.php:104
1215
+ msgid "Hits"
1216
+ msgstr "Επισκέψεις"
1217
+
1218
+ #: classes/WP_Piwik/Widget.php:106
1219
+ msgid "Actions"
1220
+ msgstr "Ενέργειες"
1221
+
1222
+ #: classes/WP_Piwik/Widget.php:162
1223
+ msgid "No data available."
1224
+ msgstr "Δεν υπάρχουν διαθέσιμα στοιχεία."
1225
+
1226
+ #: classes/WP_Piwik/Widget.php:243
1227
+ msgid "today"
1228
+ msgstr "σήμερα"
1229
+
1230
+ #: classes/WP_Piwik/Widget.php:248
1231
+ msgid "current month"
1232
+ msgstr "τρέχων μήνας"
1233
+
1234
+ #: classes/WP_Piwik/Widget.php:253
1235
+ msgid "last month"
1236
+ msgstr "προηγούμενος μήνας"
1237
+
1238
+ #: classes/WP_Piwik/Widget.php:258
1239
+ msgid "current week"
1240
+ msgstr "τρέχουσα εβδομάδα"
1241
+
1242
+ #: classes/WP_Piwik/Widget.php:263
1243
+ msgid "last week"
1244
+ msgstr "προηγούμενη εβδομάδα"
1245
+
1246
+ #: classes/WP_Piwik/Widget.php:268
1247
+ msgid "yesterday"
1248
+ msgstr "χθες"
1249
+
1250
+ #: classes/WP_Piwik/Widget.php:293
1251
+ msgid "week"
1252
+ msgstr "εβδομάδα"
1253
+
1254
+ #: classes/WP_Piwik/Widget.php:328
1255
+ msgid "last 30 days"
1256
+ msgstr "τελευταίες 30 ημέρες"
1257
+
1258
+ #: classes/WP_Piwik/Widget.php:330
1259
+ msgid "last 12 "
1260
+ msgstr "τελευταία 12"
1261
+
1262
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1263
+ msgid "Browser Details"
1264
+ msgstr "Λεπτομέρειες προγράμματος πλοήγησης"
1265
+
1266
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1267
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1268
+ msgid "Browser"
1269
+ msgstr "Browser"
1270
+
1271
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1272
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1273
+ #: classes/WP_Piwik/Widget/Country.php:39
1274
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1275
+ #: classes/WP_Piwik/Widget/Screens.php:37
1276
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1277
+ #: classes/WP_Piwik/Widget/Systems.php:35
1278
+ msgid "Percent"
1279
+ msgstr "Τοις εκατό"
1280
+
1281
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1282
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1283
+ #: classes/WP_Piwik/Widget/Country.php:66
1284
+ #: classes/WP_Piwik/Widget/Screens.php:64
1285
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1286
+ #: classes/WP_Piwik/Widget/Systems.php:62
1287
+ msgid "Others"
1288
+ msgstr "Άλλοι"
1289
+
1290
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1291
+ msgid "Browsers"
1292
+ msgstr "Προγράμματα πλοήγησης"
1293
+
1294
+ #: classes/WP_Piwik/Widget/Chart.php:19
1295
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1296
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1297
+ msgid "Visitors"
1298
+ msgstr "Επισκέπτες"
1299
+
1300
+ #: classes/WP_Piwik/Widget/Chart.php:71
1301
+ msgid ""
1302
+ "The graph contains the values shown in the table below (visitors / unique / "
1303
+ "bounces). The red line shows a linear trendline (unique)."
1304
+ msgstr "Το γράφημα περιέχει τις τιμές που εμφανίζονται στον πίνακα παρακάτω (επισκέπτες / μοναδικοί /αναπηδήσεις). Η κόκκινη γραμμή δείχνει μια γραμμική τάση (μοναδική)."
1305
+
1306
+ #: classes/WP_Piwik/Widget/Country.php:18
1307
+ msgid "Countries"
1308
+ msgstr "Χώρες"
1309
+
1310
+ #: classes/WP_Piwik/Widget/Country.php:39
1311
+ msgid "Country"
1312
+ msgstr "Χώρα"
1313
+
1314
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1315
+ msgid "E-Commerce"
1316
+ msgstr ""
1317
+
1318
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1319
+ msgid "Conversions"
1320
+ msgstr "Μετατροπές"
1321
+
1322
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1323
+ msgid "Visits converted"
1324
+ msgstr ""
1325
+
1326
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1327
+ #: classes/WP_Piwik/Widget/Items.php:27
1328
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1329
+ msgid "Revenue"
1330
+ msgstr "Πρόσοδος"
1331
+
1332
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1333
+ #: classes/WP_Piwik/Widget/Items.php:32
1334
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1335
+ msgid "Conversion rate"
1336
+ msgstr ""
1337
+
1338
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1339
+ msgid "Conversions (new visitor)"
1340
+ msgstr ""
1341
+
1342
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1343
+ msgid "Visits converted (new visitor)"
1344
+ msgstr ""
1345
+
1346
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1347
+ msgid "Revenue (new visitor)"
1348
+ msgstr ""
1349
+
1350
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1351
+ msgid "Conversion rate (new visitor)"
1352
+ msgstr ""
1353
+
1354
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1355
+ msgid "Conversions (returning visitor)"
1356
+ msgstr ""
1357
+
1358
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1359
+ msgid "Visits converted (returning visitor)"
1360
+ msgstr ""
1361
+
1362
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1363
+ msgid "Revenue (returning visitor)"
1364
+ msgstr ""
1365
+
1366
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1367
+ msgid "Conversion rate (returning visitor)"
1368
+ msgstr ""
1369
+
1370
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1371
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1372
+ msgid "Shortcut"
1373
+ msgstr "Συντόμευση"
1374
+
1375
+ #: classes/WP_Piwik/Widget/Items.php:11
1376
+ msgid "E-Commerce Items"
1377
+ msgstr ""
1378
+
1379
+ #: classes/WP_Piwik/Widget/Items.php:26
1380
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1381
+ msgid "Label"
1382
+ msgstr "Ετικέτα"
1383
+
1384
+ #: classes/WP_Piwik/Widget/Items.php:28
1385
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1386
+ msgid "Quantity"
1387
+ msgstr "Ποσότητα"
1388
+
1389
+ #: classes/WP_Piwik/Widget/Items.php:29
1390
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1391
+ msgid "Orders"
1392
+ msgstr "Παραγγελίες"
1393
+
1394
+ #: classes/WP_Piwik/Widget/Items.php:30
1395
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1396
+ msgid "Avg. price"
1397
+ msgstr ""
1398
+
1399
+ #: classes/WP_Piwik/Widget/Items.php:31
1400
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1401
+ msgid "Avg. quantity"
1402
+ msgstr ""
1403
+
1404
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1405
+ msgid "E-Commerce Item Categories"
1406
+ msgstr ""
1407
+
1408
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1409
+ msgid "Keywords"
1410
+ msgstr "Λέξεις κλειδιά"
1411
+
1412
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1413
+ #: classes/WP_Piwik/Widget/Search.php:16
1414
+ msgid "Site Search"
1415
+ msgstr "Αναζήτηση ιστοτόπου"
1416
+
1417
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1418
+ #: classes/WP_Piwik/Widget/Search.php:25
1419
+ msgid "Keyword"
1420
+ msgstr "Λέξη κλειδί"
1421
+
1422
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1423
+ #: classes/WP_Piwik/Widget/Search.php:25
1424
+ msgid "Requests"
1425
+ msgstr "Αιτήσεις"
1426
+
1427
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1428
+ #: classes/WP_Piwik/Widget/Search.php:25
1429
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1430
+ msgid "Bounced"
1431
+ msgstr "Εγκατέλειψαν"
1432
+
1433
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1434
+ msgid "Overview"
1435
+ msgstr "Επισκόπηση"
1436
+
1437
+ #: classes/WP_Piwik/Widget/Overview.php:17
1438
+ msgid "dashboard"
1439
+ msgstr "κεντρικός πίνακας"
1440
+
1441
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1442
+ msgid "Unique visitors"
1443
+ msgstr "Μοναδικοί επισκέπτες"
1444
+
1445
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1446
+ msgid "Page views"
1447
+ msgstr "Προβολές σελίδων"
1448
+
1449
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1450
+ msgid "Total time spent"
1451
+ msgstr "Συνολικός χρόνος"
1452
+
1453
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1454
+ msgid "Bounce count"
1455
+ msgstr "Αριθμός που εγκατέλειψαν"
1456
+
1457
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1458
+ msgid "Time/visit"
1459
+ msgstr "Χρόνος/Επίσκεψη"
1460
+
1461
+ #: classes/WP_Piwik/Widget/Overview.php:57
1462
+ msgid "Max. page views in one visit"
1463
+ msgstr "Ανώτατο όριο προβολών σελίδων σε μια επίσκεψη"
1464
+
1465
+ #: classes/WP_Piwik/Widget/Pages.php:16
1466
+ msgid "Pages"
1467
+ msgstr "Σελίδες"
1468
+
1469
+ #: classes/WP_Piwik/Widget/Pages.php:18
1470
+ msgid "Page"
1471
+ msgstr "Σελίδα"
1472
+
1473
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1474
+ msgid "Plugins"
1475
+ msgstr "Plugins"
1476
+
1477
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1478
+ msgid "Plugin"
1479
+ msgstr "Πρόσθετο"
1480
+
1481
+ #: classes/WP_Piwik/Widget/Post.php:43
1482
+ msgid "Min. generation time"
1483
+ msgstr "Ελάχιστος χρόνος δημιουργίας"
1484
+
1485
+ #: classes/WP_Piwik/Widget/Post.php:44
1486
+ msgid "Max. generation time"
1487
+ msgstr "Μέγιστος χρόνος δημιουργίας"
1488
+
1489
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1490
+ msgid "Referrers"
1491
+ msgstr "Αναφορείς"
1492
+
1493
+ #: classes/WP_Piwik/Widget/Screens.php:16
1494
+ msgid "Resolutions"
1495
+ msgstr "Αναλύσεις"
1496
+
1497
+ #: classes/WP_Piwik/Widget/Screens.php:37
1498
+ msgid "Resolution"
1499
+ msgstr "Ανάλυση"
1500
+
1501
+ #: classes/WP_Piwik/Widget/Seo.php:13
1502
+ msgid "SEO"
1503
+ msgstr "SEO"
1504
+
1505
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1506
+ msgid "Operation System Details"
1507
+ msgstr "Λεπτομέρειες Συστήματος Ενεργειών"
1508
+
1509
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1510
+ #: classes/WP_Piwik/Widget/Systems.php:35
1511
+ msgid "Operation System"
1512
+ msgstr "Σύστημα ενέργειας"
1513
+
1514
+ #: classes/WP_Piwik/Widget/Systems.php:14
1515
+ msgid "Operation Systems"
1516
+ msgstr "Συστήματα ενεργειών"
1517
+
1518
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1519
+ msgid "Date"
1520
+ msgstr "Ημερομηνία"
1521
+
1522
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1523
+ msgid "Page Views"
1524
+ msgstr "Εμφανίσεις σελίδας"
1525
+
1526
+ #: wp-piwik.php:60
1527
+ #, php-format
1528
+ msgid ""
1529
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1530
+ " Please update PHP to use WP-Piwik."
1531
+ msgstr "Το WP-Piwik απαιτεί τουλάχιστον PHP 5.3. Χρησιμοποιείτε την παρωχημένη έκδοση %s. Παρακαλώ αναβαθμίστε την PHP για να εκτελείται το WP-Piwik."
languages/wp-piwik-el_GR.mo CHANGED
File without changes
languages/wp-piwik-el_GR.po CHANGED
File without changes
languages/wp-piwik-es_ES.mo CHANGED
Binary file
languages/wp-piwik-es_ES.po CHANGED
@@ -1,485 +1,1530 @@
1
- # Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
2
- # Copyright (C) 2010 Andr&eacute; Br&auml;kling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: WP-Piwik 0.8.4\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
10
- "POT-Creation-Date: 2010-07-19 18:06+0000\n"
11
- "PO-Revision-Date: 2012-05-12 19:00+0100\n"
12
- "Last-Translator: \n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
 
17
 
18
- #: dashboard/browsers.php:12
19
- #: dashboard/browsers.php:33
20
- msgid "Browser"
21
- msgstr "Navegador"
22
 
23
- #: dashboard/browsers.php:22
24
- #: dashboard/pages.php:43
25
- #: dashboard/screens.php:22
26
- #: dashboard/systems.php:22
27
- msgid "Others"
28
- msgstr "Otros"
29
 
30
- #: dashboard/browsers.php:34
31
- #: dashboard/keywords.php:17
32
- #: dashboard/pages.php:22
33
- #: dashboard/screens.php:33
34
- #: dashboard/systems.php:35
35
- #: dashboard/visitors.php:53
36
- #: dashboard/websites.php:19
37
- #: wp-piwik.php:305
38
- msgid "Unique"
39
- msgstr "Único"
40
 
41
- #: dashboard/browsers.php:35
42
- #: dashboard/plugins.php:33
43
- #: dashboard/screens.php:34
44
- #: dashboard/systems.php:36
45
- msgid "Percent"
46
- msgstr "Porcentaje"
47
 
48
- #: dashboard/keywords.php:12
49
- msgid "Keywords"
50
- msgstr "Palabras Clave"
51
 
52
- #: dashboard/keywords.php:17
53
- msgid "Keyword"
54
- msgstr "Palabra Clave"
55
 
56
- #: dashboard/overview.php:12
57
- msgid "Overview"
58
- msgstr "Información General"
59
 
60
- #: dashboard/overview.php:42
61
- #: dashboard/visitors.php:24
62
- msgid "Visitors"
63
- msgstr "Visitantes"
64
 
65
- #: dashboard/overview.php:43
66
- msgid "Unique visitors"
67
- msgstr "Visitantes Únicos"
68
 
69
- #: dashboard/overview.php:44
70
- msgid "Page views"
71
- msgstr "Páginas vistas"
72
 
73
- #: dashboard/overview.php:45
74
- msgid "Max. page views in one visit"
75
- msgstr "Máximo de páginas vistas durante una visita"
76
 
77
- #: dashboard/overview.php:46
78
- msgid "Total time spent"
79
- msgstr "Tiempo total empleado"
80
 
81
- msgid "Time/visit"
82
- msgstr "Tiempo/Visita"
 
83
 
84
- #: dashboard/overview.php:47
85
- msgid "Bounce count"
86
- msgstr "Número de rebotes"
87
 
88
- #: dashboard/overview.php:49
89
- #: wp-piwik.php:563
90
- msgid "Shortcut"
91
- msgstr "Enlace directo"
92
 
93
- #: dashboard/pages.php:13
94
- msgid "Pages"
95
- msgstr "Páginas"
 
96
 
97
- #: dashboard/pages.php:21
98
- msgid "Page"
99
- msgstr "Página"
 
 
 
100
 
101
- #: dashboard/pages.php:23
102
- #: dashboard/plugins.php:32
103
- #: dashboard/visitors.php:52
104
- msgid "Visits"
105
- msgstr "Visitas"
 
106
 
107
- #: dashboard/plugins.php:12
108
- #: dashboard/plugins.php:31
109
- msgid "Plugins"
110
- msgstr "Plugins"
 
 
111
 
112
- #: dashboard/screens.php:12
113
- #: dashboard/screens.php:32
114
- msgid "Resolution"
115
- msgstr "Resolución"
 
 
116
 
117
- #: dashboard/systems.php:12
118
- #: dashboard/systems.php:34
119
- msgid "Operating System"
120
- msgstr "Sistema Operativo"
121
 
122
- #: dashboard/visitors.php:51
123
- msgid "Date"
124
- msgstr "Fecha"
125
 
126
- #: dashboard/visitors.php:54
127
- msgid "Bounced"
128
- msgstr "Rebotado"
129
 
130
- #: dashboard/visitors.php:67
131
- msgid "Unique TOTAL"
132
- msgstr "Únicas TOTAL"
133
 
134
- #: dashboard/visitors.php:67
135
- msgid "Sum"
136
- msgstr "Suma"
137
 
138
- #: dashboard/visitors.php:67
139
- msgid "Avg"
140
- msgstr "Media"
 
 
 
 
141
 
142
- #: dashboard/websites.php:12
143
- msgid "Websites"
144
- msgstr "Sitios Web"
145
 
146
- #: dashboard/websites.php:18
147
- msgid "Website"
148
- msgstr "Sitio Web"
149
 
150
- #: wp-piwik.php:110
151
- #: wp-piwik.php:365
152
- msgid "Piwik Statistics"
153
- msgstr "Estadísticas de Piwik"
154
 
155
- #. #-#-#-#-# plugin.pot (WP-Piwik 0.8.0) #-#-#-#-#
156
- #. Plugin Name of the plugin/theme
157
- #: wp-piwik.php:111
158
- #: wp-piwik.php:122
159
- #: wp-piwik.php:123
160
- #: wp-piwik.php:146
161
- msgid "WP-Piwik"
162
- msgstr "WP-Piwik"
163
-
164
- #: wp-piwik.php:130
165
- #: wp-piwik.php:131
166
- msgid "WPMU-Piwik"
167
- msgstr "WPMU-Piwik"
168
-
169
- #: wp-piwik.php:142
170
- #: wp-piwik.php:557
171
- msgid "yesterday"
172
- msgstr "ayer"
173
 
174
- #: wp-piwik.php:143
175
- #: wp-piwik.php:558
176
- msgid "today"
177
- msgstr "hoy"
178
 
179
- #: wp-piwik.php:144
180
- #: wp-piwik.php:559
181
- msgid "last30"
182
- msgstr "últimos 30"
183
 
184
- #: wp-piwik.php:144
185
- #: wp-piwik.php:559
186
- msgid "last 30 days"
187
- msgstr "últimos 30 días"
188
 
189
- #: wp-piwik.php:179
190
- msgid "Settings"
191
- msgstr "Ajustes"
 
 
192
 
193
- #: wp-piwik.php:381
194
- msgid "Change"
195
- msgstr "Cambiar"
 
196
 
197
- #: wp-piwik.php:382
198
- msgid "Currently shown stats:"
199
- msgstr "Estaísticas mostradas actualmente:"
 
 
 
 
 
 
 
200
 
201
- #: wp-piwik.php:383
202
- msgid "Current shown stats: <strong>Overall</strong>"
203
- msgstr "Estadísticas mostradas actualmente: <strong>todas</strong>"
 
 
204
 
205
- #: wp-piwik.php:448
206
- msgid "WP-Piwik Settings"
207
- msgstr "Ajustes de WP-Piwik"
208
 
209
- #: wp-piwik.php:455
210
- #: wp-piwik.php:617
211
- msgid "Account settings"
212
- msgstr "Ajustes de la cuenta"
213
 
214
- #: wp-piwik.php:457
215
- #: wp-piwik.php:619
216
  msgid "Piwik URL"
217
  msgstr "Dirección de Piwik"
218
 
219
- #: wp-piwik.php:461
220
- #: wp-piwik.php:623
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  msgid "Auth token"
222
  msgstr "Auth token"
223
 
224
- #: wp-piwik.php:467
225
- #: wp-piwik.php:628
226
- msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
227
- msgstr "Para habilitar las estadísticas de Piwik , por favor introduce la dirección de tu instalación de Piwik (por ejemplo http://mydomain.com/piwik) y tu Auth Token. Puedes ver tu Auth Token s desde la sección API dentro del interfaz de . Es algo similar a: &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
 
228
 
229
- #: wp-piwik.php:477
230
- msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
231
- msgstr "<strong>Nota importante :</strong> Si no albergas este blog bajo tu propio servidor, el administror es capaz de ver el auth token desde la base de datos. Por lo tanto podría acceder a tus estadísticas. No deberías utilizar nunca un auth token con más permisos que los de lectura."
 
232
 
233
- #: wp-piwik.php:485
234
- #: wp-piwik.php:489
235
- msgid "An error occured"
236
- msgstr "Ocurrió un error"
237
 
238
- #: wp-piwik.php:486
239
- msgid "Please check URL and auth token. You need at least view access to one site."
240
- msgstr "Por favor comprueba tu URL y el Auth Token. Necesitas al menos acceso de lectura a un sitio web."
 
 
241
 
242
- #: wp-piwik.php:492
243
- msgid "Choose site"
244
- msgstr "Selecciona sitio"
 
 
 
245
 
246
- #: wp-piwik.php:511
247
- #: wp-piwik.php:547
248
- #: wp-piwik.php:584
249
- #: wp-piwik.php:658
250
- msgid "Save settings"
251
- msgstr "Guardar ajustes"
252
 
253
- #: wp-piwik.php:515
254
- #: wp-piwik.php:643
255
- msgid "Tracking settings"
256
- msgstr "Ajustes de seguimiento"
257
 
258
- #: wp-piwik.php:521
259
- msgid "Add script"
260
- msgstr "Añadir Script"
261
 
262
- #: wp-piwik.php:525
263
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
264
- msgstr "Si tu plantilla utiliza wp_footer(), WP-Piwik puede añadir el código javascript de Piwik de forma automática a tu blog."
 
265
 
266
- #: wp-piwik.php:528
267
- msgid "Track 404"
268
- msgstr "Seguimiento de errores 404"
 
269
 
270
- #: wp-piwik.php:532
271
- msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
272
- msgstr "WP-Piwik puede añadir automáticamente una categoría-404 para hacer el seguimiento de los errores 404"
273
 
274
- #: wp-piwik.php:536
275
- #: wp-piwik.php:644
276
- msgid "Tracking filter"
277
- msgstr "Filtro de seguimiento"
278
 
279
- msgid "Choose users by user role you do <strong>not</strong> want to track."
280
- msgstr "Selecciona, por el rol de usuario, los usuarios sobre los cuales <strong>no</strong> quieres hacer seguimiento."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
281
 
282
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
283
- msgstr "Selecciona, por el rol de usuario, los usuarios sobre los cuales <strong>no</strong> quieres hacer seguimiento. Requiera que la funcionalidad de \"Añadir script a wp_footer()\" esté activada."
 
284
 
285
- #: wp-piwik.php:551
286
- msgid "Statistic view settings"
287
- msgstr "Ajustes de la vista de estadísticas"
288
 
289
- #: wp-piwik.php:554
290
- msgid "Dashboard"
291
- msgstr "Dashboard"
292
 
293
- #: wp-piwik.php:556
294
- msgid "No"
295
- msgstr "No"
 
 
 
 
 
 
 
 
 
 
 
 
 
296
 
297
- #: wp-piwik.php:557
298
- #: wp-piwik.php:558
299
- #: wp-piwik.php:559
300
- msgid "Yes"
301
- msgstr "Si"
302
 
303
- #: wp-piwik.php:562
304
- msgid "Display a dashboard widget to your WordPress dashboard."
305
- msgstr "Mostrar un widget de Dashboard a su panel de WordPress."
306
 
307
- #: wp-piwik.php:567
308
- msgid "Display a shortcut to Piwik itself."
309
- msgstr "Mostar un enlace directo al propio Piwik"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
 
311
- #: wp-piwik.php:568
312
- msgid "Display to"
313
- msgstr "Mostrar a"
314
 
315
- #: wp-piwik.php:579
316
  msgid "Choose user roles allowed to see the statistics page."
317
  msgstr "Selecciona los roles de usuario que pueden acceder a las estadísticas."
318
 
319
- #: wp-piwik.php:612
320
- msgid "WPMU-Piwik Settings"
321
- msgstr "Ajustos de WPMU-Piwik"
322
 
323
- #: wp-piwik.php:636
324
- msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
325
- msgstr "<strong>Note importante :</strong> Necesitas seleccionar un token que tenga accso de admistración. WPMU-Piwik creará nuevo sitios en piwik para cada blog. si es visto por primera vez y no ha sido añadido todavía. Todos los usuarios pueden acceder solamente a sus estadísticas, mientras los administradores pueden acceder a todas. Para evitar conflictos, debes utilizar una instalación nueva de Piwik, sin ningún sitio configurado. Todos los temás deberán utilizar wp_footer, puesto que es la función que se encarga de añadir el código de javascript a cada página."
326
 
327
- #: wp-piwik.php:671
328
- msgid "If you like WP-Piwik, you can support its development by a donation:"
329
- msgstr "Si te gusta WP-Piwik, puedes añadir a su desarrollo con una donación:"
330
 
331
- #: wp-piwik.php:687
332
- msgid "My Amazon.de wishlist (German)"
333
- msgstr "Mi whitlist en Amazon.de ( Alemán )"
334
 
335
- #. Plugin URI of the plugin/theme
336
- msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
337
- msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
338
 
339
- #. Description of the plugin/theme
340
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
341
- msgstr "Añade las estadísticas de Piwik al menú de tu Dashboard y el código de piwik al pie de tu Wordpress"
342
 
343
- #. Author of the plugin/theme
344
- msgid "Andr&eacute; Br&auml;kling"
345
- msgstr "Andr&eacute; Br&auml;kling"
346
 
347
- #. Author URI of the plugin/theme
348
- msgid "http://www.braekling.de"
349
- msgstr "http://www.braekling.de"
350
 
351
- msgid "Credits"
352
- msgstr "Créditos"
 
353
 
354
- msgid "Thank you very much for your donation"
355
- msgstr "Muchas gracias por vuestra donación"
 
 
 
 
356
 
357
- msgid "and all people flattering this"
358
- msgstr "y a todas las personas hablando de esto"
 
 
359
 
360
- msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
361
- msgstr "Gráficos por <a href=\"http://www.jqplot.com/\">jqPlot</a> un proyecto open source por Chris Leonello. Pruébalo! (Licencia: GPL 2.0 y MIT)"
 
362
 
363
- msgid "Thank you very much"
364
- msgstr "Muchas gracias"
 
 
365
 
366
- msgid ", and"
367
- msgstr "y"
 
 
 
368
 
369
- msgid "for your translation work"
370
- msgstr "por vuestro trabajo de traducción"
 
 
371
 
372
- msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
373
- msgstr "Muchísimas gracias a todos los usuarios que me habéis enviado emails con críticas, recomendaciones, sugerencias de mejoras y reportes de errores. Me ayudais a hacer WP-Piwik mucho mejor."
 
 
374
 
375
- msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
376
- msgstr "Gracias a <strong>ti</strong>por utilizar mi plugin. Es el mayor elogio que mi plugin sea realmente utilizado."
 
377
 
378
- msgid "Changes saved"
379
- msgstr "Cambios guardados"
 
 
 
 
380
 
381
- msgid "installed"
382
- msgstr "instalado"
 
 
383
 
384
- msgid "Next you should connect to Piwik"
385
- msgstr "A continuación, debe conectarse a Piwik"
 
 
 
 
386
 
387
- msgid "Please validate your configuration"
388
- msgstr "Por favor valida tu configuración"
 
389
 
390
- msgid "Default date"
391
- msgstr "Fecha por defecto"
 
392
 
393
- msgid "Default date shown on statistics page."
394
- msgstr "Fecha por defecto mostrada en la página de estadísticas"
 
395
 
396
- msgid "Dashboard data"
397
- msgstr "Datos del panel"
 
398
 
399
- msgid "Display an overview widget to your WordPress dashboard."
400
- msgstr "Muestra un widget de resumen en tu panel el Wordpress"
 
401
 
402
- msgid "Board chart"
403
- msgstr "Board-Chart"
 
404
 
405
- msgid "Display a visitor graph widget to your WordPress dashboard."
406
- msgstr "Mostrar un widget gráfico de usuarios en tu panel de Wordpress"
 
 
407
 
408
- msgid "No data available."
409
- msgstr "No hay datos disponibles."
 
410
 
411
- msgid "Check this to automatically choose your blog from your Piwik sites by URL. If your blog is not added to Piwik yet, WP-Piwik will add a new site."
412
- msgstr "Selecciona esto para elegir automáticamente tu blog desde el listado de sitios de Piwik por la dirección. Si tu blog no está todavía añadido en Piwik, WP-Piwik añadirá un sitio nuevo."
 
413
 
414
- msgid "If you add the Piwik javascript code by wp_footer(),"
415
- msgstr "Si añades el código de Piwik desde wp_footer(),"
 
416
 
417
- msgid "WP-Piwik can automatically use js/index.php instead of piwik.js. See"
418
- msgstr "WP-Piwik puede utilizar js/index.php en lugar de statt piwik.js de forma automática. Ver"
 
 
419
 
420
- msgid "WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
421
- msgstr "WP-Piwik puede forzar de manera automática al Código de seguimiento a enviar los datos por POST. Ver"
 
422
 
423
- msgid "Avoid mod_security"
424
- msgstr "Evitar mod_security"
 
425
 
426
- msgid "Determined site"
427
- msgstr "Sitio determinado"
 
428
 
429
- msgid "Auto config"
430
- msgstr "Auto-configuración"
 
431
 
432
- msgid "Use js/index.php"
433
- msgstr "Utilizar js/index.php"
 
434
 
435
- msgid "Show overview"
436
- msgstr "Mostrar información general"
 
 
 
437
 
438
- msgid "Hide overview"
439
- msgstr "Ocultar información general"
 
 
 
 
 
 
 
 
 
 
440
 
441
- msgid "SEO <em>(slow!)</em>"
442
- msgstr "SEO <em>(lento!)</em>"
 
443
 
444
- msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
445
- msgstr "Muestra el ranking SEO en la página de estadísticas. <em>(Lento!)</em>"
 
446
 
447
- msgid "Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
448
- msgstr "Configura los Widgets de WP-Piwik que se mostrarán en la portada de Wordpress"
 
449
 
450
- msgid "SEO data"
451
- msgstr "Información SEO"
 
 
452
 
453
- msgid "the Piwik team itself"
454
- msgstr "El equipo de Piwik"
 
455
 
456
- msgid "Metabox support inspired by"
457
- msgstr "Soporte Metabox inspirado por"
 
458
 
459
- msgid "WP-Piwik support board"
460
- msgstr "Foro de soporte de WP-Piwik"
 
461
 
462
- msgid "no registration required, English &amp; German"
463
- msgstr "Registro no requerido, Ingles y Alemán"
 
464
 
465
- msgid "WordPress.org forum about WP-Piwik"
466
- msgstr "Foros de Wordpress.com sobre WP-Piwik"
 
 
 
467
 
468
- msgid "WordPress.org registration required, English"
469
- msgstr "Registro en WordPress.org requerido, Inglés"
 
470
 
471
- msgid "Please don't forget to vote the compatibility at the"
472
- msgstr "Por favor no te olvides de votar la compatibilidad en "
 
473
 
474
- msgid "Donate"
475
- msgstr "Donar"
 
476
 
477
- msgid "My Amazon.de wishlist"
478
- msgstr "Mi lista en Amazon.de"
 
 
 
479
 
480
- msgid "Piwik error"
481
- msgstr "Error de Piwik"
 
482
 
483
- msgid "Important"
484
- msgstr "Importante"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
485
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
+ # Andres Sanchez <blackatze93@gmail.com>, 2015
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
9
+ "PO-Revision-Date: 2017-10-09 20:44+0000\n"
10
+ "Last-Translator: André Bräkling\n"
11
+ "Language-Team: Spanish (Spain) (http://www.transifex.com/piwik/wp-piwik/language/es_ES/)\n"
 
 
12
  "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: es_ES\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
18
+ #: classes/WP_Piwik.php:203
19
+ #, php-format
20
+ msgid "%s %s installed."
21
+ msgstr "%s %s instalado."
22
 
23
+ #: classes/WP_Piwik.php:203
24
+ msgid "Next you should connect to Piwik"
25
+ msgstr "A continuación, debe conectarse a Piwik"
 
 
 
26
 
27
+ #: classes/WP_Piwik.php:237
28
+ #, php-format
29
+ msgid "%s updated to %s."
30
+ msgstr "%s actualizado a %s."
 
 
 
 
 
 
31
 
32
+ #: classes/WP_Piwik.php:237
33
+ msgid "Please validate your configuration"
34
+ msgstr "Por favor valida tu configuración"
 
 
 
35
 
36
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
37
+ msgid "Settings"
38
+ msgstr "Ajustes"
39
 
40
+ #: classes/WP_Piwik.php:272
41
+ msgid "Important"
42
+ msgstr "Importante"
43
 
44
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
45
+ msgid "Piwik Statistics"
46
+ msgstr "Estadísticas de Piwik"
47
 
48
+ #: classes/WP_Piwik.php:499
49
+ msgid "Configure WP-Piwik"
50
+ msgstr "Configurar WP-Piwik"
 
51
 
52
+ #: classes/WP_Piwik.php:992
53
+ msgid "An error occured"
54
+ msgstr "Ocurrió un error"
55
 
56
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
57
+ msgid "Support"
58
+ msgstr "Asistencia"
59
 
60
+ #: classes/WP_Piwik.php:1275
61
+ msgid "Cheatin&#8217; uh?"
62
+ msgstr ""
63
 
64
+ #: classes/WP_Piwik/Admin/Settings.php:24
65
+ msgid "Reload"
66
+ msgstr "Recargar"
67
 
68
+ #: classes/WP_Piwik/Admin/Settings.php:27
69
+ msgid "Changes saved."
70
+ msgstr "Cambios guardados."
71
 
72
+ #: classes/WP_Piwik/Admin/Settings.php:55
73
+ msgid "Thanks for using WP-Piwik!"
74
+ msgstr "Gracias por usar WP-Piwik!"
75
 
76
+ #: classes/WP_Piwik/Admin/Settings.php:58
77
+ #, php-format
78
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
79
+ msgstr "WP-Piwik %s se conectó satisfactoriamente a Piwik %s."
80
 
81
+ #: classes/WP_Piwik/Admin/Settings.php:58
82
+ #, php-format
83
+ msgid "You are running WordPress %s."
84
+ msgstr "Está usando WordPress %s."
85
 
86
+ #: classes/WP_Piwik/Admin/Settings.php:58
87
+ #, php-format
88
+ msgid ""
89
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
90
+ "your sites as different websites."
91
+ msgstr ""
92
 
93
+ #: classes/WP_Piwik/Admin/Settings.php:62
94
+ #, php-format
95
+ msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
97
+ " the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr ""
99
 
100
+ #: classes/WP_Piwik/Admin/Settings.php:64
101
+ #, php-format
102
+ msgid ""
103
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
104
+ "During connection the following error occured: <br /><code>%s</code>"
105
+ msgstr ""
106
 
107
+ #: classes/WP_Piwik/Admin/Settings.php:67
108
+ #, php-format
109
+ msgid ""
110
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
111
+ "Piwik&laquo; section below."
112
+ msgstr ""
113
 
114
+ #: classes/WP_Piwik/Admin/Settings.php:71
115
+ msgid "Connect to Piwik"
116
+ msgstr "Conectar a Piwik"
 
117
 
118
+ #: classes/WP_Piwik/Admin/Settings.php:76
119
+ msgid "Show Statistics"
120
+ msgstr "Mostrar Estadísticas"
121
 
122
+ #: classes/WP_Piwik/Admin/Settings.php:80
123
+ msgid "Enable Tracking"
124
+ msgstr "Habilitar Seguimiento"
125
 
126
+ #: classes/WP_Piwik/Admin/Settings.php:85
127
+ msgid "Expert Settings"
128
+ msgstr ""
129
 
130
+ #: classes/WP_Piwik/Admin/Settings.php:93
131
+ msgid "Credits"
132
+ msgstr "Créditos"
133
 
134
+ #: classes/WP_Piwik/Admin/Settings.php:106
135
+ msgid ""
136
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
137
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
138
+ " To use this you will need your own Piwik instance. If you do not already "
139
+ "have a Piwik setup, you have two simple options: use either"
140
+ msgstr ""
141
 
142
+ #: classes/WP_Piwik/Admin/Settings.php:106
143
+ msgid "a self-hosted Piwik"
144
+ msgstr ""
145
 
146
+ #: classes/WP_Piwik/Admin/Settings.php:106
147
+ msgid "or"
148
+ msgstr "ó"
149
 
150
+ #: classes/WP_Piwik/Admin/Settings.php:106
151
+ msgid "a cloud-hosted Piwik by InnoCraft"
152
+ msgstr ""
 
153
 
154
+ #: classes/WP_Piwik/Admin/Settings.php:109
155
+ msgid ""
156
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
157
+ "and not connect to InnoCraft Cloud."
158
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
159
 
160
+ #: classes/WP_Piwik/Admin/Settings.php:109
161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
162
+ msgid "More information"
163
+ msgstr "Más información"
164
 
165
+ #: classes/WP_Piwik/Admin/Settings.php:111
166
+ msgid "You can choose between three connection methods:"
167
+ msgstr "Puede escoger entre tres métodos de conexión:"
 
168
 
169
+ #: classes/WP_Piwik/Admin/Settings.php:111
170
+ #: classes/WP_Piwik/Admin/Settings.php:114
171
+ msgid "Self-hosted (HTTP API, default)"
172
+ msgstr ""
173
 
174
+ #: classes/WP_Piwik/Admin/Settings.php:111
175
+ msgid ""
176
+ "This is the default option for a self-hosted Piwik and should work for most "
177
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
178
+ msgstr ""
179
 
180
+ #: classes/WP_Piwik/Admin/Settings.php:111
181
+ #: classes/WP_Piwik/Admin/Settings.php:115
182
+ msgid "Self-hosted (PHP API)"
183
+ msgstr ""
184
 
185
+ #: classes/WP_Piwik/Admin/Settings.php:111
186
+ msgid ""
187
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
188
+ " machine and you know the full server path to your Piwik instance."
189
+ msgstr ""
190
+
191
+ #: classes/WP_Piwik/Admin/Settings.php:111
192
+ #: classes/WP_Piwik/Admin/Settings.php:116
193
+ msgid "Cloud-hosted (InnoCraft Cloud)"
194
+ msgstr ""
195
 
196
+ #: classes/WP_Piwik/Admin/Settings.php:111
197
+ msgid ""
198
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
199
+ "option."
200
+ msgstr ""
201
 
202
+ #: classes/WP_Piwik/Admin/Settings.php:112
203
+ msgid "Piwik Mode"
204
+ msgstr "Modo de Piwik"
205
 
206
+ #: classes/WP_Piwik/Admin/Settings.php:113
207
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
208
+ msgstr ""
 
209
 
210
+ #: classes/WP_Piwik/Admin/Settings.php:119
 
211
  msgid "Piwik URL"
212
  msgstr "Dirección de Piwik"
213
 
214
+ #: classes/WP_Piwik/Admin/Settings.php:119
215
+ msgid ""
216
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
217
+ "instance, e.g. http://www.example.com/piwik/."
218
+ msgstr "Ingrese la URL de Piwik. Ésta es la misma URL que usa para acceder a su instancia de Piwik, e.g. http://www.example.com/piwik/."
219
+
220
+ #: classes/WP_Piwik/Admin/Settings.php:120
221
+ msgid "Piwik path"
222
+ msgstr "Ruta a Piwik"
223
+
224
+ #: classes/WP_Piwik/Admin/Settings.php:120
225
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
226
+ msgstr ""
227
+
228
+ #: classes/WP_Piwik/Admin/Settings.php:121
229
+ msgid "Piwik subdomain"
230
+ msgstr ""
231
+
232
+ #: classes/WP_Piwik/Admin/Settings.php:121
233
+ msgid ""
234
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
235
+ "https://SUBDOMAIN.innocraft.cloud."
236
+ msgstr ""
237
+
238
+ #: classes/WP_Piwik/Admin/Settings.php:122
239
  msgid "Auth token"
240
  msgstr "Auth token"
241
 
242
+ #: classes/WP_Piwik/Admin/Settings.php:122
243
+ msgid ""
244
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
245
+ "0a1b2c34d56e78901fa2bc3d45678efa."
246
+ msgstr ""
247
 
248
+ #: classes/WP_Piwik/Admin/Settings.php:122
249
+ #, php-format
250
+ msgid "See %sWP-Piwik FAQ%s."
251
+ msgstr "Ver %sWP-Piwik FAQ%s."
252
 
253
+ #: classes/WP_Piwik/Admin/Settings.php:127
254
+ msgid "Auto config"
255
+ msgstr "Auto-configuración"
 
256
 
257
+ #: classes/WP_Piwik/Admin/Settings.php:127
258
+ msgid ""
259
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
260
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
261
+ msgstr "Selecciona esto para elegir automáticamente tu blog desde el listado de sitios de Piwik por la dirección. Si tu blog no está todavía añadido en Piwik, WP-Piwik añadirá un sitio nuevo."
262
 
263
+ #: classes/WP_Piwik/Admin/Settings.php:131
264
+ #, php-format
265
+ msgid ""
266
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
267
+ "/><code>%s</code>"
268
+ msgstr ""
269
 
270
+ #: classes/WP_Piwik/Admin/Settings.php:141
271
+ msgid "Determined site"
272
+ msgstr "Sitio determinado"
 
 
 
273
 
274
+ #: classes/WP_Piwik/Admin/Settings.php:146
275
+ msgid "Select site"
276
+ msgstr "Seleccionar sitio"
 
277
 
278
+ #: classes/WP_Piwik/Admin/Settings.php:155
279
+ msgid "Piwik default date"
280
+ msgstr ""
281
 
282
+ #: classes/WP_Piwik/Admin/Settings.php:156
283
+ #: classes/WP_Piwik/Admin/Settings.php:170
284
+ msgid "Today"
285
+ msgstr "Hoy"
286
 
287
+ #: classes/WP_Piwik/Admin/Settings.php:157
288
+ #: classes/WP_Piwik/Admin/Settings.php:169
289
+ msgid "Yesterday"
290
+ msgstr "Ayer"
291
 
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
+ msgid "Current month"
294
+ msgstr "Mes actual"
295
 
296
+ #: classes/WP_Piwik/Admin/Settings.php:159
297
+ msgid "Last month"
298
+ msgstr "Último mes"
 
299
 
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
+ msgid "Current week"
302
+ msgstr "Semana actual"
303
+
304
+ #: classes/WP_Piwik/Admin/Settings.php:161
305
+ msgid "Last week"
306
+ msgstr "Última semana"
307
+
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
+ msgid "Default date shown on statistics page."
310
+ msgstr "Fecha por defecto mostrada en la página de estadísticas"
311
+
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
+ msgid "Show SEO data"
314
+ msgstr ""
315
+
316
+ #: classes/WP_Piwik/Admin/Settings.php:164
317
+ msgid "Display SEO ranking data on statistics page."
318
+ msgstr ""
319
+
320
+ #: classes/WP_Piwik/Admin/Settings.php:164
321
+ #: classes/WP_Piwik/Admin/Settings.php:176
322
+ msgid "Slow!"
323
+ msgstr ""
324
 
325
+ #: classes/WP_Piwik/Admin/Settings.php:165
326
+ msgid "Show e-commerce data"
327
+ msgstr ""
328
 
329
+ #: classes/WP_Piwik/Admin/Settings.php:165
330
+ msgid "Display e-commerce data on statistics page."
331
+ msgstr ""
332
 
333
+ #: classes/WP_Piwik/Admin/Settings.php:167
334
+ msgid "Dashboard overview"
335
+ msgstr ""
336
 
337
+ #: classes/WP_Piwik/Admin/Settings.php:168
338
+ #: classes/WP_Piwik/Admin/Settings.php:208
339
+ #: classes/WP_Piwik/Admin/Settings.php:210
340
+ #: classes/WP_Piwik/Admin/Settings.php:231
341
+ #: classes/WP_Piwik/Admin/Settings.php:285
342
+ #: classes/WP_Piwik/Admin/Settings.php:340
343
+ msgid "Disabled"
344
+ msgstr "Deshabilitado"
345
+
346
+ #: classes/WP_Piwik/Admin/Settings.php:171
347
+ msgid "Last 30 days"
348
+ msgstr "Últimos 30 días"
349
+
350
+ #: classes/WP_Piwik/Admin/Settings.php:172
351
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
352
+ msgstr ""
353
 
354
+ #: classes/WP_Piwik/Admin/Settings.php:174
355
+ msgid "Dashboard graph"
356
+ msgstr ""
 
 
357
 
358
+ #: classes/WP_Piwik/Admin/Settings.php:174
359
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
360
+ msgstr ""
361
 
362
+ #: classes/WP_Piwik/Admin/Settings.php:176
363
+ msgid "Dashboard SEO"
364
+ msgstr ""
365
+
366
+ #: classes/WP_Piwik/Admin/Settings.php:176
367
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
368
+ msgstr ""
369
+
370
+ #: classes/WP_Piwik/Admin/Settings.php:178
371
+ msgid "Dashboard e-commerce"
372
+ msgstr ""
373
+
374
+ #: classes/WP_Piwik/Admin/Settings.php:178
375
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
376
+ msgstr ""
377
+
378
+ #: classes/WP_Piwik/Admin/Settings.php:180
379
+ msgid "Show graph on WordPress Toolbar"
380
+ msgstr ""
381
+
382
+ #: classes/WP_Piwik/Admin/Settings.php:180
383
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
384
+ msgstr ""
385
 
386
+ #: classes/WP_Piwik/Admin/Settings.php:182
387
+ msgid "Display stats to"
388
+ msgstr ""
389
 
390
+ #: classes/WP_Piwik/Admin/Settings.php:189
391
  msgid "Choose user roles allowed to see the statistics page."
392
  msgstr "Selecciona los roles de usuario que pueden acceder a las estadísticas."
393
 
394
+ #: classes/WP_Piwik/Admin/Settings.php:191
395
+ msgid "Show per post stats"
396
+ msgstr ""
397
 
398
+ #: classes/WP_Piwik/Admin/Settings.php:191
399
+ msgid "Show stats about single posts at the post edit admin page."
400
+ msgstr ""
401
 
402
+ #: classes/WP_Piwik/Admin/Settings.php:193
403
+ msgid "Piwik shortcut"
404
+ msgstr ""
405
 
406
+ #: classes/WP_Piwik/Admin/Settings.php:193
407
+ msgid "Display a shortcut to Piwik itself."
408
+ msgstr "Mostar un enlace directo al propio Piwik"
409
 
410
+ #: classes/WP_Piwik/Admin/Settings.php:195
411
+ msgid "WP-Piwik display name"
412
+ msgstr ""
413
 
414
+ #: classes/WP_Piwik/Admin/Settings.php:195
415
+ msgid "Plugin name shown in WordPress."
416
+ msgstr ""
417
 
418
+ #: classes/WP_Piwik/Admin/Settings.php:197
419
+ msgid "Enable shortcodes"
420
+ msgstr ""
421
 
422
+ #: classes/WP_Piwik/Admin/Settings.php:197
423
+ msgid "Enable shortcodes in post or page content."
424
+ msgstr ""
425
 
426
+ #: classes/WP_Piwik/Admin/Settings.php:208
427
+ msgid "You can choose between four tracking code modes:"
428
+ msgstr ""
429
 
430
+ #: classes/WP_Piwik/Admin/Settings.php:208
431
+ msgid ""
432
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
433
+ "tracking code to your template files or you use another plugin to add the "
434
+ "tracking code."
435
+ msgstr ""
436
 
437
+ #: classes/WP_Piwik/Admin/Settings.php:208
438
+ #: classes/WP_Piwik/Admin/Settings.php:211
439
+ msgid "Default tracking"
440
+ msgstr ""
441
 
442
+ #: classes/WP_Piwik/Admin/Settings.php:208
443
+ msgid "WP-Piwik will use Piwik's standard tracking code."
444
+ msgstr ""
445
 
446
+ #: classes/WP_Piwik/Admin/Settings.php:208
447
+ #: classes/WP_Piwik/Admin/Settings.php:212
448
+ msgid "Use js/index.php"
449
+ msgstr "Utilizar js/index.php"
450
 
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
+ msgid ""
453
+ "You can choose this tracking code, to deliver a minified proxy code and to "
454
+ "avoid using the files called piwik.js or piwik.php."
455
+ msgstr ""
456
 
457
+ #: classes/WP_Piwik/Admin/Settings.php:208
458
+ #, php-format
459
+ msgid "See %sreadme file%s."
460
+ msgstr ""
461
 
462
+ #: classes/WP_Piwik/Admin/Settings.php:208
463
+ #: classes/WP_Piwik/Admin/Settings.php:213
464
+ msgid "Use proxy script"
465
+ msgstr ""
466
 
467
+ #: classes/WP_Piwik/Admin/Settings.php:208
468
+ msgid "Use this tracking code to not reveal the Piwik server URL."
469
+ msgstr ""
470
 
471
+ #: classes/WP_Piwik/Admin/Settings.php:208
472
+ #: classes/WP_Piwik/Admin/Settings.php:228
473
+ #: classes/WP_Piwik/Admin/Settings.php:238
474
+ #, php-format
475
+ msgid "See %sPiwik FAQ%s."
476
+ msgstr ""
477
 
478
+ #: classes/WP_Piwik/Admin/Settings.php:208
479
+ #: classes/WP_Piwik/Admin/Settings.php:214
480
+ msgid "Enter manually"
481
+ msgstr ""
482
 
483
+ #: classes/WP_Piwik/Admin/Settings.php:208
484
+ msgid ""
485
+ "Enter your own tracking code manually. You can choose one of the prior "
486
+ "options, pre-configure your tracking code and switch to manually editing at "
487
+ "last."
488
+ msgstr ""
489
 
490
+ #: classes/WP_Piwik/Admin/Settings.php:208
491
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
492
+ msgstr ""
493
 
494
+ #: classes/WP_Piwik/Admin/Settings.php:209
495
+ msgid "Add tracking code"
496
+ msgstr "Agregar código de seguimiento"
497
 
498
+ #: classes/WP_Piwik/Admin/Settings.php:217
499
+ msgid "Tracking code"
500
+ msgstr "Código de seguimiento"
501
 
502
+ #: classes/WP_Piwik/Admin/Settings.php:219
503
+ msgid "JavaScript code position"
504
+ msgstr ""
505
 
506
+ #: classes/WP_Piwik/Admin/Settings.php:220
507
+ msgid "Footer"
508
+ msgstr ""
509
 
510
+ #: classes/WP_Piwik/Admin/Settings.php:221
511
+ msgid "Header"
512
+ msgstr ""
513
 
514
+ #: classes/WP_Piwik/Admin/Settings.php:222
515
+ msgid ""
516
+ "Choose whether the JavaScript code is added to the footer or the header."
517
+ msgstr ""
518
 
519
+ #: classes/WP_Piwik/Admin/Settings.php:224
520
+ msgid "Noscript code"
521
+ msgstr ""
522
 
523
+ #: classes/WP_Piwik/Admin/Settings.php:226
524
+ msgid "Add &lt;noscript&gt;"
525
+ msgstr ""
526
 
527
+ #: classes/WP_Piwik/Admin/Settings.php:226
528
+ msgid "Adds the &lt;noscript&gt; code to your footer."
529
+ msgstr ""
530
 
531
+ #: classes/WP_Piwik/Admin/Settings.php:226
532
+ #: classes/WP_Piwik/Admin/Settings.php:228
533
+ msgid "Disabled in proxy mode."
534
+ msgstr ""
535
 
536
+ #: classes/WP_Piwik/Admin/Settings.php:228
537
+ msgid "Add rec parameter to noscript code"
538
+ msgstr ""
539
 
540
+ #: classes/WP_Piwik/Admin/Settings.php:228
541
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
542
+ msgstr ""
543
 
544
+ #: classes/WP_Piwik/Admin/Settings.php:230
545
+ msgid "Enable content tracking"
546
+ msgstr ""
547
 
548
+ #: classes/WP_Piwik/Admin/Settings.php:232
549
+ msgid "Track all content blocks"
550
+ msgstr ""
551
 
552
+ #: classes/WP_Piwik/Admin/Settings.php:233
553
+ msgid "Track only visible content blocks"
554
+ msgstr ""
555
 
556
+ #: classes/WP_Piwik/Admin/Settings.php:234
557
+ msgid ""
558
+ "Content tracking allows you to track interaction with the content of a web "
559
+ "page or application."
560
+ msgstr ""
561
 
562
+ #: classes/WP_Piwik/Admin/Settings.php:234
563
+ #: classes/WP_Piwik/Admin/Settings.php:236
564
+ #: classes/WP_Piwik/Admin/Settings.php:245
565
+ #: classes/WP_Piwik/Admin/Settings.php:247
566
+ #: classes/WP_Piwik/Admin/Settings.php:249
567
+ #: classes/WP_Piwik/Admin/Settings.php:270
568
+ #: classes/WP_Piwik/Admin/Settings.php:272
569
+ #: classes/WP_Piwik/Admin/Settings.php:278
570
+ #: classes/WP_Piwik/Admin/Settings.php:343
571
+ #, php-format
572
+ msgid "See %sPiwik documentation%s."
573
+ msgstr ""
574
 
575
+ #: classes/WP_Piwik/Admin/Settings.php:236
576
+ msgid "Track search"
577
+ msgstr ""
578
 
579
+ #: classes/WP_Piwik/Admin/Settings.php:236
580
+ msgid "Use Piwik's advanced Site Search Analytics feature."
581
+ msgstr ""
582
 
583
+ #: classes/WP_Piwik/Admin/Settings.php:238
584
+ msgid "Track 404"
585
+ msgstr "Seguimiento de errores 404"
586
 
587
+ #: classes/WP_Piwik/Admin/Settings.php:238
588
+ msgid ""
589
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
590
+ msgstr "WP-Piwik puede añadir automáticamente una categoría-404 para hacer el seguimiento de los errores 404"
591
 
592
+ #: classes/WP_Piwik/Admin/Settings.php:241
593
+ msgid "Add annotation on new post of type"
594
+ msgstr ""
595
 
596
+ #: classes/WP_Piwik/Admin/Settings.php:247
597
+ msgid "Show custom variables box"
598
+ msgstr ""
599
 
600
+ #: classes/WP_Piwik/Admin/Settings.php:247
601
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
602
+ msgstr ""
603
 
604
+ #: classes/WP_Piwik/Admin/Settings.php:249
605
+ msgid "Add new file types for download tracking"
606
+ msgstr ""
607
 
608
+ #: classes/WP_Piwik/Admin/Settings.php:249
609
+ msgid ""
610
+ "Add file extensions for download tracking, divided by a vertical bar "
611
+ "(&#124;)."
612
+ msgstr ""
613
 
614
+ #: classes/WP_Piwik/Admin/Settings.php:251
615
+ msgid "Disable cookies"
616
+ msgstr ""
617
 
618
+ #: classes/WP_Piwik/Admin/Settings.php:251
619
+ msgid "Disable all tracking cookies for a visitor."
620
+ msgstr ""
621
 
622
+ #: classes/WP_Piwik/Admin/Settings.php:253
623
+ msgid "Limit cookie lifetime"
624
+ msgstr ""
625
 
626
+ #: classes/WP_Piwik/Admin/Settings.php:253
627
+ msgid ""
628
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
629
+ " period as necessary."
630
+ msgstr ""
631
 
632
+ #: classes/WP_Piwik/Admin/Settings.php:255
633
+ msgid "Visitor timeout (seconds)"
634
+ msgstr ""
635
 
636
+ #: classes/WP_Piwik/Admin/Settings.php:257
637
+ msgid "Session timeout (seconds)"
638
+ msgstr ""
639
+
640
+ #: classes/WP_Piwik/Admin/Settings.php:259
641
+ msgid "Referral timeout (seconds)"
642
+ msgstr ""
643
+
644
+ #: classes/WP_Piwik/Admin/Settings.php:261
645
+ msgid "Track admin pages"
646
+ msgstr ""
647
+
648
+ #: classes/WP_Piwik/Admin/Settings.php:261
649
+ msgid ""
650
+ "Enable to track users on admin pages (remember to configure the tracking "
651
+ "filter appropriately)."
652
+ msgstr ""
653
+
654
+ #: classes/WP_Piwik/Admin/Settings.php:264
655
+ msgid "Tracking filter"
656
+ msgstr "Filtro de seguimiento"
657
+
658
+ #: classes/WP_Piwik/Admin/Settings.php:268
659
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
660
+ msgstr "Selecciona, por el rol de usuario, los usuarios sobre los cuales <strong>no</strong> quieres hacer seguimiento."
661
+
662
+ #: classes/WP_Piwik/Admin/Settings.php:270
663
+ msgid "Track subdomains in the same website"
664
+ msgstr ""
665
+
666
+ #: classes/WP_Piwik/Admin/Settings.php:270
667
+ msgid "Adds *.-prefix to cookie domain."
668
+ msgstr ""
669
+
670
+ #: classes/WP_Piwik/Admin/Settings.php:272
671
+ msgid "Do not count subdomains as outlink"
672
+ msgstr ""
673
+
674
+ #: classes/WP_Piwik/Admin/Settings.php:272
675
+ msgid "Adds *.-prefix to tracked domain."
676
+ msgstr ""
677
+
678
+ #: classes/WP_Piwik/Admin/Settings.php:274
679
+ msgid "Enable cross domain linking"
680
+ msgstr ""
681
+
682
+ #: classes/WP_Piwik/Admin/Settings.php:274
683
+ msgid ""
684
+ "When enabled, it will make sure to use the same visitor ID for the same "
685
+ "visitor across several domains. This works only when this feature is enabled"
686
+ " because the visitor ID is stored in a cookie and cannot be read on the "
687
+ "other domain by default. When this feature is enabled, it will append a URL "
688
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
689
+ "URL that belongs to one of your domains. For this feature to work, you also "
690
+ "have to configure which domains should be treated as local in your Piwik "
691
+ "website settings. This feature requires Piwik 3.0.2."
692
+ msgstr ""
693
+
694
+ #: classes/WP_Piwik/Admin/Settings.php:276
695
+ msgid "Track RSS feeds"
696
+ msgstr ""
697
+
698
+ #: classes/WP_Piwik/Admin/Settings.php:276
699
+ msgid "Enable to track posts in feeds via tracking pixel."
700
+ msgstr ""
701
+
702
+ #: classes/WP_Piwik/Admin/Settings.php:278
703
+ msgid "Track RSS feed links as campaign"
704
+ msgstr ""
705
+
706
+ #: classes/WP_Piwik/Admin/Settings.php:278
707
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
708
+ msgstr ""
709
+
710
+ #: classes/WP_Piwik/Admin/Settings.php:280
711
+ msgid "RSS feed campaign"
712
+ msgstr ""
713
+
714
+ #: classes/WP_Piwik/Admin/Settings.php:280
715
+ msgid "Keyword: post name."
716
+ msgstr ""
717
+
718
+ #: classes/WP_Piwik/Admin/Settings.php:282
719
+ msgid "Enable heartbeat timer"
720
+ msgstr ""
721
+
722
+ #: classes/WP_Piwik/Admin/Settings.php:282
723
+ msgid ""
724
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
725
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
726
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
727
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
728
+ "HTTP requests on your site."
729
+ msgstr ""
730
+
731
+ #: classes/WP_Piwik/Admin/Settings.php:284
732
+ msgid "User ID Tracking"
733
+ msgstr ""
734
+
735
+ #: classes/WP_Piwik/Admin/Settings.php:286
736
+ msgid "WP User ID"
737
+ msgstr ""
738
+
739
+ #: classes/WP_Piwik/Admin/Settings.php:287
740
+ msgid "Email Address"
741
+ msgstr ""
742
+
743
+ #: classes/WP_Piwik/Admin/Settings.php:288
744
+ msgid "Username"
745
+ msgstr "Nombre de usuario"
746
+
747
+ #: classes/WP_Piwik/Admin/Settings.php:289
748
+ msgid "Display Name (Not Recommended!)"
749
+ msgstr ""
750
+
751
+ #: classes/WP_Piwik/Admin/Settings.php:290
752
+ msgid ""
753
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
754
+ "can select which field from the User's profile is tracked as the &quot;User "
755
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
756
+ msgstr ""
757
+
758
+ #: classes/WP_Piwik/Admin/Settings.php:295
759
+ msgid ""
760
+ "Usually, you do not need to change these settings. If you want to do so, you"
761
+ " should know what you do or you got an expert's advice."
762
+ msgstr ""
763
+
764
+ #: classes/WP_Piwik/Admin/Settings.php:297
765
+ msgid "Enable cache"
766
+ msgstr ""
767
+
768
+ #: classes/WP_Piwik/Admin/Settings.php:297
769
+ msgid "Cache API calls, which not contain today's values, for a week."
770
+ msgstr ""
771
+
772
+ #: classes/WP_Piwik/Admin/Settings.php:300
773
+ msgid "HTTP connection via"
774
+ msgstr ""
775
+
776
+ #: classes/WP_Piwik/Admin/Settings.php:301
777
+ #: classes/WP_Piwik/Admin/Settings.php:590
778
+ msgid "cURL"
779
+ msgstr ""
780
+
781
+ #: classes/WP_Piwik/Admin/Settings.php:302
782
+ #: classes/WP_Piwik/Admin/Settings.php:590
783
+ msgid "fopen"
784
+ msgstr ""
785
+
786
+ #: classes/WP_Piwik/Admin/Settings.php:303
787
+ msgid ""
788
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
789
+ " or Cloud mode."
790
+ msgstr ""
791
+
792
+ #: classes/WP_Piwik/Admin/Settings.php:305
793
+ msgid "HTTP method"
794
+ msgstr ""
795
+
796
+ #: classes/WP_Piwik/Admin/Settings.php:306
797
+ #: classes/WP_Piwik/Admin/Settings.php:590
798
+ msgid "POST"
799
+ msgstr ""
800
+
801
+ #: classes/WP_Piwik/Admin/Settings.php:307
802
+ #: classes/WP_Piwik/Admin/Settings.php:590
803
+ msgid "GET"
804
+ msgstr ""
805
+
806
+ #: classes/WP_Piwik/Admin/Settings.php:308
807
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
808
+ msgstr ""
809
+
810
+ #: classes/WP_Piwik/Admin/Settings.php:310
811
+ msgid "Disable time limit"
812
+ msgstr ""
813
+
814
+ #: classes/WP_Piwik/Admin/Settings.php:310
815
+ msgid "Use set_time_limit(0) if stats page causes a time out."
816
+ msgstr ""
817
+
818
+ #: classes/WP_Piwik/Admin/Settings.php:312
819
+ msgid "Connection timeout"
820
+ msgstr ""
821
+
822
+ #: classes/WP_Piwik/Admin/Settings.php:314
823
+ msgid "Disable SSL peer verification"
824
+ msgstr ""
825
+
826
+ #: classes/WP_Piwik/Admin/Settings.php:314
827
+ #: classes/WP_Piwik/Admin/Settings.php:315
828
+ msgid "not recommended"
829
+ msgstr ""
830
+
831
+ #: classes/WP_Piwik/Admin/Settings.php:315
832
+ msgid "Disable SSL host verification"
833
+ msgstr ""
834
+
835
+ #: classes/WP_Piwik/Admin/Settings.php:317
836
+ msgid "User agent"
837
+ msgstr ""
838
+
839
+ #: classes/WP_Piwik/Admin/Settings.php:318
840
+ msgid "Use the PHP default user agent"
841
+ msgstr ""
842
+
843
+ #: classes/WP_Piwik/Admin/Settings.php:318
844
+ msgid "empty"
845
+ msgstr ""
846
+
847
+ #: classes/WP_Piwik/Admin/Settings.php:319
848
+ msgid "Define a specific user agent"
849
+ msgstr ""
850
+
851
+ #: classes/WP_Piwik/Admin/Settings.php:321
852
+ msgid "Specific user agent"
853
+ msgstr ""
854
+
855
+ #: classes/WP_Piwik/Admin/Settings.php:323
856
+ msgid "Enable DNS prefetch"
857
+ msgstr ""
858
+
859
+ #: classes/WP_Piwik/Admin/Settings.php:323
860
+ #, php-format
861
+ msgid "See %sPiwik Blog%s."
862
+ msgstr ""
863
 
864
+ #: classes/WP_Piwik/Admin/Settings.php:323
865
+ msgid "Add a DNS prefetch tag. "
866
+ msgstr ""
867
+
868
+ #: classes/WP_Piwik/Admin/Settings.php:325
869
+ msgid "Add data-cfasync=false"
870
+ msgstr ""
871
+
872
+ #: classes/WP_Piwik/Admin/Settings.php:325
873
+ #, php-format
874
+ msgid "See %sCloudFlare Knowledge Base%s."
875
+ msgstr ""
876
+
877
+ #: classes/WP_Piwik/Admin/Settings.php:325
878
+ msgid ""
879
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
880
+ "ignore the script. "
881
+ msgstr ""
882
+
883
+ #: classes/WP_Piwik/Admin/Settings.php:327
884
+ msgid "CDN URL"
885
+ msgstr ""
886
+
887
+ #: classes/WP_Piwik/Admin/Settings.php:329
888
+ msgid "CDN URL (SSL)"
889
+ msgstr ""
890
+
891
+ #: classes/WP_Piwik/Admin/Settings.php:331
892
+ msgid "Force Piwik to use a specific protocol"
893
+ msgstr ""
894
+
895
+ #: classes/WP_Piwik/Admin/Settings.php:332
896
+ msgid "Disabled (default)"
897
+ msgstr ""
898
+
899
+ #: classes/WP_Piwik/Admin/Settings.php:333
900
+ msgid "http"
901
+ msgstr ""
902
+
903
+ #: classes/WP_Piwik/Admin/Settings.php:334
904
+ msgid "https (SSL)"
905
+ msgstr ""
906
+
907
+ #: classes/WP_Piwik/Admin/Settings.php:335
908
+ msgid ""
909
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
910
+ "work with a CDN URL."
911
+ msgstr ""
912
+
913
+ #: classes/WP_Piwik/Admin/Settings.php:337
914
+ msgid "Update notice"
915
+ msgstr ""
916
+
917
+ #: classes/WP_Piwik/Admin/Settings.php:338
918
+ msgid "Show always if WP-Piwik is updated"
919
+ msgstr ""
920
+
921
+ #: classes/WP_Piwik/Admin/Settings.php:339
922
+ msgid "Show only if WP-Piwik is updated and settings were changed"
923
+ msgstr ""
924
+
925
+ #: classes/WP_Piwik/Admin/Settings.php:341
926
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
927
+ msgstr ""
928
+
929
+ #: classes/WP_Piwik/Admin/Settings.php:343
930
+ msgid "Define all file types for download tracking"
931
+ msgstr ""
932
+
933
+ #: classes/WP_Piwik/Admin/Settings.php:343
934
+ msgid ""
935
+ "Replace Piwik's default file extensions for download tracking, divided by a "
936
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
937
+ msgstr ""
938
+
939
+ #: classes/WP_Piwik/Admin/Settings.php:345
940
+ msgid "Set classes to be treated as downloads"
941
+ msgstr ""
942
+
943
+ #: classes/WP_Piwik/Admin/Settings.php:345
944
+ msgid ""
945
+ "Set classes to be treated as downloads (in addition to piwik_download), "
946
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
947
+ "settings."
948
+ msgstr ""
949
+
950
+ #: classes/WP_Piwik/Admin/Settings.php:345
951
+ #: classes/WP_Piwik/Admin/Settings.php:347
952
+ #, php-format
953
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
954
+ msgstr ""
955
+
956
+ #: classes/WP_Piwik/Admin/Settings.php:347
957
+ msgid "Set classes to be treated as outlinks"
958
+ msgstr ""
959
+
960
+ #: classes/WP_Piwik/Admin/Settings.php:347
961
+ msgid ""
962
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
963
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
964
+ msgstr ""
965
+
966
+ #: classes/WP_Piwik/Admin/Settings.php:508
967
+ msgid "Donate"
968
+ msgstr "Donar"
969
+
970
+ #: classes/WP_Piwik/Admin/Settings.php:511
971
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
972
+ msgstr "Si te gusta WP-Piwik, puedes añadir a su desarrollo con una donación:"
973
+
974
+ #: classes/WP_Piwik/Admin/Settings.php:530
975
+ msgid "My Amazon.de wishlist"
976
+ msgstr "Mi lista en Amazon.de"
977
+
978
+ #: classes/WP_Piwik/Admin/Settings.php:533
979
+ #: classes/WP_Piwik/Admin/Settings.php:575
980
+ msgid "Please don't forget to vote the compatibility at the"
981
+ msgstr "Por favor no te olvides de votar la compatibilidad en "
982
+
983
+ #: classes/WP_Piwik/Admin/Settings.php:561
984
+ msgid "Thank you very much for your donation"
985
+ msgstr "Muchas gracias por vuestra donación"
986
+
987
+ #: classes/WP_Piwik/Admin/Settings.php:561
988
+ msgid "the Piwik team itself"
989
+ msgstr "El equipo de Piwik"
990
+
991
+ #: classes/WP_Piwik/Admin/Settings.php:561
992
+ msgid ", and all people flattering this"
993
+ msgstr ""
994
+
995
+ #: classes/WP_Piwik/Admin/Settings.php:562
996
+ msgid ""
997
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
998
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
999
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1000
+ "Sparklines</a> (License: New BSD License)."
1001
+ msgstr ""
1002
+
1003
+ #: classes/WP_Piwik/Admin/Settings.php:563
1004
+ msgid "Thank you very much"
1005
+ msgstr "Muchas gracias"
1006
+
1007
+ #: classes/WP_Piwik/Admin/Settings.php:563
1008
+ msgid "for your translation work"
1009
+ msgstr "por vuestro trabajo de traducción"
1010
+
1011
+ #: classes/WP_Piwik/Admin/Settings.php:564
1012
+ msgid ""
1013
+ "Thank you very much, all users who send me mails containing criticism, "
1014
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1015
+ " much better."
1016
+ msgstr "Muchísimas gracias a todos los usuarios que me habéis enviado emails con críticas, recomendaciones, sugerencias de mejoras y reportes de errores. Me ayudais a hacer WP-Piwik mucho mejor."
1017
+
1018
+ #: classes/WP_Piwik/Admin/Settings.php:565
1019
+ msgid ""
1020
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1021
+ "if my piece of code is really used!"
1022
+ msgstr "Gracias a <strong>ti</strong>por utilizar mi plugin. Es el mayor elogio que mi plugin sea realmente utilizado."
1023
+
1024
+ #: classes/WP_Piwik/Admin/Settings.php:574
1025
+ msgid "The best place to get help:"
1026
+ msgstr ""
1027
+
1028
+ #: classes/WP_Piwik/Admin/Settings.php:574
1029
+ msgid "WP-Piwik support forum"
1030
+ msgstr ""
1031
+
1032
+ #: classes/WP_Piwik/Admin/Settings.php:577
1033
+ msgid "Debugging"
1034
+ msgstr ""
1035
+
1036
+ #: classes/WP_Piwik/Admin/Settings.php:578
1037
+ msgid ""
1038
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1039
+ "available:"
1040
+ msgstr ""
1041
+
1042
+ #: classes/WP_Piwik/Admin/Settings.php:581
1043
+ msgid "cURL is"
1044
+ msgstr ""
1045
+
1046
+ #: classes/WP_Piwik/Admin/Settings.php:582
1047
+ #: classes/WP_Piwik/Admin/Settings.php:587
1048
+ msgid "not"
1049
+ msgstr ""
1050
+
1051
+ #: classes/WP_Piwik/Admin/Settings.php:583
1052
+ msgid "available"
1053
+ msgstr ""
1054
+
1055
+ #: classes/WP_Piwik/Admin/Settings.php:586
1056
+ msgid "allow_url_fopen is"
1057
+ msgstr ""
1058
+
1059
+ #: classes/WP_Piwik/Admin/Settings.php:588
1060
+ msgid "enabled"
1061
+ msgstr ""
1062
+
1063
+ #: classes/WP_Piwik/Admin/Settings.php:590
1064
+ msgid "is used."
1065
+ msgstr ""
1066
+
1067
+ #: classes/WP_Piwik/Admin/Settings.php:592
1068
+ msgid "Determined Piwik base URL is"
1069
+ msgstr ""
1070
+
1071
+ #: classes/WP_Piwik/Admin/Settings.php:596
1072
+ msgid "Tools"
1073
+ msgstr ""
1074
+
1075
+ #: classes/WP_Piwik/Admin/Settings.php:598
1076
+ msgid "Run testscript"
1077
+ msgstr ""
1078
+
1079
+ #: classes/WP_Piwik/Admin/Settings.php:599
1080
+ msgid "Sitebrowser"
1081
+ msgstr ""
1082
+
1083
+ #: classes/WP_Piwik/Admin/Settings.php:600
1084
+ msgid "Clear cache"
1085
+ msgstr ""
1086
+
1087
+ #: classes/WP_Piwik/Admin/Settings.php:601
1088
+ msgid "Are you sure you want to clear all settings?"
1089
+ msgstr ""
1090
+
1091
+ #: classes/WP_Piwik/Admin/Settings.php:601
1092
+ msgid "Reset WP-Piwik"
1093
+ msgstr ""
1094
+
1095
+ #: classes/WP_Piwik/Admin/Settings.php:603
1096
+ msgid "Latest support threads on WordPress.org"
1097
+ msgstr ""
1098
+
1099
+ #: classes/WP_Piwik/Admin/Settings.php:654
1100
+ msgid "Settings cleared (except connection settings)."
1101
+ msgstr ""
1102
+
1103
+ #: classes/WP_Piwik/Admin/Settings.php:670
1104
+ msgid "Cache cleared."
1105
+ msgstr ""
1106
+
1107
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1108
+ msgid "site"
1109
+ msgstr ""
1110
+
1111
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1112
+ msgid "sites"
1113
+ msgstr ""
1114
+
1115
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1116
+ msgid "No site configured yet."
1117
+ msgstr ""
1118
+
1119
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1120
+ msgid "Blog ID"
1121
+ msgstr ""
1122
+
1123
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1124
+ msgid "Title"
1125
+ msgstr "Título"
1126
+
1127
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1128
+ msgid "URL"
1129
+ msgstr "URL"
1130
+
1131
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1132
+ msgid "Site ID (Piwik)"
1133
+ msgstr ""
1134
+
1135
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1136
+ msgid "Site not created yet."
1137
+ msgstr ""
1138
+
1139
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1140
+ msgid "Statistics"
1141
+ msgstr "Estadísticas"
1142
+
1143
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1144
+ msgid "Currently shown stats:"
1145
+ msgstr "Estaísticas mostradas actualmente:"
1146
+
1147
+ #: classes/WP_Piwik/Request/Php.php:27
1148
+ msgid "Could not resolve"
1149
+ msgstr ""
1150
+
1151
+ #: classes/WP_Piwik/Request/Php.php:27
1152
+ msgid "realpath() returns false"
1153
+ msgstr ""
1154
+
1155
+ #: classes/WP_Piwik/Request/Php.php:39
1156
+ msgid "Class Piwik\\FrontController does not exists."
1157
+ msgstr ""
1158
+
1159
+ #: classes/WP_Piwik/Request/Php.php:42
1160
+ msgid "Class Piwik\\API\\Request does not exists."
1161
+ msgstr ""
1162
+
1163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1164
+ msgid "Piwik Custom Variables"
1165
+ msgstr ""
1166
+
1167
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1168
+ msgid "Name"
1169
+ msgstr "Nombre"
1170
+
1171
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1172
+ msgid "Value"
1173
+ msgstr "Valor"
1174
+
1175
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1176
+ msgid "Set custom variables for a page view"
1177
+ msgstr ""
1178
+
1179
+ #: classes/WP_Piwik/Widget.php:91
1180
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1181
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1182
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1183
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1184
+ #: classes/WP_Piwik/Widget/Items.php:23
1185
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1186
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1187
+ #: classes/WP_Piwik/Widget/Overview.php:24
1188
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1189
+ #: classes/WP_Piwik/Widget/Screens.php:35
1190
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1191
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1192
+ #: classes/WP_Piwik/Widget/Systems.php:33
1193
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1194
+ msgid "Piwik error"
1195
+ msgstr "Error de Piwik"
1196
+
1197
+ #: classes/WP_Piwik/Widget.php:100
1198
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1199
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1200
+ #: classes/WP_Piwik/Widget/Country.php:39
1201
+ #: classes/WP_Piwik/Widget/Screens.php:37
1202
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1203
+ #: classes/WP_Piwik/Widget/Systems.php:35
1204
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1205
+ msgid "Unique"
1206
+ msgstr "Único"
1207
+
1208
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1209
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1210
+ msgid "Visits"
1211
+ msgstr "Visitas"
1212
+
1213
+ #: classes/WP_Piwik/Widget.php:104
1214
+ msgid "Hits"
1215
+ msgstr ""
1216
+
1217
+ #: classes/WP_Piwik/Widget.php:106
1218
+ msgid "Actions"
1219
+ msgstr "Acciones"
1220
+
1221
+ #: classes/WP_Piwik/Widget.php:162
1222
+ msgid "No data available."
1223
+ msgstr "No hay datos disponibles."
1224
+
1225
+ #: classes/WP_Piwik/Widget.php:243
1226
+ msgid "today"
1227
+ msgstr ""
1228
+
1229
+ #: classes/WP_Piwik/Widget.php:248
1230
+ msgid "current month"
1231
+ msgstr ""
1232
+
1233
+ #: classes/WP_Piwik/Widget.php:253
1234
+ msgid "last month"
1235
+ msgstr ""
1236
+
1237
+ #: classes/WP_Piwik/Widget.php:258
1238
+ msgid "current week"
1239
+ msgstr ""
1240
+
1241
+ #: classes/WP_Piwik/Widget.php:263
1242
+ msgid "last week"
1243
+ msgstr ""
1244
+
1245
+ #: classes/WP_Piwik/Widget.php:268
1246
+ msgid "yesterday"
1247
+ msgstr ""
1248
+
1249
+ #: classes/WP_Piwik/Widget.php:293
1250
+ msgid "week"
1251
+ msgstr "semana"
1252
+
1253
+ #: classes/WP_Piwik/Widget.php:328
1254
+ msgid "last 30 days"
1255
+ msgstr ""
1256
+
1257
+ #: classes/WP_Piwik/Widget.php:330
1258
+ msgid "last 12 "
1259
+ msgstr ""
1260
+
1261
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1262
+ msgid "Browser Details"
1263
+ msgstr ""
1264
+
1265
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1266
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1267
+ msgid "Browser"
1268
+ msgstr "Navegador"
1269
+
1270
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1271
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1272
+ #: classes/WP_Piwik/Widget/Country.php:39
1273
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1274
+ #: classes/WP_Piwik/Widget/Screens.php:37
1275
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1276
+ #: classes/WP_Piwik/Widget/Systems.php:35
1277
+ msgid "Percent"
1278
+ msgstr "Porcentaje"
1279
+
1280
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1281
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1282
+ #: classes/WP_Piwik/Widget/Country.php:66
1283
+ #: classes/WP_Piwik/Widget/Screens.php:64
1284
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1285
+ #: classes/WP_Piwik/Widget/Systems.php:62
1286
+ msgid "Others"
1287
+ msgstr "Otros"
1288
+
1289
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1290
+ msgid "Browsers"
1291
+ msgstr "Navegadores"
1292
+
1293
+ #: classes/WP_Piwik/Widget/Chart.php:19
1294
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1295
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1296
+ msgid "Visitors"
1297
+ msgstr "Visitantes"
1298
+
1299
+ #: classes/WP_Piwik/Widget/Chart.php:71
1300
+ msgid ""
1301
+ "The graph contains the values shown in the table below (visitors / unique / "
1302
+ "bounces). The red line shows a linear trendline (unique)."
1303
+ msgstr ""
1304
+
1305
+ #: classes/WP_Piwik/Widget/Country.php:18
1306
+ msgid "Countries"
1307
+ msgstr "Países"
1308
+
1309
+ #: classes/WP_Piwik/Widget/Country.php:39
1310
+ msgid "Country"
1311
+ msgstr "País"
1312
+
1313
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1314
+ msgid "E-Commerce"
1315
+ msgstr ""
1316
+
1317
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1318
+ msgid "Conversions"
1319
+ msgstr "Conversiones"
1320
+
1321
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1322
+ msgid "Visits converted"
1323
+ msgstr ""
1324
+
1325
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1326
+ #: classes/WP_Piwik/Widget/Items.php:27
1327
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1328
+ msgid "Revenue"
1329
+ msgstr "Ingresos"
1330
+
1331
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1332
+ #: classes/WP_Piwik/Widget/Items.php:32
1333
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1334
+ msgid "Conversion rate"
1335
+ msgstr ""
1336
+
1337
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1338
+ msgid "Conversions (new visitor)"
1339
+ msgstr ""
1340
+
1341
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1342
+ msgid "Visits converted (new visitor)"
1343
+ msgstr ""
1344
+
1345
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1346
+ msgid "Revenue (new visitor)"
1347
+ msgstr ""
1348
+
1349
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1350
+ msgid "Conversion rate (new visitor)"
1351
+ msgstr ""
1352
+
1353
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1354
+ msgid "Conversions (returning visitor)"
1355
+ msgstr ""
1356
+
1357
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1358
+ msgid "Visits converted (returning visitor)"
1359
+ msgstr ""
1360
+
1361
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1362
+ msgid "Revenue (returning visitor)"
1363
+ msgstr ""
1364
+
1365
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1366
+ msgid "Conversion rate (returning visitor)"
1367
+ msgstr ""
1368
+
1369
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1370
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1371
+ msgid "Shortcut"
1372
+ msgstr "Enlace directo"
1373
+
1374
+ #: classes/WP_Piwik/Widget/Items.php:11
1375
+ msgid "E-Commerce Items"
1376
+ msgstr ""
1377
+
1378
+ #: classes/WP_Piwik/Widget/Items.php:26
1379
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1380
+ msgid "Label"
1381
+ msgstr "Etiqueta"
1382
+
1383
+ #: classes/WP_Piwik/Widget/Items.php:28
1384
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1385
+ msgid "Quantity"
1386
+ msgstr "Cantidad"
1387
+
1388
+ #: classes/WP_Piwik/Widget/Items.php:29
1389
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1390
+ msgid "Orders"
1391
+ msgstr ""
1392
+
1393
+ #: classes/WP_Piwik/Widget/Items.php:30
1394
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1395
+ msgid "Avg. price"
1396
+ msgstr ""
1397
+
1398
+ #: classes/WP_Piwik/Widget/Items.php:31
1399
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1400
+ msgid "Avg. quantity"
1401
+ msgstr ""
1402
+
1403
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1404
+ msgid "E-Commerce Item Categories"
1405
+ msgstr ""
1406
+
1407
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1408
+ msgid "Keywords"
1409
+ msgstr "Palabras Clave"
1410
+
1411
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1412
+ #: classes/WP_Piwik/Widget/Search.php:16
1413
+ msgid "Site Search"
1414
+ msgstr ""
1415
+
1416
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1417
+ #: classes/WP_Piwik/Widget/Search.php:25
1418
+ msgid "Keyword"
1419
+ msgstr "Palabra Clave"
1420
+
1421
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1422
+ #: classes/WP_Piwik/Widget/Search.php:25
1423
+ msgid "Requests"
1424
+ msgstr ""
1425
+
1426
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1427
+ #: classes/WP_Piwik/Widget/Search.php:25
1428
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1429
+ msgid "Bounced"
1430
+ msgstr "Rebotado"
1431
+
1432
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1433
+ msgid "Overview"
1434
+ msgstr "Información General"
1435
+
1436
+ #: classes/WP_Piwik/Widget/Overview.php:17
1437
+ msgid "dashboard"
1438
+ msgstr ""
1439
+
1440
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1441
+ msgid "Unique visitors"
1442
+ msgstr "Visitantes Únicos"
1443
+
1444
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1445
+ msgid "Page views"
1446
+ msgstr "Páginas vistas"
1447
+
1448
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1449
+ msgid "Total time spent"
1450
+ msgstr "Tiempo total empleado"
1451
+
1452
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1453
+ msgid "Bounce count"
1454
+ msgstr "Número de rebotes"
1455
+
1456
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1457
+ msgid "Time/visit"
1458
+ msgstr "Tiempo/Visita"
1459
+
1460
+ #: classes/WP_Piwik/Widget/Overview.php:57
1461
+ msgid "Max. page views in one visit"
1462
+ msgstr "Máximo de páginas vistas durante una visita"
1463
+
1464
+ #: classes/WP_Piwik/Widget/Pages.php:16
1465
+ msgid "Pages"
1466
+ msgstr "Páginas"
1467
+
1468
+ #: classes/WP_Piwik/Widget/Pages.php:18
1469
+ msgid "Page"
1470
+ msgstr ""
1471
+
1472
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1473
+ msgid "Plugins"
1474
+ msgstr "Plugins"
1475
+
1476
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1477
+ msgid "Plugin"
1478
+ msgstr "Plugin"
1479
+
1480
+ #: classes/WP_Piwik/Widget/Post.php:43
1481
+ msgid "Min. generation time"
1482
+ msgstr ""
1483
+
1484
+ #: classes/WP_Piwik/Widget/Post.php:44
1485
+ msgid "Max. generation time"
1486
+ msgstr ""
1487
+
1488
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1489
+ msgid "Referrers"
1490
+ msgstr "Referencias"
1491
+
1492
+ #: classes/WP_Piwik/Widget/Screens.php:16
1493
+ msgid "Resolutions"
1494
+ msgstr "Resoluciones"
1495
+
1496
+ #: classes/WP_Piwik/Widget/Screens.php:37
1497
+ msgid "Resolution"
1498
+ msgstr "Resolución"
1499
+
1500
+ #: classes/WP_Piwik/Widget/Seo.php:13
1501
+ msgid "SEO"
1502
+ msgstr "SEO"
1503
+
1504
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1505
+ msgid "Operation System Details"
1506
+ msgstr "Detalles del Sistema Operativo"
1507
+
1508
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1509
+ #: classes/WP_Piwik/Widget/Systems.php:35
1510
+ msgid "Operation System"
1511
+ msgstr "Sistema Operativo"
1512
+
1513
+ #: classes/WP_Piwik/Widget/Systems.php:14
1514
+ msgid "Operation Systems"
1515
+ msgstr "Sistemas Operativos"
1516
+
1517
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1518
+ msgid "Date"
1519
+ msgstr "Fecha"
1520
+
1521
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1522
+ msgid "Page Views"
1523
+ msgstr "Páginas Vistas"
1524
+
1525
+ #: wp-piwik.php:60
1526
+ #, php-format
1527
+ msgid ""
1528
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1529
+ " Please update PHP to use WP-Piwik."
1530
+ msgstr ""
languages/wp-piwik-fa_IR.mo CHANGED
Binary file
languages/wp-piwik-fa_IR.po CHANGED
@@ -1,408 +1,1532 @@
1
- # Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
2
- # Copyright (C) 2010 Andr&eacute; Br&auml;kling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: WP-Piwik 0.8.4\n"
9
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
10
- "POT-Creation-Date: 2010-07-19 18:06+0000\n"
11
- "PO-Revision-Date: 2011-11-16 11:13+0330\n"
12
- "Last-Translator: hossein <hossein@email.com>\n"
13
- "Language-Team: Persian <LL@li.org>\n"
14
  "MIME-Version: 1.0\n"
15
- "Content-Type: text/plain; charset=utf-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
- "X-Poedit-Language: Persian\n"
18
- "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n"
19
- "X-Poedit-SourceCharset: utf-8\n"
20
 
21
- #: dashboard/browsers.php:12
22
- #: dashboard/browsers.php:33
23
- msgid "Browser"
24
- msgstr "مرورگر"
25
 
26
- #: dashboard/browsers.php:22
27
- #: dashboard/pages.php:43
28
- #: dashboard/screens.php:22
29
- #: dashboard/systems.php:22
30
- msgid "Others"
31
- msgstr "غیره"
32
 
33
- #: dashboard/browsers.php:34
34
- #: dashboard/keywords.php:17
35
- #: dashboard/pages.php:22
36
- #: dashboard/screens.php:33
37
- #: dashboard/systems.php:35
38
- #: dashboard/visitors.php:53
39
- #: dashboard/websites.php:19
40
- #: wp-piwik.php:305
41
- msgid "Unique"
42
- msgstr "یکتا"
43
 
44
- #: dashboard/browsers.php:35
45
- #: dashboard/plugins.php:33
46
- #: dashboard/screens.php:34
47
- #: dashboard/systems.php:36
48
- msgid "Percent"
49
- msgstr "درصد"
50
 
51
- #: dashboard/keywords.php:12
52
- msgid "Keywords"
53
- msgstr "کلمات کلیدی"
54
 
55
- #: dashboard/keywords.php:17
56
- msgid "Keyword"
57
- msgstr "کلمه کلیدی"
58
 
59
- #: dashboard/overview.php:12
60
- msgid "Overview"
61
- msgstr "نمای کلی"
62
 
63
- #: dashboard/overview.php:42
64
- #: dashboard/visitors.php:24
65
- msgid "Visitors"
66
- msgstr "بازدید کنندگان"
67
 
68
- #: dashboard/overview.php:43
69
- msgid "Unique visitors"
70
- msgstr "بازدیدکنندگان یکتا"
71
 
72
- #: dashboard/overview.php:44
73
- msgid "Page views"
74
- msgstr "نمایش صفحه"
75
 
76
- #: dashboard/overview.php:45
77
- msgid "Max. page views in one visit"
78
- msgstr "حداکثر تعداد نمایش صفحه در یک بازدید"
79
 
80
- #: dashboard/overview.php:46
81
- msgid "Total time spent"
82
- msgstr "زمان سپری شده"
83
 
84
- msgid "Time/visit"
85
- msgstr "زمان/بازدید"
 
86
 
87
- #: dashboard/overview.php:47
88
- msgid "Bounce count"
89
- msgstr "تعداد بازگشت"
90
 
91
- #: dashboard/overview.php:49
92
- #: wp-piwik.php:563
93
- msgid "Shortcut"
94
- msgstr "میان‌بر"
95
 
96
- #: dashboard/pages.php:13
97
- msgid "Pages"
98
- msgstr "صفحه"
 
99
 
100
- #: dashboard/pages.php:21
101
- msgid "Page"
102
- msgstr "صفحه"
 
 
 
103
 
104
- #: dashboard/pages.php:23
105
- #: dashboard/plugins.php:32
106
- #: dashboard/visitors.php:52
107
- msgid "Visits"
108
- msgstr "بازدید"
 
109
 
110
- #: dashboard/plugins.php:12
111
- #: dashboard/plugins.php:31
112
- msgid "Plugins"
113
- msgstr "افزونه"
 
 
114
 
115
- #: dashboard/screens.php:12
116
- #: dashboard/screens.php:32
117
- msgid "Resolution"
118
- msgstr "وضوح"
 
 
119
 
120
- #: dashboard/systems.php:12
121
- #: dashboard/systems.php:34
122
- msgid "Operating System"
123
- msgstr "سیستم عامل"
124
 
125
- #: dashboard/visitors.php:51
126
- msgid "Date"
127
- msgstr "تاریخ"
128
 
129
- #: dashboard/visitors.php:54
130
- msgid "Bounced"
131
- msgstr "بازگشت"
132
 
133
- #: dashboard/visitors.php:67
134
- msgid "Unique TOTAL"
135
- msgstr "مجموع یکتا"
136
 
137
- #: dashboard/visitors.php:67
138
- msgid "Sum"
139
- msgstr "مجموع"
140
 
141
- #: dashboard/visitors.php:67
142
- msgid "Avg"
143
- msgstr "میانگین"
 
 
 
 
144
 
145
- #: dashboard/websites.php:12
146
- msgid "Websites"
147
- msgstr "سایت"
148
 
149
- #: dashboard/websites.php:18
150
- msgid "Website"
151
- msgstr "سایت"
152
 
153
- #: wp-piwik.php:110
154
- #: wp-piwik.php:365
155
- msgid "Piwik Statistics"
156
- msgstr "آمارگیر"
157
-
158
- #. #-#-#-#-# plugin.pot (WP-Piwik 0.8.0) #-#-#-#-#
159
- #. Plugin Name of the plugin/theme
160
- #: wp-piwik.php:111
161
- #: wp-piwik.php:122
162
- #: wp-piwik.php:123
163
- #: wp-piwik.php:146
164
- msgid "WP-Piwik"
165
- msgstr "آمار"
166
 
167
- #: wp-piwik.php:130
168
- #: wp-piwik.php:131
169
- msgid "WPMU-Piwik"
170
- msgstr "آمارگیر چندکاربره"
 
171
 
172
- #: wp-piwik.php:142
173
- #: wp-piwik.php:557
174
- msgid "yesterday"
175
- msgstr "دیروز"
176
 
177
- #: wp-piwik.php:143
178
- #: wp-piwik.php:558
179
- msgid "today"
180
- msgstr "امروز"
181
 
182
- #: wp-piwik.php:144
183
- #: wp-piwik.php:559
184
- msgid "last 30 days"
185
- msgstr "30 روز اخیر"
186
 
187
- #: wp-piwik.php:179
188
- msgid "Settings"
189
- msgstr "تنظیمات"
 
 
190
 
191
- #: wp-piwik.php:381
192
- msgid "Change"
193
- msgstr "تغییر"
 
194
 
195
- #: wp-piwik.php:382
196
- msgid "Currently shown stats:"
197
- msgstr "آمار نمایش جاری:"
 
 
 
 
 
 
 
198
 
199
- #: wp-piwik.php:383
200
- msgid "Current shown stats: <strong>Overall</strong>"
201
- msgstr "آمار نمایش جاری: <strong>مجموع</strong>"
 
 
202
 
203
- #: wp-piwik.php:448
204
- msgid "WP-Piwik Settings"
205
- msgstr "تنظیمات آمار"
206
 
207
- #: wp-piwik.php:455
208
- #: wp-piwik.php:617
209
- msgid "Account settings"
210
- msgstr "تنظیمات حساب"
211
 
212
- #: wp-piwik.php:457
213
- #: wp-piwik.php:619
214
  msgid "Piwik URL"
215
  msgstr "آدرس پیویک"
216
 
217
- #: wp-piwik.php:461
218
- #: wp-piwik.php:623
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  msgid "Auth token"
220
  msgstr "نشانه اعتبارسنجی"
221
 
222
- #: wp-piwik.php:467
223
- #: wp-piwik.php:628
224
- msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
225
- msgstr "برای فعال کردن آمار پیویک، لطفاً آدرس نصب پایه پیویک (مانند http://mydomain.com/piwik) و نشانه اعتبارسنجی خود را وارد کنید. شما می‌توانید در بخش API رابط کاربری پیویک، آن را به دست بیاورید. این نشانه چیزی مانند این است:&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
 
226
 
227
- #: wp-piwik.php:477
228
- msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
229
- msgstr "<strong>نکته مهم:</strong> اگر شما وبلاگ را خود میزبانی نکنید، مدیر سایت شما نیز می‌تواند با دسترسی به پایگاه داده نشانه اعتبارسنجی شما را به دست آورد. بنابراین شما نباید هرگز از نشانه اعتبارسنجی با دسترسی بالاتر از نمایش ساده استفاده کنید."
 
230
 
231
- #: wp-piwik.php:485
232
- #: wp-piwik.php:489
233
- msgid "An error occured"
234
- msgstr "خطائی رخ داده است"
 
 
 
 
 
235
 
236
- #: wp-piwik.php:486
237
- msgid "Please check URL and auth token. You need at least view access to one site."
238
- msgstr "لطفاً آدرس نصب پیویک و نشانه اعتبارسنجی را بررسی کنید. شما باید حداقل دسترسی نمایش به یک سایت داشته باشید."
 
 
 
 
 
 
 
239
 
240
- #: wp-piwik.php:492
241
- msgid "Choose site"
242
  msgstr "انتخاب سایت"
243
 
244
- #: wp-piwik.php:511
245
- #: wp-piwik.php:547
246
- #: wp-piwik.php:584
247
- #: wp-piwik.php:658
248
- msgid "Save settings"
249
- msgstr "ذخیره تنظیمات"
250
 
251
- #: wp-piwik.php:515
252
- #: wp-piwik.php:643
253
- msgid "Tracking settings"
254
- msgstr "تنظیمات ره‌گیری"
255
 
256
- #: wp-piwik.php:521
257
- msgid "Add script"
258
- msgstr "افزودن اسکریپت"
 
259
 
260
- #: wp-piwik.php:525
261
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
262
- msgstr "اگر از قالبی استفاده می‌کنید که از wp_footer() بهره می‌گیرد، آن‌گاه افزونه می‌تواند به طور خودکار کد جاوااسکریپت را به وبلاگ شما اضافه کند."
263
 
264
- #: wp-piwik.php:528
265
- msgid "Track 404"
266
- msgstr "ره‌گیری 404 (صفحه یافت نشد)"
267
 
268
- #: wp-piwik.php:532
269
- msgid "If you add the Piwik javascript code by wp_footer(), WP-Piwik can automatically add a 404-category to track 404-page-visits."
270
- msgstr "اگر جاواسکریپت پیویک را با wp_footer() استفاده می‌کنید، آن‌گاه افزونه می‌تواند به طور خودکار دسته 404 را به برای رهگیری بازدیدهای صفحات ناموجود اضافه کند."
271
 
272
- #: wp-piwik.php:536
273
- #: wp-piwik.php:644
274
- msgid "Tracking filter"
275
- msgstr "پالایه ره‌گیری"
276
 
277
- msgid "Choose users by user role you do <strong>not</strong> want to track."
278
- msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> ره‌گیری شوند با توجه به وظیفه انتخاب کنید."
 
279
 
280
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script&quot;-functionality."
281
- msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> ره‌گیری شوند با توجه به وظیفه انتخاب کنید: باید قابلیت &quot;افزودن اسکریپت&quot; فعال باشد."
 
282
 
283
- #: wp-piwik.php:551
284
- msgid "Statistic view settings"
285
- msgstr "تنظیمات نمایش آمار"
286
 
287
- #: wp-piwik.php:554
288
- msgid "Dashboard"
289
- msgstr "پیشخوان"
 
290
 
291
- #: wp-piwik.php:556
292
- msgid "No"
293
- msgstr "خیر"
294
 
295
- #: wp-piwik.php:557
296
- #: wp-piwik.php:558
297
- #: wp-piwik.php:559
298
- msgid "Yes"
299
- msgstr "بله"
300
 
301
- #: wp-piwik.php:562
302
- msgid "Display a dashboard widget to your WordPress dashboard."
303
- msgstr "نمایش یک ویدجت در پیشخوان وردپرس شما."
304
 
305
- #: wp-piwik.php:567
306
- msgid "Display a shortcut to Piwik itself."
307
- msgstr "نمایش یک میان‌بر به پیویک اصلی."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
 
309
- #: wp-piwik.php:568
310
- msgid "Display to"
311
- msgstr "نمایش در"
312
 
313
- #: wp-piwik.php:579
314
  msgid "Choose user roles allowed to see the statistics page."
315
  msgstr "انتخاب کاربرانی که مجازند صفحه آمار ر اببینند."
316
 
317
- #: wp-piwik.php:612
318
- msgid "WPMU-Piwik Settings"
319
- msgstr "تنظیمات پیویک چندکاربره"
320
 
321
- #: wp-piwik.php:636
322
- msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
323
- msgstr " <strong>نکته مهم:</strong> شما باید نشانه‌ای با دسترسی مدیریتی انتخاب کنید. پیویک چندکاربره برای هر وبلاگ، اگر اولی نمایش باشد یا اضافه نشده باشد، یک سایت جدید ایجاد می‌کند. کاربران تنها می‌توانند به آمار خود دسترسی داشته باشند، اما مدیر سایت می‌تواند به همه آمار دسترسی داشته باشد. برای جلوگیری از تعارض، باید یک پیویک نصب شده تمیز بدون هیچ سایت افزوده شده استفاده شود. قالب استفاده شده باید از wp_footer بهره بگیرد، چون پیویک کد جاوااسکریپت را به هر صفحه اضافه می‌کند."
324
 
325
- #: wp-piwik.php:671
326
- msgid "If you like WP-Piwik, you can support its development by a donation:"
327
- msgstr "اگر افزونه پیویک برای وردپرس را دوست دارید، با کمک مالی از آن حمایت کنید:"
328
 
329
- #: wp-piwik.php:687
330
- msgid "My Amazon.de wishlist (German)"
331
- msgstr "مورد علاقه‌های من در آمازون (آلمانی)"
332
 
333
- #. Plugin URI of the plugin/theme
334
- msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
335
- msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
336
 
337
- #. Description of the plugin/theme
338
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
339
- msgstr "آمار پیویک را به منوی پیشخوان و کد پیویک به پانویس وردپرس اضافه می‌کند."
340
 
341
- #. Author of the plugin/theme
342
- msgid "Andr&eacute; Br&auml;kling"
343
- msgstr "آندرکوت بروملینگ"
344
 
345
- #. Author URI of the plugin/theme
346
- msgid "http://www.braekling.de"
347
- msgstr "http://www.braekling.de"
348
 
349
- msgid "Credits"
350
- msgstr "سازندگان"
 
351
 
352
- msgid "Thank you very much for your donation"
353
- msgstr "از شما به خاطر هدایایتان تشکر می‌کنم"
 
 
 
 
354
 
355
- msgid "and all people flattering this"
356
- msgstr "و تمام افرادی که تشکر کردند"
 
 
357
 
358
- msgid "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
359
- msgstr "نمودارها توسط <a href=\"http://www.jqplot.com/\">jqPlot</a> ایجاد شده‌اند, که یک پروژه کدباز است که توسط کریس لئونلو ایجاد شده است. امتحانش کنید (اجازه‌نامه: GPL 2.0 und MIT)"
 
360
 
361
- msgid "Thank you very much"
362
- msgstr "از شما بسیار متشکریم"
 
 
363
 
364
- msgid ", and"
365
- msgstr "، و"
 
 
 
366
 
367
- msgid "for your translation work"
368
- msgstr "برای فعالیت شما در ترجمه"
 
 
369
 
370
- msgid "Thank you very much, all users who send me mails containing criticism, commendation, feature requests and bug reports! You help me to make WP-Piwik much better."
371
- msgstr "از شما بسیار متشکریم، تمام کاربرانی که به من ایمیل زدند، تشکر کردند، و درخواست ویژگی یا گزارش باگ انجام دادند. ش ما کمک کردید که پیویک وردپرس بسیار بهتر شود."
 
 
372
 
373
- msgid "Thank <strong>you</strong> for using my plugin. It is the best commendation if my piece of code is really used!"
374
- msgstr "از <strong>شما</strong> به خاطر استفاده از این افزونه متشکریم. بهترین تقدیر این است که کدی که من نوشتم واقعاً استفاده شود."
 
375
 
376
- msgid "Changes saved"
377
- msgstr "تغییرات ذخیره شد"
 
 
 
 
378
 
379
- msgid "installed"
380
- msgstr "نصب شده"
 
 
381
 
382
- msgid "Next you should connect to Piwik"
383
- msgstr "سپس باید به پیویک متصل شوید"
 
 
 
 
384
 
385
- msgid "Please validate your configuration"
386
- msgstr "لطفاً صحت تنظیمات خود را بررسی کنید"
 
387
 
388
- msgid "Default date"
389
- msgstr "تاریخ پیش‌گزیده"
 
390
 
391
- msgid "Default date shown on statistics page."
392
- msgstr "داده‌های پیش‌گزیده نمایش داده شده در صفحه آمار"
 
 
 
 
 
393
 
394
- msgid "Dashboard data"
395
- msgstr "داده پیشخوان"
 
396
 
397
- msgid "Display an overview widget to your WordPress dashboard."
398
- msgstr "نمایش آمار کلی در پیشخوان وردپرس شما."
 
399
 
400
- msgid "Boad chart"
401
- msgstr "صفحه آمار"
 
 
402
 
403
- msgid "Display a visitor graph widget to your WordPress dashboard."
404
- msgstr "نمایش نمودار بازدید کنندگان در پیشخوان وردپرس شما."
 
405
 
406
- msgid "No data available."
407
- msgstr "داده‌ای در دسترس نیست"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Amin Yazdi <m.aminyazdi@gmail.com>, 2015
4
+ # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
5
+ # André Bräkling, 2015
6
+ # WebNashr <info@webnashr.com>, 2015
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WP-Piwik\n"
10
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
11
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
12
+ "Last-Translator: André Bräkling\n"
13
+ "Language-Team: Persian (Iran) (http://www.transifex.com/piwik/wp-piwik/language/fa_IR/)\n"
14
  "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: fa_IR\n"
18
+ "Plural-Forms: nplurals=1; plural=0;\n"
 
19
 
20
+ #: classes/WP_Piwik.php:203
21
+ #, php-format
22
+ msgid "%s %s installed."
23
+ msgstr " نصب شده"
24
 
25
+ #: classes/WP_Piwik.php:203
26
+ msgid "Next you should connect to Piwik"
27
+ msgstr "سپس باید به پیویک متصل شوید"
 
 
 
28
 
29
+ #: classes/WP_Piwik.php:237
30
+ #, php-format
31
+ msgid "%s updated to %s."
32
+ msgstr "%s. به روز رسانی به %s"
 
 
 
 
 
 
33
 
34
+ #: classes/WP_Piwik.php:237
35
+ msgid "Please validate your configuration"
36
+ msgstr "لطفاً صحت تنظیمات خود را بررسی کنید"
 
 
 
37
 
38
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
39
+ msgid "Settings"
40
+ msgstr "تنظیمات"
41
 
42
+ #: classes/WP_Piwik.php:272
43
+ msgid "Important"
44
+ msgstr "مهم"
45
 
46
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
47
+ msgid "Piwik Statistics"
48
+ msgstr "آمار"
49
 
50
+ #: classes/WP_Piwik.php:499
51
+ msgid "Configure WP-Piwik"
52
+ msgstr ""
 
53
 
54
+ #: classes/WP_Piwik.php:992
55
+ msgid "An error occured"
56
+ msgstr "خطائی رخ داده است"
57
 
58
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
59
+ msgid "Support"
60
+ msgstr "پشتیبانی"
61
 
62
+ #: classes/WP_Piwik.php:1275
63
+ msgid "Cheatin&#8217; uh?"
64
+ msgstr "کلک میزنی،‌ها؟"
65
 
66
+ #: classes/WP_Piwik/Admin/Settings.php:24
67
+ msgid "Reload"
68
+ msgstr "بارگذاری مجدد"
69
 
70
+ #: classes/WP_Piwik/Admin/Settings.php:27
71
+ msgid "Changes saved."
72
+ msgstr "تغییرات ذخیره شد."
73
 
74
+ #: classes/WP_Piwik/Admin/Settings.php:55
75
+ msgid "Thanks for using WP-Piwik!"
76
+ msgstr "بابت استفاده از WP-Piwik از شما ممنونیم!"
77
 
78
+ #: classes/WP_Piwik/Admin/Settings.php:58
79
+ #, php-format
80
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
81
+ msgstr "WP-Piwik %s با موفقیت به Piwik %s متصل شد."
82
 
83
+ #: classes/WP_Piwik/Admin/Settings.php:58
84
+ #, php-format
85
+ msgid "You are running WordPress %s."
86
+ msgstr "شما از وردپرس %s استفاده می کنید."
87
 
88
+ #: classes/WP_Piwik/Admin/Settings.php:58
89
+ #, php-format
90
+ msgid ""
91
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
92
+ "your sites as different websites."
93
+ msgstr ""
94
 
95
+ #: classes/WP_Piwik/Admin/Settings.php:62
96
+ #, php-format
97
+ msgid ""
98
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
99
+ " the &raquo;Connect to Piwik&laquo; section below."
100
+ msgstr ""
101
 
102
+ #: classes/WP_Piwik/Admin/Settings.php:64
103
+ #, php-format
104
+ msgid ""
105
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
106
+ "During connection the following error occured: <br /><code>%s</code>"
107
+ msgstr ""
108
 
109
+ #: classes/WP_Piwik/Admin/Settings.php:67
110
+ #, php-format
111
+ msgid ""
112
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
113
+ "Piwik&laquo; section below."
114
+ msgstr ""
115
 
116
+ #: classes/WP_Piwik/Admin/Settings.php:71
117
+ msgid "Connect to Piwik"
118
+ msgstr "اتصال به پیویک"
 
119
 
120
+ #: classes/WP_Piwik/Admin/Settings.php:76
121
+ msgid "Show Statistics"
122
+ msgstr "آمار"
123
 
124
+ #: classes/WP_Piwik/Admin/Settings.php:80
125
+ msgid "Enable Tracking"
126
+ msgstr "فعال کردن ردگیری"
127
 
128
+ #: classes/WP_Piwik/Admin/Settings.php:85
129
+ msgid "Expert Settings"
130
+ msgstr "تنظیمات حرفه ای"
131
 
132
+ #: classes/WP_Piwik/Admin/Settings.php:93
133
+ msgid "Credits"
134
+ msgstr "دست‌اندرکاران"
135
 
136
+ #: classes/WP_Piwik/Admin/Settings.php:106
137
+ msgid ""
138
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
139
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
140
+ " To use this you will need your own Piwik instance. If you do not already "
141
+ "have a Piwik setup, you have two simple options: use either"
142
+ msgstr ""
143
 
144
+ #: classes/WP_Piwik/Admin/Settings.php:106
145
+ msgid "a self-hosted Piwik"
146
+ msgstr ""
147
 
148
+ #: classes/WP_Piwik/Admin/Settings.php:106
149
+ msgid "or"
150
+ msgstr "یا"
151
 
152
+ #: classes/WP_Piwik/Admin/Settings.php:106
153
+ msgid "a cloud-hosted Piwik by InnoCraft"
154
+ msgstr ""
 
 
 
 
 
 
 
 
 
 
155
 
156
+ #: classes/WP_Piwik/Admin/Settings.php:109
157
+ msgid ""
158
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
159
+ "and not connect to InnoCraft Cloud."
160
+ msgstr ""
161
 
162
+ #: classes/WP_Piwik/Admin/Settings.php:109
163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
164
+ msgid "More information"
165
+ msgstr "اطلاعات بیشتر"
166
 
167
+ #: classes/WP_Piwik/Admin/Settings.php:111
168
+ msgid "You can choose between three connection methods:"
169
+ msgstr "شما می توانید بین سه روش اتصال را انتخاب کنید:"
 
170
 
171
+ #: classes/WP_Piwik/Admin/Settings.php:111
172
+ #: classes/WP_Piwik/Admin/Settings.php:114
173
+ msgid "Self-hosted (HTTP API, default)"
174
+ msgstr "میزبانی خود (اچ تی تی پی API، به طور پیش فرض)"
175
 
176
+ #: classes/WP_Piwik/Admin/Settings.php:111
177
+ msgid ""
178
+ "This is the default option for a self-hosted Piwik and should work for most "
179
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
180
+ msgstr ""
181
 
182
+ #: classes/WP_Piwik/Admin/Settings.php:111
183
+ #: classes/WP_Piwik/Admin/Settings.php:115
184
+ msgid "Self-hosted (PHP API)"
185
+ msgstr "میزبانی خود (API PHP)"
186
 
187
+ #: classes/WP_Piwik/Admin/Settings.php:111
188
+ msgid ""
189
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
190
+ " machine and you know the full server path to your Piwik instance."
191
+ msgstr ""
192
+
193
+ #: classes/WP_Piwik/Admin/Settings.php:111
194
+ #: classes/WP_Piwik/Admin/Settings.php:116
195
+ msgid "Cloud-hosted (InnoCraft Cloud)"
196
+ msgstr ""
197
 
198
+ #: classes/WP_Piwik/Admin/Settings.php:111
199
+ msgid ""
200
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
201
+ "option."
202
+ msgstr ""
203
 
204
+ #: classes/WP_Piwik/Admin/Settings.php:112
205
+ msgid "Piwik Mode"
206
+ msgstr "حالت پیویک"
207
 
208
+ #: classes/WP_Piwik/Admin/Settings.php:113
209
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
210
+ msgstr "غیر فعال کردن پیویک( پلاگاین به پیویک وصل نمیشود)"
 
211
 
212
+ #: classes/WP_Piwik/Admin/Settings.php:119
 
213
  msgid "Piwik URL"
214
  msgstr "آدرس پیویک"
215
 
216
+ #: classes/WP_Piwik/Admin/Settings.php:119
217
+ msgid ""
218
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
219
+ "instance, e.g. http://www.example.com/piwik/."
220
+ msgstr ""
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:120
223
+ msgid "Piwik path"
224
+ msgstr "مسیر پیویک"
225
+
226
+ #: classes/WP_Piwik/Admin/Settings.php:120
227
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
228
+ msgstr "مسیر فایل را وارد کنید به عنوان مثال e.g. /var/www/piwik"
229
+
230
+ #: classes/WP_Piwik/Admin/Settings.php:121
231
+ msgid "Piwik subdomain"
232
+ msgstr ""
233
+
234
+ #: classes/WP_Piwik/Admin/Settings.php:121
235
+ msgid ""
236
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
237
+ "https://SUBDOMAIN.innocraft.cloud."
238
+ msgstr ""
239
+
240
+ #: classes/WP_Piwik/Admin/Settings.php:122
241
  msgid "Auth token"
242
  msgstr "نشانه اعتبارسنجی"
243
 
244
+ #: classes/WP_Piwik/Admin/Settings.php:122
245
+ msgid ""
246
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
247
+ "0a1b2c34d56e78901fa2bc3d45678efa."
248
+ msgstr ""
249
 
250
+ #: classes/WP_Piwik/Admin/Settings.php:122
251
+ #, php-format
252
+ msgid "See %sWP-Piwik FAQ%s."
253
+ msgstr ""
254
 
255
+ #: classes/WP_Piwik/Admin/Settings.php:127
256
+ msgid "Auto config"
257
+ msgstr "تنظیم خودکار"
258
+
259
+ #: classes/WP_Piwik/Admin/Settings.php:127
260
+ msgid ""
261
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
262
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
263
+ msgstr ""
264
 
265
+ #: classes/WP_Piwik/Admin/Settings.php:131
266
+ #, php-format
267
+ msgid ""
268
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
269
+ "/><code>%s</code>"
270
+ msgstr ""
271
+
272
+ #: classes/WP_Piwik/Admin/Settings.php:141
273
+ msgid "Determined site"
274
+ msgstr ""
275
 
276
+ #: classes/WP_Piwik/Admin/Settings.php:146
277
+ msgid "Select site"
278
  msgstr "انتخاب سایت"
279
 
280
+ #: classes/WP_Piwik/Admin/Settings.php:155
281
+ msgid "Piwik default date"
282
+ msgstr "تاریخ پیش‌گزیده پیویک"
 
 
 
283
 
284
+ #: classes/WP_Piwik/Admin/Settings.php:156
285
+ #: classes/WP_Piwik/Admin/Settings.php:170
286
+ msgid "Today"
287
+ msgstr "امروز"
288
 
289
+ #: classes/WP_Piwik/Admin/Settings.php:157
290
+ #: classes/WP_Piwik/Admin/Settings.php:169
291
+ msgid "Yesterday"
292
+ msgstr "دیروز"
293
 
294
+ #: classes/WP_Piwik/Admin/Settings.php:158
295
+ msgid "Current month"
296
+ msgstr "ماه جاری"
297
 
298
+ #: classes/WP_Piwik/Admin/Settings.php:159
299
+ msgid "Last month"
300
+ msgstr "ماه گذشته"
301
 
302
+ #: classes/WP_Piwik/Admin/Settings.php:160
303
+ msgid "Current week"
304
+ msgstr "هفته جاری"
305
 
306
+ #: classes/WP_Piwik/Admin/Settings.php:161
307
+ msgid "Last week"
308
+ msgstr "هفته‌ی گذشته"
 
309
 
310
+ #: classes/WP_Piwik/Admin/Settings.php:162
311
+ msgid "Default date shown on statistics page."
312
+ msgstr "داده‌های پیش‌گزیده نمایش داده شده در صفحه آمار"
313
 
314
+ #: classes/WP_Piwik/Admin/Settings.php:164
315
+ msgid "Show SEO data"
316
+ msgstr ""
317
 
318
+ #: classes/WP_Piwik/Admin/Settings.php:164
319
+ msgid "Display SEO ranking data on statistics page."
320
+ msgstr ""
321
 
322
+ #: classes/WP_Piwik/Admin/Settings.php:164
323
+ #: classes/WP_Piwik/Admin/Settings.php:176
324
+ msgid "Slow!"
325
+ msgstr "کند!"
326
 
327
+ #: classes/WP_Piwik/Admin/Settings.php:165
328
+ msgid "Show e-commerce data"
329
+ msgstr ""
330
 
331
+ #: classes/WP_Piwik/Admin/Settings.php:165
332
+ msgid "Display e-commerce data on statistics page."
333
+ msgstr ""
 
 
334
 
335
+ #: classes/WP_Piwik/Admin/Settings.php:167
336
+ msgid "Dashboard overview"
337
+ msgstr ""
338
 
339
+ #: classes/WP_Piwik/Admin/Settings.php:168
340
+ #: classes/WP_Piwik/Admin/Settings.php:208
341
+ #: classes/WP_Piwik/Admin/Settings.php:210
342
+ #: classes/WP_Piwik/Admin/Settings.php:231
343
+ #: classes/WP_Piwik/Admin/Settings.php:285
344
+ #: classes/WP_Piwik/Admin/Settings.php:340
345
+ msgid "Disabled"
346
+ msgstr "غیرفعال"
347
+
348
+ #: classes/WP_Piwik/Admin/Settings.php:171
349
+ msgid "Last 30 days"
350
+ msgstr "30 روز گذشته"
351
+
352
+ #: classes/WP_Piwik/Admin/Settings.php:172
353
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
354
+ msgstr ""
355
+
356
+ #: classes/WP_Piwik/Admin/Settings.php:174
357
+ msgid "Dashboard graph"
358
+ msgstr ""
359
+
360
+ #: classes/WP_Piwik/Admin/Settings.php:174
361
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
362
+ msgstr ""
363
+
364
+ #: classes/WP_Piwik/Admin/Settings.php:176
365
+ msgid "Dashboard SEO"
366
+ msgstr ""
367
+
368
+ #: classes/WP_Piwik/Admin/Settings.php:176
369
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
370
+ msgstr ""
371
+
372
+ #: classes/WP_Piwik/Admin/Settings.php:178
373
+ msgid "Dashboard e-commerce"
374
+ msgstr ""
375
+
376
+ #: classes/WP_Piwik/Admin/Settings.php:178
377
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
378
+ msgstr ""
379
+
380
+ #: classes/WP_Piwik/Admin/Settings.php:180
381
+ msgid "Show graph on WordPress Toolbar"
382
+ msgstr ""
383
+
384
+ #: classes/WP_Piwik/Admin/Settings.php:180
385
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
386
+ msgstr ""
387
 
388
+ #: classes/WP_Piwik/Admin/Settings.php:182
389
+ msgid "Display stats to"
390
+ msgstr ""
391
 
392
+ #: classes/WP_Piwik/Admin/Settings.php:189
393
  msgid "Choose user roles allowed to see the statistics page."
394
  msgstr "انتخاب کاربرانی که مجازند صفحه آمار ر اببینند."
395
 
396
+ #: classes/WP_Piwik/Admin/Settings.php:191
397
+ msgid "Show per post stats"
398
+ msgstr ""
399
 
400
+ #: classes/WP_Piwik/Admin/Settings.php:191
401
+ msgid "Show stats about single posts at the post edit admin page."
402
+ msgstr ""
403
 
404
+ #: classes/WP_Piwik/Admin/Settings.php:193
405
+ msgid "Piwik shortcut"
406
+ msgstr ""
407
 
408
+ #: classes/WP_Piwik/Admin/Settings.php:193
409
+ msgid "Display a shortcut to Piwik itself."
410
+ msgstr "نمایش یک میان‌بر به پیویک اصلی."
411
 
412
+ #: classes/WP_Piwik/Admin/Settings.php:195
413
+ msgid "WP-Piwik display name"
414
+ msgstr ""
415
 
416
+ #: classes/WP_Piwik/Admin/Settings.php:195
417
+ msgid "Plugin name shown in WordPress."
418
+ msgstr ""
419
 
420
+ #: classes/WP_Piwik/Admin/Settings.php:197
421
+ msgid "Enable shortcodes"
422
+ msgstr ""
423
 
424
+ #: classes/WP_Piwik/Admin/Settings.php:197
425
+ msgid "Enable shortcodes in post or page content."
426
+ msgstr ""
427
 
428
+ #: classes/WP_Piwik/Admin/Settings.php:208
429
+ msgid "You can choose between four tracking code modes:"
430
+ msgstr ""
431
 
432
+ #: classes/WP_Piwik/Admin/Settings.php:208
433
+ msgid ""
434
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
435
+ "tracking code to your template files or you use another plugin to add the "
436
+ "tracking code."
437
+ msgstr ""
438
 
439
+ #: classes/WP_Piwik/Admin/Settings.php:208
440
+ #: classes/WP_Piwik/Admin/Settings.php:211
441
+ msgid "Default tracking"
442
+ msgstr ""
443
 
444
+ #: classes/WP_Piwik/Admin/Settings.php:208
445
+ msgid "WP-Piwik will use Piwik's standard tracking code."
446
+ msgstr ""
447
 
448
+ #: classes/WP_Piwik/Admin/Settings.php:208
449
+ #: classes/WP_Piwik/Admin/Settings.php:212
450
+ msgid "Use js/index.php"
451
+ msgstr ""
452
 
453
+ #: classes/WP_Piwik/Admin/Settings.php:208
454
+ msgid ""
455
+ "You can choose this tracking code, to deliver a minified proxy code and to "
456
+ "avoid using the files called piwik.js or piwik.php."
457
+ msgstr ""
458
 
459
+ #: classes/WP_Piwik/Admin/Settings.php:208
460
+ #, php-format
461
+ msgid "See %sreadme file%s."
462
+ msgstr ""
463
 
464
+ #: classes/WP_Piwik/Admin/Settings.php:208
465
+ #: classes/WP_Piwik/Admin/Settings.php:213
466
+ msgid "Use proxy script"
467
+ msgstr ""
468
 
469
+ #: classes/WP_Piwik/Admin/Settings.php:208
470
+ msgid "Use this tracking code to not reveal the Piwik server URL."
471
+ msgstr ""
472
 
473
+ #: classes/WP_Piwik/Admin/Settings.php:208
474
+ #: classes/WP_Piwik/Admin/Settings.php:228
475
+ #: classes/WP_Piwik/Admin/Settings.php:238
476
+ #, php-format
477
+ msgid "See %sPiwik FAQ%s."
478
+ msgstr ""
479
 
480
+ #: classes/WP_Piwik/Admin/Settings.php:208
481
+ #: classes/WP_Piwik/Admin/Settings.php:214
482
+ msgid "Enter manually"
483
+ msgstr ""
484
 
485
+ #: classes/WP_Piwik/Admin/Settings.php:208
486
+ msgid ""
487
+ "Enter your own tracking code manually. You can choose one of the prior "
488
+ "options, pre-configure your tracking code and switch to manually editing at "
489
+ "last."
490
+ msgstr ""
491
 
492
+ #: classes/WP_Piwik/Admin/Settings.php:208
493
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
494
+ msgstr ""
495
 
496
+ #: classes/WP_Piwik/Admin/Settings.php:209
497
+ msgid "Add tracking code"
498
+ msgstr ""
499
 
500
+ #: classes/WP_Piwik/Admin/Settings.php:217
501
+ msgid "Tracking code"
502
+ msgstr ""
503
+
504
+ #: classes/WP_Piwik/Admin/Settings.php:219
505
+ msgid "JavaScript code position"
506
+ msgstr ""
507
 
508
+ #: classes/WP_Piwik/Admin/Settings.php:220
509
+ msgid "Footer"
510
+ msgstr "پابرگ"
511
 
512
+ #: classes/WP_Piwik/Admin/Settings.php:221
513
+ msgid "Header"
514
+ msgstr "تیتر"
515
 
516
+ #: classes/WP_Piwik/Admin/Settings.php:222
517
+ msgid ""
518
+ "Choose whether the JavaScript code is added to the footer or the header."
519
+ msgstr ""
520
 
521
+ #: classes/WP_Piwik/Admin/Settings.php:224
522
+ msgid "Noscript code"
523
+ msgstr ""
524
 
525
+ #: classes/WP_Piwik/Admin/Settings.php:226
526
+ msgid "Add &lt;noscript&gt;"
527
+ msgstr ""
528
+
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
+ msgid "Adds the &lt;noscript&gt; code to your footer."
531
+ msgstr ""
532
+
533
+ #: classes/WP_Piwik/Admin/Settings.php:226
534
+ #: classes/WP_Piwik/Admin/Settings.php:228
535
+ msgid "Disabled in proxy mode."
536
+ msgstr ""
537
+
538
+ #: classes/WP_Piwik/Admin/Settings.php:228
539
+ msgid "Add rec parameter to noscript code"
540
+ msgstr ""
541
+
542
+ #: classes/WP_Piwik/Admin/Settings.php:228
543
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
544
+ msgstr ""
545
+
546
+ #: classes/WP_Piwik/Admin/Settings.php:230
547
+ msgid "Enable content tracking"
548
+ msgstr ""
549
+
550
+ #: classes/WP_Piwik/Admin/Settings.php:232
551
+ msgid "Track all content blocks"
552
+ msgstr ""
553
+
554
+ #: classes/WP_Piwik/Admin/Settings.php:233
555
+ msgid "Track only visible content blocks"
556
+ msgstr ""
557
+
558
+ #: classes/WP_Piwik/Admin/Settings.php:234
559
+ msgid ""
560
+ "Content tracking allows you to track interaction with the content of a web "
561
+ "page or application."
562
+ msgstr ""
563
+
564
+ #: classes/WP_Piwik/Admin/Settings.php:234
565
+ #: classes/WP_Piwik/Admin/Settings.php:236
566
+ #: classes/WP_Piwik/Admin/Settings.php:245
567
+ #: classes/WP_Piwik/Admin/Settings.php:247
568
+ #: classes/WP_Piwik/Admin/Settings.php:249
569
+ #: classes/WP_Piwik/Admin/Settings.php:270
570
+ #: classes/WP_Piwik/Admin/Settings.php:272
571
+ #: classes/WP_Piwik/Admin/Settings.php:278
572
+ #: classes/WP_Piwik/Admin/Settings.php:343
573
+ #, php-format
574
+ msgid "See %sPiwik documentation%s."
575
+ msgstr ""
576
+
577
+ #: classes/WP_Piwik/Admin/Settings.php:236
578
+ msgid "Track search"
579
+ msgstr ""
580
+
581
+ #: classes/WP_Piwik/Admin/Settings.php:236
582
+ msgid "Use Piwik's advanced Site Search Analytics feature."
583
+ msgstr ""
584
+
585
+ #: classes/WP_Piwik/Admin/Settings.php:238
586
+ msgid "Track 404"
587
+ msgstr "ره‌گیری 404 (صفحه یافت نشد)"
588
+
589
+ #: classes/WP_Piwik/Admin/Settings.php:238
590
+ msgid ""
591
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
592
+ msgstr ""
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:241
595
+ msgid "Add annotation on new post of type"
596
+ msgstr ""
597
+
598
+ #: classes/WP_Piwik/Admin/Settings.php:247
599
+ msgid "Show custom variables box"
600
+ msgstr ""
601
+
602
+ #: classes/WP_Piwik/Admin/Settings.php:247
603
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
604
+ msgstr ""
605
+
606
+ #: classes/WP_Piwik/Admin/Settings.php:249
607
+ msgid "Add new file types for download tracking"
608
+ msgstr ""
609
+
610
+ #: classes/WP_Piwik/Admin/Settings.php:249
611
+ msgid ""
612
+ "Add file extensions for download tracking, divided by a vertical bar "
613
+ "(&#124;)."
614
+ msgstr ""
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:251
617
+ msgid "Disable cookies"
618
+ msgstr "غیرفعال‌سازی کوکی ها"
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:251
621
+ msgid "Disable all tracking cookies for a visitor."
622
+ msgstr ""
623
+
624
+ #: classes/WP_Piwik/Admin/Settings.php:253
625
+ msgid "Limit cookie lifetime"
626
+ msgstr ""
627
+
628
+ #: classes/WP_Piwik/Admin/Settings.php:253
629
+ msgid ""
630
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
631
+ " period as necessary."
632
+ msgstr ""
633
+
634
+ #: classes/WP_Piwik/Admin/Settings.php:255
635
+ msgid "Visitor timeout (seconds)"
636
+ msgstr ""
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:257
639
+ msgid "Session timeout (seconds)"
640
+ msgstr ""
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:259
643
+ msgid "Referral timeout (seconds)"
644
+ msgstr ""
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:261
647
+ msgid "Track admin pages"
648
+ msgstr ""
649
+
650
+ #: classes/WP_Piwik/Admin/Settings.php:261
651
+ msgid ""
652
+ "Enable to track users on admin pages (remember to configure the tracking "
653
+ "filter appropriately)."
654
+ msgstr ""
655
+
656
+ #: classes/WP_Piwik/Admin/Settings.php:264
657
+ msgid "Tracking filter"
658
+ msgstr "پالایه ره‌گیری"
659
+
660
+ #: classes/WP_Piwik/Admin/Settings.php:268
661
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
662
+ msgstr "کاربرانی را که <strong>نمی‌خواهید</strong> رهگیری شوند با توجه به وظیفه انتخاب کنید."
663
+
664
+ #: classes/WP_Piwik/Admin/Settings.php:270
665
+ msgid "Track subdomains in the same website"
666
+ msgstr ""
667
 
668
+ #: classes/WP_Piwik/Admin/Settings.php:270
669
+ msgid "Adds *.-prefix to cookie domain."
670
+ msgstr ""
671
+
672
+ #: classes/WP_Piwik/Admin/Settings.php:272
673
+ msgid "Do not count subdomains as outlink"
674
+ msgstr ""
675
+
676
+ #: classes/WP_Piwik/Admin/Settings.php:272
677
+ msgid "Adds *.-prefix to tracked domain."
678
+ msgstr ""
679
+
680
+ #: classes/WP_Piwik/Admin/Settings.php:274
681
+ msgid "Enable cross domain linking"
682
+ msgstr ""
683
+
684
+ #: classes/WP_Piwik/Admin/Settings.php:274
685
+ msgid ""
686
+ "When enabled, it will make sure to use the same visitor ID for the same "
687
+ "visitor across several domains. This works only when this feature is enabled"
688
+ " because the visitor ID is stored in a cookie and cannot be read on the "
689
+ "other domain by default. When this feature is enabled, it will append a URL "
690
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
691
+ "URL that belongs to one of your domains. For this feature to work, you also "
692
+ "have to configure which domains should be treated as local in your Piwik "
693
+ "website settings. This feature requires Piwik 3.0.2."
694
+ msgstr ""
695
+
696
+ #: classes/WP_Piwik/Admin/Settings.php:276
697
+ msgid "Track RSS feeds"
698
+ msgstr ""
699
+
700
+ #: classes/WP_Piwik/Admin/Settings.php:276
701
+ msgid "Enable to track posts in feeds via tracking pixel."
702
+ msgstr ""
703
+
704
+ #: classes/WP_Piwik/Admin/Settings.php:278
705
+ msgid "Track RSS feed links as campaign"
706
+ msgstr ""
707
+
708
+ #: classes/WP_Piwik/Admin/Settings.php:278
709
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
710
+ msgstr ""
711
+
712
+ #: classes/WP_Piwik/Admin/Settings.php:280
713
+ msgid "RSS feed campaign"
714
+ msgstr ""
715
+
716
+ #: classes/WP_Piwik/Admin/Settings.php:280
717
+ msgid "Keyword: post name."
718
+ msgstr ""
719
+
720
+ #: classes/WP_Piwik/Admin/Settings.php:282
721
+ msgid "Enable heartbeat timer"
722
+ msgstr ""
723
+
724
+ #: classes/WP_Piwik/Admin/Settings.php:282
725
+ msgid ""
726
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
727
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
728
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
729
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
730
+ "HTTP requests on your site."
731
+ msgstr ""
732
+
733
+ #: classes/WP_Piwik/Admin/Settings.php:284
734
+ msgid "User ID Tracking"
735
+ msgstr ""
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:286
738
+ msgid "WP User ID"
739
+ msgstr ""
740
+
741
+ #: classes/WP_Piwik/Admin/Settings.php:287
742
+ msgid "Email Address"
743
+ msgstr ""
744
+
745
+ #: classes/WP_Piwik/Admin/Settings.php:288
746
+ msgid "Username"
747
+ msgstr ""
748
+
749
+ #: classes/WP_Piwik/Admin/Settings.php:289
750
+ msgid "Display Name (Not Recommended!)"
751
+ msgstr ""
752
+
753
+ #: classes/WP_Piwik/Admin/Settings.php:290
754
+ msgid ""
755
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
756
+ "can select which field from the User's profile is tracked as the &quot;User "
757
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
758
+ msgstr ""
759
+
760
+ #: classes/WP_Piwik/Admin/Settings.php:295
761
+ msgid ""
762
+ "Usually, you do not need to change these settings. If you want to do so, you"
763
+ " should know what you do or you got an expert's advice."
764
+ msgstr ""
765
+
766
+ #: classes/WP_Piwik/Admin/Settings.php:297
767
+ msgid "Enable cache"
768
+ msgstr ""
769
+
770
+ #: classes/WP_Piwik/Admin/Settings.php:297
771
+ msgid "Cache API calls, which not contain today's values, for a week."
772
+ msgstr ""
773
+
774
+ #: classes/WP_Piwik/Admin/Settings.php:300
775
+ msgid "HTTP connection via"
776
+ msgstr ""
777
+
778
+ #: classes/WP_Piwik/Admin/Settings.php:301
779
+ #: classes/WP_Piwik/Admin/Settings.php:590
780
+ msgid "cURL"
781
+ msgstr ""
782
+
783
+ #: classes/WP_Piwik/Admin/Settings.php:302
784
+ #: classes/WP_Piwik/Admin/Settings.php:590
785
+ msgid "fopen"
786
+ msgstr ""
787
+
788
+ #: classes/WP_Piwik/Admin/Settings.php:303
789
+ msgid ""
790
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
791
+ " or Cloud mode."
792
+ msgstr ""
793
+
794
+ #: classes/WP_Piwik/Admin/Settings.php:305
795
+ msgid "HTTP method"
796
+ msgstr ""
797
+
798
+ #: classes/WP_Piwik/Admin/Settings.php:306
799
+ #: classes/WP_Piwik/Admin/Settings.php:590
800
+ msgid "POST"
801
+ msgstr "نوشته"
802
+
803
+ #: classes/WP_Piwik/Admin/Settings.php:307
804
+ #: classes/WP_Piwik/Admin/Settings.php:590
805
+ msgid "GET"
806
+ msgstr "دریافت"
807
+
808
+ #: classes/WP_Piwik/Admin/Settings.php:308
809
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
810
+ msgstr ""
811
+
812
+ #: classes/WP_Piwik/Admin/Settings.php:310
813
+ msgid "Disable time limit"
814
+ msgstr "غیرفعال‌سازی محدودیت زمان"
815
+
816
+ #: classes/WP_Piwik/Admin/Settings.php:310
817
+ msgid "Use set_time_limit(0) if stats page causes a time out."
818
+ msgstr ""
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:312
821
+ msgid "Connection timeout"
822
+ msgstr "تماس برقرار نشد"
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:314
825
+ msgid "Disable SSL peer verification"
826
+ msgstr ""
827
+
828
+ #: classes/WP_Piwik/Admin/Settings.php:314
829
+ #: classes/WP_Piwik/Admin/Settings.php:315
830
+ msgid "not recommended"
831
+ msgstr "توصیه نشده"
832
+
833
+ #: classes/WP_Piwik/Admin/Settings.php:315
834
+ msgid "Disable SSL host verification"
835
+ msgstr ""
836
+
837
+ #: classes/WP_Piwik/Admin/Settings.php:317
838
+ msgid "User agent"
839
+ msgstr ""
840
+
841
+ #: classes/WP_Piwik/Admin/Settings.php:318
842
+ msgid "Use the PHP default user agent"
843
+ msgstr ""
844
+
845
+ #: classes/WP_Piwik/Admin/Settings.php:318
846
+ msgid "empty"
847
+ msgstr "واژه خالی"
848
+
849
+ #: classes/WP_Piwik/Admin/Settings.php:319
850
+ msgid "Define a specific user agent"
851
+ msgstr ""
852
+
853
+ #: classes/WP_Piwik/Admin/Settings.php:321
854
+ msgid "Specific user agent"
855
+ msgstr ""
856
+
857
+ #: classes/WP_Piwik/Admin/Settings.php:323
858
+ msgid "Enable DNS prefetch"
859
+ msgstr ""
860
+
861
+ #: classes/WP_Piwik/Admin/Settings.php:323
862
+ #, php-format
863
+ msgid "See %sPiwik Blog%s."
864
+ msgstr ""
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:323
867
+ msgid "Add a DNS prefetch tag. "
868
+ msgstr ""
869
+
870
+ #: classes/WP_Piwik/Admin/Settings.php:325
871
+ msgid "Add data-cfasync=false"
872
+ msgstr ""
873
+
874
+ #: classes/WP_Piwik/Admin/Settings.php:325
875
+ #, php-format
876
+ msgid "See %sCloudFlare Knowledge Base%s."
877
+ msgstr ""
878
+
879
+ #: classes/WP_Piwik/Admin/Settings.php:325
880
+ msgid ""
881
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
882
+ "ignore the script. "
883
+ msgstr ""
884
+
885
+ #: classes/WP_Piwik/Admin/Settings.php:327
886
+ msgid "CDN URL"
887
+ msgstr ""
888
+
889
+ #: classes/WP_Piwik/Admin/Settings.php:329
890
+ msgid "CDN URL (SSL)"
891
+ msgstr ""
892
+
893
+ #: classes/WP_Piwik/Admin/Settings.php:331
894
+ msgid "Force Piwik to use a specific protocol"
895
+ msgstr ""
896
+
897
+ #: classes/WP_Piwik/Admin/Settings.php:332
898
+ msgid "Disabled (default)"
899
+ msgstr "غیرفعال(پیش فرض)"
900
+
901
+ #: classes/WP_Piwik/Admin/Settings.php:333
902
+ msgid "http"
903
+ msgstr ""
904
+
905
+ #: classes/WP_Piwik/Admin/Settings.php:334
906
+ msgid "https (SSL)"
907
+ msgstr ""
908
+
909
+ #: classes/WP_Piwik/Admin/Settings.php:335
910
+ msgid ""
911
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
912
+ "work with a CDN URL."
913
+ msgstr ""
914
+
915
+ #: classes/WP_Piwik/Admin/Settings.php:337
916
+ msgid "Update notice"
917
+ msgstr ""
918
+
919
+ #: classes/WP_Piwik/Admin/Settings.php:338
920
+ msgid "Show always if WP-Piwik is updated"
921
+ msgstr ""
922
+
923
+ #: classes/WP_Piwik/Admin/Settings.php:339
924
+ msgid "Show only if WP-Piwik is updated and settings were changed"
925
+ msgstr ""
926
+
927
+ #: classes/WP_Piwik/Admin/Settings.php:341
928
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
929
+ msgstr ""
930
+
931
+ #: classes/WP_Piwik/Admin/Settings.php:343
932
+ msgid "Define all file types for download tracking"
933
+ msgstr ""
934
+
935
+ #: classes/WP_Piwik/Admin/Settings.php:343
936
+ msgid ""
937
+ "Replace Piwik's default file extensions for download tracking, divided by a "
938
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
939
+ msgstr ""
940
+
941
+ #: classes/WP_Piwik/Admin/Settings.php:345
942
+ msgid "Set classes to be treated as downloads"
943
+ msgstr ""
944
+
945
+ #: classes/WP_Piwik/Admin/Settings.php:345
946
+ msgid ""
947
+ "Set classes to be treated as downloads (in addition to piwik_download), "
948
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
949
+ "settings."
950
+ msgstr ""
951
+
952
+ #: classes/WP_Piwik/Admin/Settings.php:345
953
+ #: classes/WP_Piwik/Admin/Settings.php:347
954
+ #, php-format
955
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
956
+ msgstr ""
957
+
958
+ #: classes/WP_Piwik/Admin/Settings.php:347
959
+ msgid "Set classes to be treated as outlinks"
960
+ msgstr ""
961
+
962
+ #: classes/WP_Piwik/Admin/Settings.php:347
963
+ msgid ""
964
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
965
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
966
+ msgstr ""
967
+
968
+ #: classes/WP_Piwik/Admin/Settings.php:508
969
+ msgid "Donate"
970
+ msgstr "اهداء کردن"
971
+
972
+ #: classes/WP_Piwik/Admin/Settings.php:511
973
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
974
+ msgstr "اگر افزونه پیویک برای وردپرس را دوست دارید، با کمک مالی از آن حمایت کنید:"
975
+
976
+ #: classes/WP_Piwik/Admin/Settings.php:530
977
+ msgid "My Amazon.de wishlist"
978
+ msgstr "لیست علاقه مندی های من در Amazon.de"
979
+
980
+ #: classes/WP_Piwik/Admin/Settings.php:533
981
+ #: classes/WP_Piwik/Admin/Settings.php:575
982
+ msgid "Please don't forget to vote the compatibility at the"
983
+ msgstr ""
984
+
985
+ #: classes/WP_Piwik/Admin/Settings.php:561
986
+ msgid "Thank you very much for your donation"
987
+ msgstr "از شما به خاطر هدایایتان تشکر می‌کنم"
988
+
989
+ #: classes/WP_Piwik/Admin/Settings.php:561
990
+ msgid "the Piwik team itself"
991
+ msgstr "تیم پیویک"
992
+
993
+ #: classes/WP_Piwik/Admin/Settings.php:561
994
+ msgid ", and all people flattering this"
995
+ msgstr ""
996
+
997
+ #: classes/WP_Piwik/Admin/Settings.php:562
998
+ msgid ""
999
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
1000
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
1001
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1002
+ "Sparklines</a> (License: New BSD License)."
1003
+ msgstr ""
1004
+
1005
+ #: classes/WP_Piwik/Admin/Settings.php:563
1006
+ msgid "Thank you very much"
1007
+ msgstr "از شما بسیار متشکریم"
1008
+
1009
+ #: classes/WP_Piwik/Admin/Settings.php:563
1010
+ msgid "for your translation work"
1011
+ msgstr "برای فعالیت شما در ترجمه"
1012
+
1013
+ #: classes/WP_Piwik/Admin/Settings.php:564
1014
+ msgid ""
1015
+ "Thank you very much, all users who send me mails containing criticism, "
1016
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1017
+ " much better."
1018
+ msgstr "از شما بسیار متشکریم، تمام کاربرانی که به من ایمیل زدند، تشکر کردند، و درخواست ویژگی یا گزارش باگ انجام دادند. ش ما کمک کردید که پیویک وردپرس بسیار بهتر شود."
1019
+
1020
+ #: classes/WP_Piwik/Admin/Settings.php:565
1021
+ msgid ""
1022
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1023
+ "if my piece of code is really used!"
1024
+ msgstr "از <strong>شما</strong> به خاطر استفاده از این افزونه متشکریم. بهترین تقدیر این است که کدی که من نوشتم واقعاً استفاده شود."
1025
+
1026
+ #: classes/WP_Piwik/Admin/Settings.php:574
1027
+ msgid "The best place to get help:"
1028
+ msgstr ""
1029
+
1030
+ #: classes/WP_Piwik/Admin/Settings.php:574
1031
+ msgid "WP-Piwik support forum"
1032
+ msgstr ""
1033
+
1034
+ #: classes/WP_Piwik/Admin/Settings.php:577
1035
+ msgid "Debugging"
1036
+ msgstr "اشکال زدایی"
1037
+
1038
+ #: classes/WP_Piwik/Admin/Settings.php:578
1039
+ msgid ""
1040
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1041
+ "available:"
1042
+ msgstr ""
1043
+
1044
+ #: classes/WP_Piwik/Admin/Settings.php:581
1045
+ msgid "cURL is"
1046
+ msgstr ""
1047
+
1048
+ #: classes/WP_Piwik/Admin/Settings.php:582
1049
+ #: classes/WP_Piwik/Admin/Settings.php:587
1050
+ msgid "not"
1051
+ msgstr "نیست"
1052
+
1053
+ #: classes/WP_Piwik/Admin/Settings.php:583
1054
+ msgid "available"
1055
+ msgstr "در دسترس"
1056
+
1057
+ #: classes/WP_Piwik/Admin/Settings.php:586
1058
+ msgid "allow_url_fopen is"
1059
+ msgstr ""
1060
+
1061
+ #: classes/WP_Piwik/Admin/Settings.php:588
1062
+ msgid "enabled"
1063
+ msgstr "فعال"
1064
+
1065
+ #: classes/WP_Piwik/Admin/Settings.php:590
1066
+ msgid "is used."
1067
+ msgstr "استفاده شده"
1068
+
1069
+ #: classes/WP_Piwik/Admin/Settings.php:592
1070
+ msgid "Determined Piwik base URL is"
1071
+ msgstr ""
1072
+
1073
+ #: classes/WP_Piwik/Admin/Settings.php:596
1074
+ msgid "Tools"
1075
+ msgstr "ابزارها"
1076
+
1077
+ #: classes/WP_Piwik/Admin/Settings.php:598
1078
+ msgid "Run testscript"
1079
+ msgstr "اجرای اسکریپت"
1080
+
1081
+ #: classes/WP_Piwik/Admin/Settings.php:599
1082
+ msgid "Sitebrowser"
1083
+ msgstr ""
1084
+
1085
+ #: classes/WP_Piwik/Admin/Settings.php:600
1086
+ msgid "Clear cache"
1087
+ msgstr "پاکسازی کش"
1088
+
1089
+ #: classes/WP_Piwik/Admin/Settings.php:601
1090
+ msgid "Are you sure you want to clear all settings?"
1091
+ msgstr ""
1092
+
1093
+ #: classes/WP_Piwik/Admin/Settings.php:601
1094
+ msgid "Reset WP-Piwik"
1095
+ msgstr ""
1096
+
1097
+ #: classes/WP_Piwik/Admin/Settings.php:603
1098
+ msgid "Latest support threads on WordPress.org"
1099
+ msgstr ""
1100
+
1101
+ #: classes/WP_Piwik/Admin/Settings.php:654
1102
+ msgid "Settings cleared (except connection settings)."
1103
+ msgstr ""
1104
+
1105
+ #: classes/WP_Piwik/Admin/Settings.php:670
1106
+ msgid "Cache cleared."
1107
+ msgstr "کش پاک شد"
1108
+
1109
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1110
+ msgid "site"
1111
+ msgstr "سایت‌"
1112
+
1113
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1114
+ msgid "sites"
1115
+ msgstr "سایت‌ها"
1116
+
1117
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1118
+ msgid "No site configured yet."
1119
+ msgstr "سایت هنوز پیکربندی نشده"
1120
+
1121
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1122
+ msgid "Blog ID"
1123
+ msgstr "شناسه وبلاگ"
1124
+
1125
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1126
+ msgid "Title"
1127
+ msgstr "عنوان"
1128
+
1129
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1130
+ msgid "URL"
1131
+ msgstr "نشانی وب"
1132
+
1133
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1134
+ msgid "Site ID (Piwik)"
1135
+ msgstr "شناسه سایت (پیویک)"
1136
+
1137
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1138
+ msgid "Site not created yet."
1139
+ msgstr "وب سایت هنوزایجاد نشده است."
1140
+
1141
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1142
+ msgid "Statistics"
1143
+ msgstr "آمار"
1144
+
1145
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1146
+ msgid "Currently shown stats:"
1147
+ msgstr "آمار در حال نمایش:"
1148
+
1149
+ #: classes/WP_Piwik/Request/Php.php:27
1150
+ msgid "Could not resolve"
1151
+ msgstr "عملیات ناموفق"
1152
+
1153
+ #: classes/WP_Piwik/Request/Php.php:27
1154
+ msgid "realpath() returns false"
1155
+ msgstr ""
1156
+
1157
+ #: classes/WP_Piwik/Request/Php.php:39
1158
+ msgid "Class Piwik\\FrontController does not exists."
1159
+ msgstr ""
1160
+
1161
+ #: classes/WP_Piwik/Request/Php.php:42
1162
+ msgid "Class Piwik\\API\\Request does not exists."
1163
+ msgstr ""
1164
+
1165
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1166
+ msgid "Piwik Custom Variables"
1167
+ msgstr "متغیر های سفارشی Piwik"
1168
+
1169
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1170
+ msgid "Name"
1171
+ msgstr "نام"
1172
+
1173
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1174
+ msgid "Value"
1175
+ msgstr "مقدار"
1176
+
1177
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1178
+ msgid "Set custom variables for a page view"
1179
+ msgstr ""
1180
+
1181
+ #: classes/WP_Piwik/Widget.php:91
1182
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1183
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1184
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1185
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1186
+ #: classes/WP_Piwik/Widget/Items.php:23
1187
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1188
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1189
+ #: classes/WP_Piwik/Widget/Overview.php:24
1190
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1191
+ #: classes/WP_Piwik/Widget/Screens.php:35
1192
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1193
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1194
+ #: classes/WP_Piwik/Widget/Systems.php:33
1195
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1196
+ msgid "Piwik error"
1197
+ msgstr "خطای پیویک"
1198
+
1199
+ #: classes/WP_Piwik/Widget.php:100
1200
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1201
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1202
+ #: classes/WP_Piwik/Widget/Country.php:39
1203
+ #: classes/WP_Piwik/Widget/Screens.php:37
1204
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1205
+ #: classes/WP_Piwik/Widget/Systems.php:35
1206
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1207
+ msgid "Unique"
1208
+ msgstr "یکتا"
1209
+
1210
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1211
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1212
+ msgid "Visits"
1213
+ msgstr "بازدیدها"
1214
+
1215
+ #: classes/WP_Piwik/Widget.php:104
1216
+ msgid "Hits"
1217
+ msgstr "تعداد بازدید ها"
1218
+
1219
+ #: classes/WP_Piwik/Widget.php:106
1220
+ msgid "Actions"
1221
+ msgstr "کارها"
1222
+
1223
+ #: classes/WP_Piwik/Widget.php:162
1224
+ msgid "No data available."
1225
+ msgstr "داده‌ای در دسترس نیست"
1226
+
1227
+ #: classes/WP_Piwik/Widget.php:243
1228
+ msgid "today"
1229
+ msgstr ""
1230
+
1231
+ #: classes/WP_Piwik/Widget.php:248
1232
+ msgid "current month"
1233
+ msgstr ""
1234
+
1235
+ #: classes/WP_Piwik/Widget.php:253
1236
+ msgid "last month"
1237
+ msgstr ""
1238
+
1239
+ #: classes/WP_Piwik/Widget.php:258
1240
+ msgid "current week"
1241
+ msgstr ""
1242
+
1243
+ #: classes/WP_Piwik/Widget.php:263
1244
+ msgid "last week"
1245
+ msgstr ""
1246
+
1247
+ #: classes/WP_Piwik/Widget.php:268
1248
+ msgid "yesterday"
1249
+ msgstr ""
1250
+
1251
+ #: classes/WP_Piwik/Widget.php:293
1252
+ msgid "week"
1253
+ msgstr "هفته"
1254
+
1255
+ #: classes/WP_Piwik/Widget.php:328
1256
+ msgid "last 30 days"
1257
+ msgstr ""
1258
+
1259
+ #: classes/WP_Piwik/Widget.php:330
1260
+ msgid "last 12 "
1261
+ msgstr ""
1262
+
1263
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1264
+ msgid "Browser Details"
1265
+ msgstr "جزئیات مرورگرها"
1266
+
1267
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1268
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1269
+ msgid "Browser"
1270
+ msgstr "مرورگر"
1271
+
1272
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1273
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1274
+ #: classes/WP_Piwik/Widget/Country.php:39
1275
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1276
+ #: classes/WP_Piwik/Widget/Screens.php:37
1277
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1278
+ #: classes/WP_Piwik/Widget/Systems.php:35
1279
+ msgid "Percent"
1280
+ msgstr "درصد"
1281
+
1282
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1283
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1284
+ #: classes/WP_Piwik/Widget/Country.php:66
1285
+ #: classes/WP_Piwik/Widget/Screens.php:64
1286
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1287
+ #: classes/WP_Piwik/Widget/Systems.php:62
1288
+ msgid "Others"
1289
+ msgstr "غیره"
1290
+
1291
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1292
+ msgid "Browsers"
1293
+ msgstr "مرورگر"
1294
+
1295
+ #: classes/WP_Piwik/Widget/Chart.php:19
1296
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1297
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1298
+ msgid "Visitors"
1299
+ msgstr "بازدیدکنندگان"
1300
+
1301
+ #: classes/WP_Piwik/Widget/Chart.php:71
1302
+ msgid ""
1303
+ "The graph contains the values shown in the table below (visitors / unique / "
1304
+ "bounces). The red line shows a linear trendline (unique)."
1305
+ msgstr ""
1306
+
1307
+ #: classes/WP_Piwik/Widget/Country.php:18
1308
+ msgid "Countries"
1309
+ msgstr ""
1310
+
1311
+ #: classes/WP_Piwik/Widget/Country.php:39
1312
+ msgid "Country"
1313
+ msgstr ""
1314
+
1315
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1316
+ msgid "E-Commerce"
1317
+ msgstr ""
1318
+
1319
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1320
+ msgid "Conversions"
1321
+ msgstr ""
1322
+
1323
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1324
+ msgid "Visits converted"
1325
+ msgstr ""
1326
+
1327
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1328
+ #: classes/WP_Piwik/Widget/Items.php:27
1329
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1330
+ msgid "Revenue"
1331
+ msgstr ""
1332
+
1333
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1334
+ #: classes/WP_Piwik/Widget/Items.php:32
1335
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1336
+ msgid "Conversion rate"
1337
+ msgstr ""
1338
+
1339
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1340
+ msgid "Conversions (new visitor)"
1341
+ msgstr ""
1342
+
1343
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1344
+ msgid "Visits converted (new visitor)"
1345
+ msgstr ""
1346
+
1347
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1348
+ msgid "Revenue (new visitor)"
1349
+ msgstr ""
1350
+
1351
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1352
+ msgid "Conversion rate (new visitor)"
1353
+ msgstr ""
1354
+
1355
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1356
+ msgid "Conversions (returning visitor)"
1357
+ msgstr ""
1358
+
1359
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1360
+ msgid "Visits converted (returning visitor)"
1361
+ msgstr ""
1362
+
1363
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1364
+ msgid "Revenue (returning visitor)"
1365
+ msgstr ""
1366
+
1367
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1368
+ msgid "Conversion rate (returning visitor)"
1369
+ msgstr ""
1370
+
1371
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1372
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1373
+ msgid "Shortcut"
1374
+ msgstr "میان‌بر"
1375
+
1376
+ #: classes/WP_Piwik/Widget/Items.php:11
1377
+ msgid "E-Commerce Items"
1378
+ msgstr ""
1379
+
1380
+ #: classes/WP_Piwik/Widget/Items.php:26
1381
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1382
+ msgid "Label"
1383
+ msgstr ""
1384
+
1385
+ #: classes/WP_Piwik/Widget/Items.php:28
1386
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1387
+ msgid "Quantity"
1388
+ msgstr ""
1389
+
1390
+ #: classes/WP_Piwik/Widget/Items.php:29
1391
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1392
+ msgid "Orders"
1393
+ msgstr ""
1394
+
1395
+ #: classes/WP_Piwik/Widget/Items.php:30
1396
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1397
+ msgid "Avg. price"
1398
+ msgstr ""
1399
+
1400
+ #: classes/WP_Piwik/Widget/Items.php:31
1401
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1402
+ msgid "Avg. quantity"
1403
+ msgstr ""
1404
+
1405
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1406
+ msgid "E-Commerce Item Categories"
1407
+ msgstr ""
1408
+
1409
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1410
+ msgid "Keywords"
1411
+ msgstr "کلیدواژه‌ها"
1412
+
1413
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1414
+ #: classes/WP_Piwik/Widget/Search.php:16
1415
+ msgid "Site Search"
1416
+ msgstr "جستجو در سایت"
1417
+
1418
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1419
+ #: classes/WP_Piwik/Widget/Search.php:25
1420
+ msgid "Keyword"
1421
+ msgstr "کلیدواژه"
1422
+
1423
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1424
+ #: classes/WP_Piwik/Widget/Search.php:25
1425
+ msgid "Requests"
1426
+ msgstr "تعداد"
1427
+
1428
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1429
+ #: classes/WP_Piwik/Widget/Search.php:25
1430
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1431
+ msgid "Bounced"
1432
+ msgstr "بازگشت"
1433
+
1434
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1435
+ msgid "Overview"
1436
+ msgstr "نمای کلی"
1437
+
1438
+ #: classes/WP_Piwik/Widget/Overview.php:17
1439
+ msgid "dashboard"
1440
+ msgstr ""
1441
+
1442
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1443
+ msgid "Unique visitors"
1444
+ msgstr "بازدیدکنندگان یکتا"
1445
+
1446
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1447
+ msgid "Page views"
1448
+ msgstr "نمایش‌های صفحه"
1449
+
1450
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1451
+ msgid "Total time spent"
1452
+ msgstr "کل زمان سپری شده"
1453
+
1454
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1455
+ msgid "Bounce count"
1456
+ msgstr "تعداد بازگشت"
1457
+
1458
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1459
+ msgid "Time/visit"
1460
+ msgstr "زمان/بازدید"
1461
+
1462
+ #: classes/WP_Piwik/Widget/Overview.php:57
1463
+ msgid "Max. page views in one visit"
1464
+ msgstr "حداکثر تعداد نمایش‌های صفحه در یک بازدید"
1465
+
1466
+ #: classes/WP_Piwik/Widget/Pages.php:16
1467
+ msgid "Pages"
1468
+ msgstr "برگه‌ها "
1469
+
1470
+ #: classes/WP_Piwik/Widget/Pages.php:18
1471
+ msgid "Page"
1472
+ msgstr ""
1473
+
1474
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1475
+ msgid "Plugins"
1476
+ msgstr "افزونه‌ها"
1477
+
1478
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1479
+ msgid "Plugin"
1480
+ msgstr "افزونه"
1481
+
1482
+ #: classes/WP_Piwik/Widget/Post.php:43
1483
+ msgid "Min. generation time"
1484
+ msgstr "حداقل زمان ایجاد "
1485
+
1486
+ #: classes/WP_Piwik/Widget/Post.php:44
1487
+ msgid "Max. generation time"
1488
+ msgstr "حداکثر زمان ایجاد ."
1489
+
1490
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1491
+ msgid "Referrers"
1492
+ msgstr "ارجاع‌دهنده‌ها"
1493
+
1494
+ #: classes/WP_Piwik/Widget/Screens.php:16
1495
+ msgid "Resolutions"
1496
+ msgstr "وضوح تصویر"
1497
+
1498
+ #: classes/WP_Piwik/Widget/Screens.php:37
1499
+ msgid "Resolution"
1500
+ msgstr "وضوح تصویر"
1501
+
1502
+ #: classes/WP_Piwik/Widget/Seo.php:13
1503
+ msgid "SEO"
1504
+ msgstr "SEO"
1505
+
1506
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1507
+ msgid "Operation System Details"
1508
+ msgstr "جزئیات سیستم عامل"
1509
+
1510
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1511
+ #: classes/WP_Piwik/Widget/Systems.php:35
1512
+ msgid "Operation System"
1513
+ msgstr "سیستم عامل"
1514
+
1515
+ #: classes/WP_Piwik/Widget/Systems.php:14
1516
+ msgid "Operation Systems"
1517
+ msgstr "سیستم عامل‌ها"
1518
+
1519
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1520
+ msgid "Date"
1521
+ msgstr "تاریخ"
1522
+
1523
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1524
+ msgid "Page Views"
1525
+ msgstr "تعداد نمایش صفحه"
1526
+
1527
+ #: wp-piwik.php:60
1528
+ #, php-format
1529
+ msgid ""
1530
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1531
+ " Please update PHP to use WP-Piwik."
1532
+ msgstr ""
languages/wp-piwik-fr_FR.mo CHANGED
Binary file
languages/wp-piwik-fr_FR.po CHANGED
@@ -1,258 +1,1532 @@
1
- # WP-Piwik 0.3.0 - French language file
2
- # Copyright (C) 2009 Andre Braekling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- # Andre Braekling <webmaster@braekling.de>, 2009.
5
- #
6
- msgid ""
7
- msgstr ""
8
- "Project-Id-Version: \n"
9
- "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: \n"
11
- "PO-Revision-Date: 2010-04-28 15:44+0100\n"
12
- "Last-Translator: fuburize <fuburize@gmail.com>\n"
13
- "Language-Team: \n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
 
 
17
 
18
- #: dashboard/browsers.php:8
19
- #: dashboard/browsers.php:37
20
- msgid "Browser"
21
- msgstr "Navigateur"
22
 
23
- msgid "Others"
24
- msgstr "Autres"
 
25
 
26
- msgid "Resolution"
27
- msgstr "Résolution"
 
 
28
 
29
- msgid "Operating System"
30
- msgstr "Système d'exploitation"
 
31
 
32
- msgid "Shortcut"
33
- msgstr "Raccourci"
 
34
 
35
- msgid "Advertisement"
36
- msgstr "Publicité"
 
37
 
38
- msgid "Looking for premium themes? Visit "
39
- msgstr "Vous cherchez des Premium-Themes ? Visitez "
 
40
 
41
- msgid "Avg"
42
- msgstr "Moyenne"
 
43
 
44
- msgid "Sum"
45
- msgstr "Somme"
 
46
 
47
- msgid "Unique TOTAL"
48
- msgstr "Unique TOTAL"
 
49
 
50
- #: dashboard/browsers.php:37
51
- #: dashboard/keywords.php:13
52
- #: dashboard/visitors.php:56
53
- #: dashboard/websites.php:13
54
- msgid "Unique"
55
- msgstr "Unique"
56
 
57
- #: dashboard/browsers.php:37
58
- msgid "Percent"
59
- msgstr "Pourcentage"
60
 
61
- #: dashboard/keywords.php:8
62
- msgid "Keywords"
63
- msgstr "Mots Clés"
64
 
65
- #: dashboard/keywords.php:13
66
- msgid "Keyword"
67
- msgstr "Mots clés"
68
 
69
- #: dashboard/overview.php:8
70
- msgid "Overview"
71
- msgstr "Vue d'ensemble"
 
72
 
73
- #: dashboard/overview.php:16
74
- #: dashboard/visitors.php:21
75
- msgid "Visitors"
76
- msgstr "Visiteurs"
77
 
78
- #: dashboard/overview.php:17
79
- msgid "Unique visitors"
80
- msgstr "Visiteurs uniques"
 
 
 
81
 
82
- #: dashboard/overview.php:18
83
- msgid "Page views"
84
- msgstr "Pages vues"
 
 
 
85
 
86
- #: dashboard/overview.php:19
87
- msgid "Max. page views in one visit"
88
- msgstr "Pages vues max.par visite"
 
 
 
89
 
90
- #: dashboard/overview.php:20
91
- msgid "Total time spent by visitors"
92
- msgstr "Temps total passé par les visiteurs"
 
 
 
93
 
94
- #: dashboard/overview.php:21
95
- msgid "Bounce count"
96
- msgstr "Nombre de sauts"
97
 
98
- #: dashboard/visitors.php:56
99
- msgid "Date"
100
- msgstr "Date"
101
 
102
- #: dashboard/visitors.php:56
103
- msgid "Visits"
104
- msgstr "Visites"
105
 
106
- #: dashboard/visitors.php:56
107
- msgid "Bounced"
108
- msgstr "Rebonds"
109
 
110
- #: dashboard/websites.php:8
111
- msgid "Websites"
112
- msgstr "Sites web"
113
 
114
- #: dashboard/websites.php:13
115
- msgid "Website"
116
- msgstr "Site web"
 
 
 
 
 
 
 
 
117
 
118
- #: wp-piwik.php:49
119
- #: wp-piwik.php:147
120
- msgid "Piwik Statistics"
121
- msgstr "Statistiques Piwik"
122
 
123
- #. #-#-#-#-# plugin.pot (PACKAGE VERSION) #-#-#-#-#
124
- #. Plugin Name of an extension
125
- #: wp-piwik.php:49
126
- msgid "WP-Piwik"
127
- msgstr "WP-Piwik"
128
 
129
- #: wp-piwik.php:53
130
- #: wp-piwik.php:185
131
- msgid "WP-Piwik Settings"
132
- msgstr "Paramètres WP-Piwik"
 
133
 
134
- #: wp-piwik.php:59
135
- msgid "Settings"
136
- msgstr "Paramètres"
 
 
 
 
 
137
 
138
- #: wp-piwik.php:112
139
- msgid "Remote access to Piwik not possible. Enable allow_url_fopen or CURL."
140
- msgstr "Accès à distance à Piwik impossible. Activez allow_url_fopen ou CURL."
 
141
 
142
- #: wp-piwik.php:190
143
- msgid "Account settings"
144
- msgstr "Paramètres du compte"
 
 
145
 
146
- #: wp-piwik.php:192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
  msgid "Piwik URL"
148
  msgstr "Piwik URL"
149
 
150
- #: wp-piwik.php:196
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
  msgid "Auth token"
152
- msgstr "Auth Token"
153
 
154
- #: wp-piwik.php:200
155
- msgid "To enable Piwik statistics, please enter your Piwik base URL (like http://mydomain.com/piwik) and your personal authentification token. You can get the token on the API page inside your Piwik interface. It looks like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
156
- msgstr "Pour activer les statistiques Piwik, saisissez l'url du dossier d'installation de Piwik (comme http://mydomain.com/piwik) ainsi que votre Auth Token. Vous pouvez obtenir votre Auth Token sur la page API de votre interface de Piwik. Il ressemble à \"1234a5cd6789e0a12345b678cd9012ef\"."
 
 
157
 
158
- #: wp-piwik.php:205
159
- #: wp-piwik.php:207
160
- msgid "An error occured"
161
- msgstr "Une erreur s'est produite"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
 
163
- #: wp-piwik.php:205
164
- msgid "Please check URL and auth token. You need at least view access to one site."
165
- msgstr "Vérifiez l'URL et Auth Token. Vous devez posséder les droits d'accès sur au moins un site."
 
166
 
167
- #: wp-piwik:php:215
168
- msgid "Choose site"
169
- msgstr "Choisissez un site"
 
170
 
171
- #: wp-piwik.php:221
172
- msgid "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik javascript code to your blog."
173
- msgstr "Si votre thème utilise wp_footer(), WP-Piwik peut ajouter automatiquement le code javascript Piwik à votre blog."
174
 
175
- #: wp-piwik.php:226
176
- msgid "Add script to wp_footer()"
177
- msgstr "Ajouter le script à wp_footer()"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
178
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
179
  msgid "Tracking filter"
180
  msgstr "Filtre de suivi"
181
 
182
- msgid "Choose users by user role you do <strong>not</strong> want to track. Requires enabled &quot;Add script to wp_footer()&quot;-functionality."
183
- msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi. Requiert l'activation de la fonction &quot;Ajouter le script à wp_footer()&quot;"
184
-
185
  msgid "Choose users by user role you do <strong>not</strong> want to track."
186
  msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
187
 
188
- msgid "Display statistics to"
189
- msgstr "Affichez les statistiques aux"
 
190
 
191
- msgid "or above"
192
- msgstr "ou rôle supérieur"
 
193
 
194
- msgid "Minimum user level required to display statistics page."
195
- msgstr "Niveau de rôle minimum requis pour afficher les statistiques."
 
196
 
197
- #: wp-piwik.php:229
198
- msgid "Save settings"
199
- msgstr "Sauvegarder les changements"
200
 
201
- msgid "Currently shown stats:"
202
- msgstr "Stats affichées actuellement : "
 
203
 
204
- msgid "Change"
205
- msgstr "Changer"
 
 
 
 
 
 
 
 
 
206
 
207
- msgid "WPMU-Piwik Settings"
208
- msgstr "Paramètres WPMU-Piwik"
 
209
 
210
- msgid "<strong>Important note:</strong> You have to choose a token which provides administration access. WPMU-Piwik will create new Piwik sites for each blog if it is shown the first time and it is not added yet. All users can access their own statistics only, while site admins can access all statistics. To avoid conflicts, you should use a clean Piwik installation without other sites added. The provided themes should use wp_footer, because it adds the Piwik javascript code to each page."
211
- msgstr "<strong>Note importante :</strong> Vous devez choisir un Auth Token avec droits d'accès à l'administration. WPMU-Piwik créera un nouveau Piwik Site pour chaque blog qui n'a pas encore été ajouté lors du 1er affichage. Chaque utilisateur ne peut accéder qu'à ses propres stats tandis qu'un administrateur peut accéder à toutes les stats. Pour éviter tout conflit, il est recommandé d'utiliser une installation propre de Piwik sans aucun autre site ajouté. Les thèmes utilisés doivent utiliser le wp_footer afin de permettre l'inclusion du code javascript Piwik sur chaque page."
 
212
 
213
- msgid "<strong>Important note:</strong> If you do not host this blog on your own, your site admin is able to get your auth token from the database. So he is able to access your statistics. You should never use an auth token with more than simple view access!"
214
- msgstr "<strong>Note importante :</strong> Si vous n'hébergez pas vous même ce blog, l'administrateur de votre site peut obtenir votre Auth Token depuis la base de données. Il est donc en mesure de consulter vos statistiques. Il est recommandé d'utiliser un Auth Token ne permettant qu'un visionnage simple."
 
215
 
216
- msgid "WP-Piwik uses the Google Chart API to create graphs. To avoid this, just check this box."
217
- msgstr "WP-Piwik utilise la Google Chart API pour générer les graphiques. Si vous ne le souhaitez pas, cochez cette case."
 
218
 
219
- msgid "Disable Google Chart API"
220
- msgstr "Désactiver Google Chart API"
 
221
 
222
- #. Plugin URI of an extension
223
- msgid "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
224
- msgstr "http://dev.braekling.de/wordpress-plugins/dev/wp-piwik/index.html"
225
 
226
- #. Description of an extension
227
- msgid "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress footer."
228
- msgstr "Ajoute des statistiques Piwik au menu de votre Tableau de bord et le code Piwik au footer de votre wordpress."
229
 
230
- #. Author of an extension
231
- msgid "Andr&eacute; Br&auml;kling"
232
- msgstr "Andr&eacute; Br&auml;kling"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
 
234
- #. Author URI of an extension
235
- msgid "http://www.braekling.de"
236
- msgstr "http://www.braekling.de"
237
 
238
- msgid "last 30 days"
239
- msgstr "derniers 30 jours"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "today"
242
  msgstr "aujourd'hui"
243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "yesterday"
245
  msgstr "hier"
246
 
247
- msgid "No"
248
- msgstr "Non"
 
249
 
250
- msgid "Yes"
251
- msgstr "Oui"
 
252
 
253
- msgid "Show overview on WordPress dashboard"
254
- msgstr "Montrer une vue d'ensemble sur le Tableau de bord de wordpress"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
- msgid "Show Piwik link in overview"
257
- msgstr "Afficher un lien vers Piwik dans la vue d'ensemble"
 
258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andre Braekling <webmaster@braekling.de>, 2009
4
+ # André Bräkling, 2015
5
+ # Franck, 2015-2016
6
+ # Vincent Biret <vincentbiret@hotmail.com>, 2015
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WP-Piwik\n"
10
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
11
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
12
+ "Last-Translator: André Bräkling\n"
13
+ "Language-Team: French (France) (http://www.transifex.com/piwik/wp-piwik/language/fr_FR/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: fr_FR\n"
18
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
19
 
20
+ #: classes/WP_Piwik.php:203
21
+ #, php-format
22
+ msgid "%s %s installed."
23
+ msgstr "%s %s installé."
24
 
25
+ #: classes/WP_Piwik.php:203
26
+ msgid "Next you should connect to Piwik"
27
+ msgstr "Ensuite, vous devez vous connecter à Piwik"
28
 
29
+ #: classes/WP_Piwik.php:237
30
+ #, php-format
31
+ msgid "%s updated to %s."
32
+ msgstr "%s mis à jour vers %s."
33
 
34
+ #: classes/WP_Piwik.php:237
35
+ msgid "Please validate your configuration"
36
+ msgstr "Merci de valider votre configuration"
37
 
38
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
39
+ msgid "Settings"
40
+ msgstr "Paramètres"
41
 
42
+ #: classes/WP_Piwik.php:272
43
+ msgid "Important"
44
+ msgstr "Important"
45
 
46
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
47
+ msgid "Piwik Statistics"
48
+ msgstr "Statistiques Piwik"
49
 
50
+ #: classes/WP_Piwik.php:499
51
+ msgid "Configure WP-Piwik"
52
+ msgstr "Paramétrer WP-Piwik"
53
 
54
+ #: classes/WP_Piwik.php:992
55
+ msgid "An error occured"
56
+ msgstr "Une erreur s'est produite"
57
 
58
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
59
+ msgid "Support"
60
+ msgstr "Support"
61
 
62
+ #: classes/WP_Piwik.php:1275
63
+ msgid "Cheatin&#8217; uh?"
64
+ msgstr "Alors, on triche&nbsp;?"
 
 
 
65
 
66
+ #: classes/WP_Piwik/Admin/Settings.php:24
67
+ msgid "Reload"
68
+ msgstr "Recharger"
69
 
70
+ #: classes/WP_Piwik/Admin/Settings.php:27
71
+ msgid "Changes saved."
72
+ msgstr "Modifications enregistrées."
73
 
74
+ #: classes/WP_Piwik/Admin/Settings.php:55
75
+ msgid "Thanks for using WP-Piwik!"
76
+ msgstr "Merci d'utiliser WP-Piwik&nbsp;!"
77
 
78
+ #: classes/WP_Piwik/Admin/Settings.php:58
79
+ #, php-format
80
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
81
+ msgstr "WP-Piwik %s est connecté avec succès à Piwik %s."
82
 
83
+ #: classes/WP_Piwik/Admin/Settings.php:58
84
+ #, php-format
85
+ msgid "You are running WordPress %s."
86
+ msgstr "Vous utilisez WordPress %s."
87
 
88
+ #: classes/WP_Piwik/Admin/Settings.php:58
89
+ #, php-format
90
+ msgid ""
91
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
92
+ "your sites as different websites."
93
+ msgstr "Vous utilisez le réseau de blogs (WPMU) d'un WordPress %s . WP-Piwik va gérer vos sites comme des sites distincts."
94
 
95
+ #: classes/WP_Piwik/Admin/Settings.php:62
96
+ #, php-format
97
+ msgid ""
98
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
99
+ " the &raquo;Connect to Piwik&laquo; section below."
100
+ msgstr "WP-Piwik %s n'a pas pu se connecter à Piwik à partir de votre configuration. Vérifiez la section ci-dessous &raquo;Connecter à Piwik&laquo;."
101
 
102
+ #: classes/WP_Piwik/Admin/Settings.php:64
103
+ #, php-format
104
+ msgid ""
105
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
106
+ "During connection the following error occured: <br /><code>%s</code>"
107
+ msgstr "WP-Piwik %s n'a pas pu se connecter à Piwik à partir de votre configuration. L'erreur suivante est apparue au cours de la connexion&nbsp;: <br /><code>%s</code>"
108
 
109
+ #: classes/WP_Piwik/Admin/Settings.php:67
110
+ #, php-format
111
+ msgid ""
112
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
113
+ "Piwik&laquo; section below."
114
+ msgstr "WP-Piwik %s doit en premier être connecté à Piwik. Vérifiez la section ci-dessous &raquo;&nbsp;Connecter à Piwik&nbsp;&laquo; à Piwik&laquo;."
115
 
116
+ #: classes/WP_Piwik/Admin/Settings.php:71
117
+ msgid "Connect to Piwik"
118
+ msgstr "Connecter à Piwik"
119
 
120
+ #: classes/WP_Piwik/Admin/Settings.php:76
121
+ msgid "Show Statistics"
122
+ msgstr "Afficher les statistiques"
123
 
124
+ #: classes/WP_Piwik/Admin/Settings.php:80
125
+ msgid "Enable Tracking"
126
+ msgstr "Activer le suivi"
127
 
128
+ #: classes/WP_Piwik/Admin/Settings.php:85
129
+ msgid "Expert Settings"
130
+ msgstr "Réglages expert"
131
 
132
+ #: classes/WP_Piwik/Admin/Settings.php:93
133
+ msgid "Credits"
134
+ msgstr "Crédits"
135
 
136
+ #: classes/WP_Piwik/Admin/Settings.php:106
137
+ msgid ""
138
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
139
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
140
+ " To use this you will need your own Piwik instance. If you do not already "
141
+ "have a Piwik setup, you have two simple options: use either"
142
+ msgstr "WP-Piwik est une extension WordPress pour afficher une sélection de stats Piwik dans votre tableau de bord d'admin WordPress et pour ajouter et configurer votre code de suivi Piwik. Pour utiliser cela, vous aurez besoin de votre propre instance Piwik. Si vous ne possédez pas encore de configuration Piwik, vous avez deux options simples&nbsp;: utilisez au choix"
143
+
144
+ #: classes/WP_Piwik/Admin/Settings.php:106
145
+ msgid "a self-hosted Piwik"
146
+ msgstr ""
147
 
148
+ #: classes/WP_Piwik/Admin/Settings.php:106
149
+ msgid "or"
150
+ msgstr "ou"
 
151
 
152
+ #: classes/WP_Piwik/Admin/Settings.php:106
153
+ msgid "a cloud-hosted Piwik by InnoCraft"
154
+ msgstr ""
 
 
155
 
156
+ #: classes/WP_Piwik/Admin/Settings.php:109
157
+ msgid ""
158
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
159
+ "and not connect to InnoCraft Cloud."
160
+ msgstr ""
161
 
162
+ #: classes/WP_Piwik/Admin/Settings.php:109
163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
164
+ msgid "More information"
165
+ msgstr "Plus d'informations"
166
+
167
+ #: classes/WP_Piwik/Admin/Settings.php:111
168
+ msgid "You can choose between three connection methods:"
169
+ msgstr "Vous pouvez choisir entre trois méthodes de connexion&nbsp;:"
170
 
171
+ #: classes/WP_Piwik/Admin/Settings.php:111
172
+ #: classes/WP_Piwik/Admin/Settings.php:114
173
+ msgid "Self-hosted (HTTP API, default)"
174
+ msgstr "Auto-hébergé (API HTTP par défaut)"
175
 
176
+ #: classes/WP_Piwik/Admin/Settings.php:111
177
+ msgid ""
178
+ "This is the default option for a self-hosted Piwik and should work for most "
179
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
180
+ msgstr "C'est l'option par défaut pour un Piwik auto-hébergé et devrait fonctionner pour la plupart des configurations. WP-Piwik va se connecter à Piwik en utilisant http(s)."
181
 
182
+ #: classes/WP_Piwik/Admin/Settings.php:111
183
+ #: classes/WP_Piwik/Admin/Settings.php:115
184
+ msgid "Self-hosted (PHP API)"
185
+ msgstr "Auto-hébergé (API PHP)"
186
+
187
+ #: classes/WP_Piwik/Admin/Settings.php:111
188
+ msgid ""
189
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
190
+ " machine and you know the full server path to your Piwik instance."
191
+ msgstr "Choisissez cela, si votre Piwik auto-hébergé et WordPress fonctionnent sur la même machine et que vous connaissez le chemin complet du serveur de votre instance Piwik."
192
+
193
+ #: classes/WP_Piwik/Admin/Settings.php:111
194
+ #: classes/WP_Piwik/Admin/Settings.php:116
195
+ msgid "Cloud-hosted (InnoCraft Cloud)"
196
+ msgstr ""
197
+
198
+ #: classes/WP_Piwik/Admin/Settings.php:111
199
+ msgid ""
200
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
201
+ "option."
202
+ msgstr ""
203
+
204
+ #: classes/WP_Piwik/Admin/Settings.php:112
205
+ msgid "Piwik Mode"
206
+ msgstr "Mode Piwik"
207
+
208
+ #: classes/WP_Piwik/Admin/Settings.php:113
209
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
210
+ msgstr "Désactivé (WP-Piwik ne se connectera pas à Piwik)"
211
+
212
+ #: classes/WP_Piwik/Admin/Settings.php:119
213
  msgid "Piwik URL"
214
  msgstr "Piwik URL"
215
 
216
+ #: classes/WP_Piwik/Admin/Settings.php:119
217
+ msgid ""
218
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
219
+ "instance, e.g. http://www.example.com/piwik/."
220
+ msgstr "Entrez votre URL Piwik. C'est la même URL que vous utilisez pour accéder à votre instance de Piwik, par exemple, http://www.example.com/piwik/."
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:120
223
+ msgid "Piwik path"
224
+ msgstr "Chemin Piwik"
225
+
226
+ #: classes/WP_Piwik/Admin/Settings.php:120
227
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
228
+ msgstr "Entrez le chemin de votre instance Piwik, par exemple /var/www/piwik/."
229
+
230
+ #: classes/WP_Piwik/Admin/Settings.php:121
231
+ msgid "Piwik subdomain"
232
+ msgstr ""
233
+
234
+ #: classes/WP_Piwik/Admin/Settings.php:121
235
+ msgid ""
236
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
237
+ "https://SUBDOMAIN.innocraft.cloud."
238
+ msgstr ""
239
+
240
+ #: classes/WP_Piwik/Admin/Settings.php:122
241
  msgid "Auth token"
242
+ msgstr "Clef partagée (token_auth)"
243
 
244
+ #: classes/WP_Piwik/Admin/Settings.php:122
245
+ msgid ""
246
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
247
+ "0a1b2c34d56e78901fa2bc3d45678efa."
248
+ msgstr "Entrez votre clef partagée (token_auth) Piwik ici. C'est un code alphanumérique du genre 0a1b2c34d56e78901fa2bc3d45678efa."
249
 
250
+ #: classes/WP_Piwik/Admin/Settings.php:122
251
+ #, php-format
252
+ msgid "See %sWP-Piwik FAQ%s."
253
+ msgstr "Voir la %sFAQ WP-Piwik%s."
254
+
255
+ #: classes/WP_Piwik/Admin/Settings.php:127
256
+ msgid "Auto config"
257
+ msgstr "Auto config"
258
+
259
+ #: classes/WP_Piwik/Admin/Settings.php:127
260
+ msgid ""
261
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
262
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
263
+ msgstr "Cochez cette case pour choisir automatiquement votre blog à partir de vos sites Piwik par URL. Si votre blog est pas encore ajouté à Piwik, WP-Piwik ajoutera un nouveau site."
264
+
265
+ #: classes/WP_Piwik/Admin/Settings.php:131
266
+ #, php-format
267
+ msgid ""
268
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
269
+ "/><code>%s</code>"
270
+ msgstr ""
271
+
272
+ #: classes/WP_Piwik/Admin/Settings.php:141
273
+ msgid "Determined site"
274
+ msgstr "Site déterminé"
275
+
276
+ #: classes/WP_Piwik/Admin/Settings.php:146
277
+ msgid "Select site"
278
+ msgstr "Sélectionner le site"
279
+
280
+ #: classes/WP_Piwik/Admin/Settings.php:155
281
+ msgid "Piwik default date"
282
+ msgstr "Date par défaut Piwik"
283
 
284
+ #: classes/WP_Piwik/Admin/Settings.php:156
285
+ #: classes/WP_Piwik/Admin/Settings.php:170
286
+ msgid "Today"
287
+ msgstr "Aujourd'hui"
288
 
289
+ #: classes/WP_Piwik/Admin/Settings.php:157
290
+ #: classes/WP_Piwik/Admin/Settings.php:169
291
+ msgid "Yesterday"
292
+ msgstr "Hier"
293
 
294
+ #: classes/WP_Piwik/Admin/Settings.php:158
295
+ msgid "Current month"
296
+ msgstr "Mois en cours"
297
 
298
+ #: classes/WP_Piwik/Admin/Settings.php:159
299
+ msgid "Last month"
300
+ msgstr "Mois précédent"
301
+
302
+ #: classes/WP_Piwik/Admin/Settings.php:160
303
+ msgid "Current week"
304
+ msgstr "Semaine en cours"
305
+
306
+ #: classes/WP_Piwik/Admin/Settings.php:161
307
+ msgid "Last week"
308
+ msgstr "Semaine précédente"
309
+
310
+ #: classes/WP_Piwik/Admin/Settings.php:162
311
+ msgid "Default date shown on statistics page."
312
+ msgstr "Date affichée par défaut sur la page de statistiques."
313
+
314
+ #: classes/WP_Piwik/Admin/Settings.php:164
315
+ msgid "Show SEO data"
316
+ msgstr "Afficher les données SEO"
317
+
318
+ #: classes/WP_Piwik/Admin/Settings.php:164
319
+ msgid "Display SEO ranking data on statistics page."
320
+ msgstr "Afficher les données de classement SEO sur la page de statistiques."
321
+
322
+ #: classes/WP_Piwik/Admin/Settings.php:164
323
+ #: classes/WP_Piwik/Admin/Settings.php:176
324
+ msgid "Slow!"
325
+ msgstr "Doucement&nbsp;!"
326
+
327
+ #: classes/WP_Piwik/Admin/Settings.php:165
328
+ msgid "Show e-commerce data"
329
+ msgstr ""
330
+
331
+ #: classes/WP_Piwik/Admin/Settings.php:165
332
+ msgid "Display e-commerce data on statistics page."
333
+ msgstr ""
334
+
335
+ #: classes/WP_Piwik/Admin/Settings.php:167
336
+ msgid "Dashboard overview"
337
+ msgstr "Tableau de bord vue d'ensemble"
338
+
339
+ #: classes/WP_Piwik/Admin/Settings.php:168
340
+ #: classes/WP_Piwik/Admin/Settings.php:208
341
+ #: classes/WP_Piwik/Admin/Settings.php:210
342
+ #: classes/WP_Piwik/Admin/Settings.php:231
343
+ #: classes/WP_Piwik/Admin/Settings.php:285
344
+ #: classes/WP_Piwik/Admin/Settings.php:340
345
+ msgid "Disabled"
346
+ msgstr "Désactivé"
347
+
348
+ #: classes/WP_Piwik/Admin/Settings.php:171
349
+ msgid "Last 30 days"
350
+ msgstr "30 derniers jours"
351
+
352
+ #: classes/WP_Piwik/Admin/Settings.php:172
353
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
354
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Vue d'ensemble&quot;."
355
+
356
+ #: classes/WP_Piwik/Admin/Settings.php:174
357
+ msgid "Dashboard graph"
358
+ msgstr "Tableau de bord graphique"
359
+
360
+ #: classes/WP_Piwik/Admin/Settings.php:174
361
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
362
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;Graphique&quot;."
363
+
364
+ #: classes/WP_Piwik/Admin/Settings.php:176
365
+ msgid "Dashboard SEO"
366
+ msgstr "Tableau de bord SEO"
367
+
368
+ #: classes/WP_Piwik/Admin/Settings.php:176
369
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
370
+ msgstr "Activer le widget du tableau de bord WP-Piwik &quot;SEO&quot;."
371
+
372
+ #: classes/WP_Piwik/Admin/Settings.php:178
373
+ msgid "Dashboard e-commerce"
374
+ msgstr ""
375
 
376
+ #: classes/WP_Piwik/Admin/Settings.php:178
377
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
378
+ msgstr ""
379
+
380
+ #: classes/WP_Piwik/Admin/Settings.php:180
381
+ msgid "Show graph on WordPress Toolbar"
382
+ msgstr "Afficher le graphique dans la barre d'outils WordPress"
383
+
384
+ #: classes/WP_Piwik/Admin/Settings.php:180
385
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
386
+ msgstr "Afficher un graphique des visiteurs des 30 derniers jours dans la barre d'outils WordPress"
387
+
388
+ #: classes/WP_Piwik/Admin/Settings.php:182
389
+ msgid "Display stats to"
390
+ msgstr "Afficher les stats pour le(s)"
391
+
392
+ #: classes/WP_Piwik/Admin/Settings.php:189
393
+ msgid "Choose user roles allowed to see the statistics page."
394
+ msgstr "Choisissez les rôles utilisateurs autorisés à voir la page de statistiques."
395
+
396
+ #: classes/WP_Piwik/Admin/Settings.php:191
397
+ msgid "Show per post stats"
398
+ msgstr "Afficher les stats par article"
399
+
400
+ #: classes/WP_Piwik/Admin/Settings.php:191
401
+ msgid "Show stats about single posts at the post edit admin page."
402
+ msgstr "Afficher les stats de l'article sur la page admin de modification des articles."
403
+
404
+ #: classes/WP_Piwik/Admin/Settings.php:193
405
+ msgid "Piwik shortcut"
406
+ msgstr "Raccourci Piwik"
407
+
408
+ #: classes/WP_Piwik/Admin/Settings.php:193
409
+ msgid "Display a shortcut to Piwik itself."
410
+ msgstr "Affiche un raccourci vers Piwik lui-même."
411
+
412
+ #: classes/WP_Piwik/Admin/Settings.php:195
413
+ msgid "WP-Piwik display name"
414
+ msgstr "Nom d'affichage WP-Piwik"
415
+
416
+ #: classes/WP_Piwik/Admin/Settings.php:195
417
+ msgid "Plugin name shown in WordPress."
418
+ msgstr "Nom d'extension affichée dans WordPress."
419
+
420
+ #: classes/WP_Piwik/Admin/Settings.php:197
421
+ msgid "Enable shortcodes"
422
+ msgstr "Activer les codes courts"
423
+
424
+ #: classes/WP_Piwik/Admin/Settings.php:197
425
+ msgid "Enable shortcodes in post or page content."
426
+ msgstr "Active les codes courts dans le contenu des articles ou des pages"
427
+
428
+ #: classes/WP_Piwik/Admin/Settings.php:208
429
+ msgid "You can choose between four tracking code modes:"
430
+ msgstr "Vous pouvez choisir entre quatre modes de code de suivi&nbsp;:"
431
+
432
+ #: classes/WP_Piwik/Admin/Settings.php:208
433
+ msgid ""
434
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
435
+ "tracking code to your template files or you use another plugin to add the "
436
+ "tracking code."
437
+ msgstr "WP-Piwik n'ajoutera pas le code de suivi. Utilisez cela si vous souhaitez ajouter le code de suivi dans les fichiers de votre thème, ou que vous utilisez une autre extension pour ajouter le code de suivi."
438
+
439
+ #: classes/WP_Piwik/Admin/Settings.php:208
440
+ #: classes/WP_Piwik/Admin/Settings.php:211
441
+ msgid "Default tracking"
442
+ msgstr "Suivi par défaut"
443
+
444
+ #: classes/WP_Piwik/Admin/Settings.php:208
445
+ msgid "WP-Piwik will use Piwik's standard tracking code."
446
+ msgstr "WP-Piwik utilisera le code de suivi standard de Piwik."
447
+
448
+ #: classes/WP_Piwik/Admin/Settings.php:208
449
+ #: classes/WP_Piwik/Admin/Settings.php:212
450
+ msgid "Use js/index.php"
451
+ msgstr "Utiliser js/index.php"
452
+
453
+ #: classes/WP_Piwik/Admin/Settings.php:208
454
+ msgid ""
455
+ "You can choose this tracking code, to deliver a minified proxy code and to "
456
+ "avoid using the files called piwik.js or piwik.php."
457
+ msgstr "Vous pouvez choisir ce code de suivi, pour délivrer un code proxy minifié et d'éviter d'utiliser les fichiers appelés piwik.js ou piwik.php."
458
+
459
+ #: classes/WP_Piwik/Admin/Settings.php:208
460
+ #, php-format
461
+ msgid "See %sreadme file%s."
462
+ msgstr "Voir le %sfichier lisez-moi%s"
463
+
464
+ #: classes/WP_Piwik/Admin/Settings.php:208
465
+ #: classes/WP_Piwik/Admin/Settings.php:213
466
+ msgid "Use proxy script"
467
+ msgstr "Utiliser une code proxy"
468
+
469
+ #: classes/WP_Piwik/Admin/Settings.php:208
470
+ msgid "Use this tracking code to not reveal the Piwik server URL."
471
+ msgstr "Utilisez ce code de suivi pour ne pas révéler l'URL du serveur Piwik."
472
+
473
+ #: classes/WP_Piwik/Admin/Settings.php:208
474
+ #: classes/WP_Piwik/Admin/Settings.php:228
475
+ #: classes/WP_Piwik/Admin/Settings.php:238
476
+ #, php-format
477
+ msgid "See %sPiwik FAQ%s."
478
+ msgstr "Voir la %sFAQ Piwik%s."
479
+
480
+ #: classes/WP_Piwik/Admin/Settings.php:208
481
+ #: classes/WP_Piwik/Admin/Settings.php:214
482
+ msgid "Enter manually"
483
+ msgstr "Entrer manuellement"
484
+
485
+ #: classes/WP_Piwik/Admin/Settings.php:208
486
+ msgid ""
487
+ "Enter your own tracking code manually. You can choose one of the prior "
488
+ "options, pre-configure your tracking code and switch to manually editing at "
489
+ "last."
490
+ msgstr "Entrer manuellement votre propre code de suivi. Vous pouvez choisir l'une des options préalables, pré-configurer votre code de suivi et le modifier manuellement à la fin."
491
+
492
+ #: classes/WP_Piwik/Admin/Settings.php:208
493
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
494
+ msgstr "Utilisez l'espace réservé {ID} pour ajouter l'identifiant de site Piwik."
495
+
496
+ #: classes/WP_Piwik/Admin/Settings.php:209
497
+ msgid "Add tracking code"
498
+ msgstr "Ajouter le code de suivi"
499
+
500
+ #: classes/WP_Piwik/Admin/Settings.php:217
501
+ msgid "Tracking code"
502
+ msgstr "Code de suivi"
503
+
504
+ #: classes/WP_Piwik/Admin/Settings.php:219
505
+ msgid "JavaScript code position"
506
+ msgstr "Emplacement du code JavaScript"
507
+
508
+ #: classes/WP_Piwik/Admin/Settings.php:220
509
+ msgid "Footer"
510
+ msgstr "Pied de page"
511
+
512
+ #: classes/WP_Piwik/Admin/Settings.php:221
513
+ msgid "Header"
514
+ msgstr "En-tête"
515
+
516
+ #: classes/WP_Piwik/Admin/Settings.php:222
517
+ msgid ""
518
+ "Choose whether the JavaScript code is added to the footer or the header."
519
+ msgstr "Choisissez si le code JavaScript est ajouté dans le pied de page ou l'en-tête."
520
+
521
+ #: classes/WP_Piwik/Admin/Settings.php:224
522
+ msgid "Noscript code"
523
+ msgstr "Code noscript"
524
+
525
+ #: classes/WP_Piwik/Admin/Settings.php:226
526
+ msgid "Add &lt;noscript&gt;"
527
+ msgstr "Ajouter &lt;noscript&gt;"
528
+
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
+ msgid "Adds the &lt;noscript&gt; code to your footer."
531
+ msgstr "Ajoute le code &lt;noscript&gt; à votre pied de page."
532
+
533
+ #: classes/WP_Piwik/Admin/Settings.php:226
534
+ #: classes/WP_Piwik/Admin/Settings.php:228
535
+ msgid "Disabled in proxy mode."
536
+ msgstr "Désactivé en mode proxy."
537
+
538
+ #: classes/WP_Piwik/Admin/Settings.php:228
539
+ msgid "Add rec parameter to noscript code"
540
+ msgstr "Ajouter le paramètre rec au code noscript"
541
+
542
+ #: classes/WP_Piwik/Admin/Settings.php:228
543
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
544
+ msgstr "Activer le suivi des visiteurs sans JavaScript (non recommandé)."
545
+
546
+ #: classes/WP_Piwik/Admin/Settings.php:230
547
+ msgid "Enable content tracking"
548
+ msgstr "Activer le suivi de contenu"
549
+
550
+ #: classes/WP_Piwik/Admin/Settings.php:232
551
+ msgid "Track all content blocks"
552
+ msgstr "Suivre tous les blocs de contenu"
553
+
554
+ #: classes/WP_Piwik/Admin/Settings.php:233
555
+ msgid "Track only visible content blocks"
556
+ msgstr "Suivre uniquement les blocs de contenu visibles"
557
+
558
+ #: classes/WP_Piwik/Admin/Settings.php:234
559
+ msgid ""
560
+ "Content tracking allows you to track interaction with the content of a web "
561
+ "page or application."
562
+ msgstr "Le suivi de contenu vous autorise à suivre l'interaction avec le contenu d'une page web ou d'une application."
563
+
564
+ #: classes/WP_Piwik/Admin/Settings.php:234
565
+ #: classes/WP_Piwik/Admin/Settings.php:236
566
+ #: classes/WP_Piwik/Admin/Settings.php:245
567
+ #: classes/WP_Piwik/Admin/Settings.php:247
568
+ #: classes/WP_Piwik/Admin/Settings.php:249
569
+ #: classes/WP_Piwik/Admin/Settings.php:270
570
+ #: classes/WP_Piwik/Admin/Settings.php:272
571
+ #: classes/WP_Piwik/Admin/Settings.php:278
572
+ #: classes/WP_Piwik/Admin/Settings.php:343
573
+ #, php-format
574
+ msgid "See %sPiwik documentation%s."
575
+ msgstr "Voir la %sdocumentation Piwik%s."
576
+
577
+ #: classes/WP_Piwik/Admin/Settings.php:236
578
+ msgid "Track search"
579
+ msgstr "Suivre la recherche"
580
+
581
+ #: classes/WP_Piwik/Admin/Settings.php:236
582
+ msgid "Use Piwik's advanced Site Search Analytics feature."
583
+ msgstr "Utiliser la fonctionnalité avancée Piwik d'analyse de recherche du site"
584
+
585
+ #: classes/WP_Piwik/Admin/Settings.php:238
586
+ msgid "Track 404"
587
+ msgstr "Suivre les 404"
588
+
589
+ #: classes/WP_Piwik/Admin/Settings.php:238
590
+ msgid ""
591
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
592
+ msgstr "WP-Piwik peut ajouter automatiquement une catégorie 404 pour suivre les visites de page 404."
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:241
595
+ msgid "Add annotation on new post of type"
596
+ msgstr ""
597
+
598
+ #: classes/WP_Piwik/Admin/Settings.php:247
599
+ msgid "Show custom variables box"
600
+ msgstr "Afficher la boîte de variables personnalisées"
601
+
602
+ #: classes/WP_Piwik/Admin/Settings.php:247
603
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
604
+ msgstr "Afficher une boîte de modification des &quot;variables personnalisées&quot; sur la page de modification des articles;"
605
+
606
+ #: classes/WP_Piwik/Admin/Settings.php:249
607
+ msgid "Add new file types for download tracking"
608
+ msgstr "Ajouter de nouveaux types de fichier pour le suivi de téléchargement"
609
+
610
+ #: classes/WP_Piwik/Admin/Settings.php:249
611
+ msgid ""
612
+ "Add file extensions for download tracking, divided by a vertical bar "
613
+ "(&#124;)."
614
+ msgstr "Ajouter des extensions de fichier pour le suivi de téléchargement, séparées par une barre verticale (&#124;)."
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:251
617
+ msgid "Disable cookies"
618
+ msgstr "Désactiver les cookies"
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:251
621
+ msgid "Disable all tracking cookies for a visitor."
622
+ msgstr "Désactiver tous les cookies de suivi pour un visiteur"
623
+
624
+ #: classes/WP_Piwik/Admin/Settings.php:253
625
+ msgid "Limit cookie lifetime"
626
+ msgstr "Limiter la durée de vie des cookies"
627
+
628
+ #: classes/WP_Piwik/Admin/Settings.php:253
629
+ msgid ""
630
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
631
+ " period as necessary."
632
+ msgstr "Vous pouvez limiter la durée de vie des cookies pour éviter le suivi de vos utilisateurs sur une période plus longue que nécessaire."
633
+
634
+ #: classes/WP_Piwik/Admin/Settings.php:255
635
+ msgid "Visitor timeout (seconds)"
636
+ msgstr "Expiration du délai d'attente visiteur (en secondes)"
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:257
639
+ msgid "Session timeout (seconds)"
640
+ msgstr "Expiration du délai d'attente session (en secondes)"
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:259
643
+ msgid "Referral timeout (seconds)"
644
+ msgstr "Expiration du délai d'attente référant"
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:261
647
+ msgid "Track admin pages"
648
+ msgstr "Suivre les pages d'admin"
649
+
650
+ #: classes/WP_Piwik/Admin/Settings.php:261
651
+ msgid ""
652
+ "Enable to track users on admin pages (remember to configure the tracking "
653
+ "filter appropriately)."
654
+ msgstr "Activer le suivi des utilisateurs sur les pages d'admin (n'oubliez pas de configurer le filtre de suivi adéquat)"
655
+
656
+ #: classes/WP_Piwik/Admin/Settings.php:264
657
  msgid "Tracking filter"
658
  msgstr "Filtre de suivi"
659
 
660
+ #: classes/WP_Piwik/Admin/Settings.php:268
 
 
661
  msgid "Choose users by user role you do <strong>not</strong> want to track."
662
  msgstr "Choisissez, pour chaque rôle, ceux que <strong>vous ne souhaitez pas</strong> inclure dans le suivi."
663
 
664
+ #: classes/WP_Piwik/Admin/Settings.php:270
665
+ msgid "Track subdomains in the same website"
666
+ msgstr "Suivre les sous-domaines dans le même site web"
667
 
668
+ #: classes/WP_Piwik/Admin/Settings.php:270
669
+ msgid "Adds *.-prefix to cookie domain."
670
+ msgstr "Ajoute *.-préfixe au cookie de domaine."
671
 
672
+ #: classes/WP_Piwik/Admin/Settings.php:272
673
+ msgid "Do not count subdomains as outlink"
674
+ msgstr "Ne pas comptabiliser les sous-domaines en tant que lien sortant"
675
 
676
+ #: classes/WP_Piwik/Admin/Settings.php:272
677
+ msgid "Adds *.-prefix to tracked domain."
678
+ msgstr "Ajoute *.-préfixe au domaine suivi."
679
 
680
+ #: classes/WP_Piwik/Admin/Settings.php:274
681
+ msgid "Enable cross domain linking"
682
+ msgstr ""
683
 
684
+ #: classes/WP_Piwik/Admin/Settings.php:274
685
+ msgid ""
686
+ "When enabled, it will make sure to use the same visitor ID for the same "
687
+ "visitor across several domains. This works only when this feature is enabled"
688
+ " because the visitor ID is stored in a cookie and cannot be read on the "
689
+ "other domain by default. When this feature is enabled, it will append a URL "
690
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
691
+ "URL that belongs to one of your domains. For this feature to work, you also "
692
+ "have to configure which domains should be treated as local in your Piwik "
693
+ "website settings. This feature requires Piwik 3.0.2."
694
+ msgstr ""
695
 
696
+ #: classes/WP_Piwik/Admin/Settings.php:276
697
+ msgid "Track RSS feeds"
698
+ msgstr "Suivre les flux RSS"
699
 
700
+ #: classes/WP_Piwik/Admin/Settings.php:276
701
+ msgid "Enable to track posts in feeds via tracking pixel."
702
+ msgstr "Activer le suivi des articles dans les flux via un pixel de suivi."
703
 
704
+ #: classes/WP_Piwik/Admin/Settings.php:278
705
+ msgid "Track RSS feed links as campaign"
706
+ msgstr "Suivre les liens du flux RSS comme une campagne"
707
 
708
+ #: classes/WP_Piwik/Admin/Settings.php:278
709
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
710
+ msgstr "Ceci ajoutera des paramètres de campagne Piwik aux liens du flux RSS."
711
 
712
+ #: classes/WP_Piwik/Admin/Settings.php:280
713
+ msgid "RSS feed campaign"
714
+ msgstr "Campagne flux RSS"
715
 
716
+ #: classes/WP_Piwik/Admin/Settings.php:280
717
+ msgid "Keyword: post name."
718
+ msgstr "Mot-clef&nbsp;: nom d'article."
719
 
720
+ #: classes/WP_Piwik/Admin/Settings.php:282
721
+ msgid "Enable heartbeat timer"
722
+ msgstr "Activer une minuterie par pulsation"
723
 
724
+ #: classes/WP_Piwik/Admin/Settings.php:282
725
+ msgid ""
726
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
727
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
728
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
729
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
730
+ "HTTP requests on your site."
731
+ msgstr "Activer une minuterie par pulsation pour obtenir des durées de visite plus précises en envoyant des requêtes ping HTTP périodiques tant que le site est ouvert. Entrez le temps entre les pings en secondes (par défaut dans Piwik&nbsp;: 15) pour l'activer ou 0 pour désactiver cette fonctionnalité. <strong>Remarque&nbsp;:</ strong> Cela causera beaucoup de requêtes HTTP supplémentaires sur votre site."
732
+
733
+ #: classes/WP_Piwik/Admin/Settings.php:284
734
+ msgid "User ID Tracking"
735
+ msgstr "Identifiant de suivi utilisateur"
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:286
738
+ msgid "WP User ID"
739
+ msgstr "Identifiant d'utilisateur WP"
740
+
741
+ #: classes/WP_Piwik/Admin/Settings.php:287
742
+ msgid "Email Address"
743
+ msgstr "Courriel"
744
+
745
+ #: classes/WP_Piwik/Admin/Settings.php:288
746
+ msgid "Username"
747
+ msgstr "Nom d'utilisateur"
748
+
749
+ #: classes/WP_Piwik/Admin/Settings.php:289
750
+ msgid "Display Name (Not Recommended!)"
751
+ msgstr "Nom à afficher publiquement (Non Recommendé&nbsp;!)"
752
+
753
+ #: classes/WP_Piwik/Admin/Settings.php:290
754
+ msgid ""
755
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
756
+ "can select which field from the User's profile is tracked as the &quot;User "
757
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
758
+ msgstr "Lorsqu'un utilisateur est connecté à WordPress, suivre son &quot;Identifiant&quot;. Vous pouvez sélectionner quel champ du profil utilisateur à suivre comme &quot;Identifiant&quot;. Lorsque c'est activé, le suivi est basé sur le courriel est recommandé."
759
+
760
+ #: classes/WP_Piwik/Admin/Settings.php:295
761
+ msgid ""
762
+ "Usually, you do not need to change these settings. If you want to do so, you"
763
+ " should know what you do or you got an expert's advice."
764
+ msgstr "Habituellement, vous n'avez pas besoin de pas modifier ces réglages. Si vous voulez faire, vous devez savoir ce que vous faites ou avoir obtenu le conseil d'un expert."
765
 
766
+ #: classes/WP_Piwik/Admin/Settings.php:297
767
+ msgid "Enable cache"
768
+ msgstr "Activer le cache"
769
 
770
+ #: classes/WP_Piwik/Admin/Settings.php:297
771
+ msgid "Cache API calls, which not contain today's values, for a week."
772
+ msgstr "Appels API de cache, qui ne contiennent pas les valeurs d'aujourd'hui, pour une semaine."
773
+
774
+ #: classes/WP_Piwik/Admin/Settings.php:300
775
+ msgid "HTTP connection via"
776
+ msgstr "Connexion HTTP via"
777
+
778
+ #: classes/WP_Piwik/Admin/Settings.php:301
779
+ #: classes/WP_Piwik/Admin/Settings.php:590
780
+ msgid "cURL"
781
+ msgstr "cURL"
782
+
783
+ #: classes/WP_Piwik/Admin/Settings.php:302
784
+ #: classes/WP_Piwik/Admin/Settings.php:590
785
+ msgid "fopen"
786
+ msgstr "fopen"
787
+
788
+ #: classes/WP_Piwik/Admin/Settings.php:303
789
+ msgid ""
790
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
791
+ " or Cloud mode."
792
+ msgstr ""
793
+
794
+ #: classes/WP_Piwik/Admin/Settings.php:305
795
+ msgid "HTTP method"
796
+ msgstr "Méthode HTTP"
797
+
798
+ #: classes/WP_Piwik/Admin/Settings.php:306
799
+ #: classes/WP_Piwik/Admin/Settings.php:590
800
+ msgid "POST"
801
+ msgstr "POST"
802
+
803
+ #: classes/WP_Piwik/Admin/Settings.php:307
804
+ #: classes/WP_Piwik/Admin/Settings.php:590
805
+ msgid "GET"
806
+ msgstr "GET"
807
+
808
+ #: classes/WP_Piwik/Admin/Settings.php:308
809
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
810
+ msgstr ""
811
+
812
+ #: classes/WP_Piwik/Admin/Settings.php:310
813
+ msgid "Disable time limit"
814
+ msgstr "Désactiver la limite de temps"
815
+
816
+ #: classes/WP_Piwik/Admin/Settings.php:310
817
+ msgid "Use set_time_limit(0) if stats page causes a time out."
818
+ msgstr "Utilisez set_time_limit(0) si la pages de statistiques provoque une expiration du délai d'attente."
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:312
821
+ msgid "Connection timeout"
822
+ msgstr "Expiration du délai d'attente de la connexion"
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:314
825
+ msgid "Disable SSL peer verification"
826
+ msgstr "Désactiver la vérification par les pairs SSL"
827
+
828
+ #: classes/WP_Piwik/Admin/Settings.php:314
829
+ #: classes/WP_Piwik/Admin/Settings.php:315
830
+ msgid "not recommended"
831
+ msgstr "non recommandé"
832
+
833
+ #: classes/WP_Piwik/Admin/Settings.php:315
834
+ msgid "Disable SSL host verification"
835
+ msgstr "Désactiver la vérification SSL par l'hôte"
836
+
837
+ #: classes/WP_Piwik/Admin/Settings.php:317
838
+ msgid "User agent"
839
+ msgstr "Agent utilisateur (User agent)"
840
+
841
+ #: classes/WP_Piwik/Admin/Settings.php:318
842
+ msgid "Use the PHP default user agent"
843
+ msgstr "Utiliser l'agent utilisateur (user-agent) par défaut de PHP"
844
+
845
+ #: classes/WP_Piwik/Admin/Settings.php:318
846
+ msgid "empty"
847
+ msgstr "vide"
848
+
849
+ #: classes/WP_Piwik/Admin/Settings.php:319
850
+ msgid "Define a specific user agent"
851
+ msgstr "Définir un agent utilisateur (user-agent) spécifique"
852
+
853
+ #: classes/WP_Piwik/Admin/Settings.php:321
854
+ msgid "Specific user agent"
855
+ msgstr "Agent utilisateur (user-agent) spécifique"
856
+
857
+ #: classes/WP_Piwik/Admin/Settings.php:323
858
+ msgid "Enable DNS prefetch"
859
+ msgstr ""
860
+
861
+ #: classes/WP_Piwik/Admin/Settings.php:323
862
+ #, php-format
863
+ msgid "See %sPiwik Blog%s."
864
+ msgstr ""
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:323
867
+ msgid "Add a DNS prefetch tag. "
868
+ msgstr ""
869
+
870
+ #: classes/WP_Piwik/Admin/Settings.php:325
871
+ msgid "Add data-cfasync=false"
872
+ msgstr "Ajouter data-cfasync=false"
873
+
874
+ #: classes/WP_Piwik/Admin/Settings.php:325
875
+ #, php-format
876
+ msgid "See %sCloudFlare Knowledge Base%s."
877
+ msgstr "Voir la %sBase de connaissances CloudFlare%s."
878
+
879
+ #: classes/WP_Piwik/Admin/Settings.php:325
880
+ msgid ""
881
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
882
+ "ignore the script. "
883
+ msgstr "Ajoute data-cfasync=false à la balise du script, pour demander par exemple, au chargeur Rocket d'ignorer le script. "
884
 
885
+ #: classes/WP_Piwik/Admin/Settings.php:327
886
+ msgid "CDN URL"
887
+ msgstr "URL CDN"
888
+
889
+ #: classes/WP_Piwik/Admin/Settings.php:329
890
+ msgid "CDN URL (SSL)"
891
+ msgstr "URL CDN (SSL)"
892
+
893
+ #: classes/WP_Piwik/Admin/Settings.php:331
894
+ msgid "Force Piwik to use a specific protocol"
895
+ msgstr "Forcer Piwik à utiliser un protocole spécifique"
896
+
897
+ #: classes/WP_Piwik/Admin/Settings.php:332
898
+ msgid "Disabled (default)"
899
+ msgstr "Désactivé (par défaut)"
900
+
901
+ #: classes/WP_Piwik/Admin/Settings.php:333
902
+ msgid "http"
903
+ msgstr "http"
904
+
905
+ #: classes/WP_Piwik/Admin/Settings.php:334
906
+ msgid "https (SSL)"
907
+ msgstr "https (SSL)"
908
+
909
+ #: classes/WP_Piwik/Admin/Settings.php:335
910
+ msgid ""
911
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
912
+ "work with a CDN URL."
913
+ msgstr "Choisissez si vous voulez forcer explicitement Piwik à utiliser le protocole HTTP ou HTTPS. Ne fonctionne pas avec une URL CDN."
914
+
915
+ #: classes/WP_Piwik/Admin/Settings.php:337
916
+ msgid "Update notice"
917
+ msgstr "Avis de mise à jour"
918
+
919
+ #: classes/WP_Piwik/Admin/Settings.php:338
920
+ msgid "Show always if WP-Piwik is updated"
921
+ msgstr "Toujours afficher si WP-Piwik est mis à jour"
922
+
923
+ #: classes/WP_Piwik/Admin/Settings.php:339
924
+ msgid "Show only if WP-Piwik is updated and settings were changed"
925
+ msgstr "Afficher uniquement si WP-Piwik est mis à jour et que les paramètres ont change."
926
+
927
+ #: classes/WP_Piwik/Admin/Settings.php:341
928
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
929
+ msgstr "Choisissez si vous souhaitez obtenir un avis de mise à jour si WP-Piwik est mis à jour."
930
+
931
+ #: classes/WP_Piwik/Admin/Settings.php:343
932
+ msgid "Define all file types for download tracking"
933
+ msgstr "Définir tous les types de fichier pour le suivi de téléchargement"
934
+
935
+ #: classes/WP_Piwik/Admin/Settings.php:343
936
+ msgid ""
937
+ "Replace Piwik's default file extensions for download tracking, divided by a "
938
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
939
+ msgstr "Remplacer les extensions de fichier par défaut de Piwik pour le suivi de téléchargement, séparées par une barre verticale (&#124;). Laisser vide pour conserver les réglages par défaut de Piwik."
940
+
941
+ #: classes/WP_Piwik/Admin/Settings.php:345
942
+ msgid "Set classes to be treated as downloads"
943
+ msgstr ""
944
+
945
+ #: classes/WP_Piwik/Admin/Settings.php:345
946
+ msgid ""
947
+ "Set classes to be treated as downloads (in addition to piwik_download), "
948
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
949
+ "settings."
950
+ msgstr ""
951
+
952
+ #: classes/WP_Piwik/Admin/Settings.php:345
953
+ #: classes/WP_Piwik/Admin/Settings.php:347
954
+ #, php-format
955
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
956
+ msgstr ""
957
+
958
+ #: classes/WP_Piwik/Admin/Settings.php:347
959
+ msgid "Set classes to be treated as outlinks"
960
+ msgstr ""
961
+
962
+ #: classes/WP_Piwik/Admin/Settings.php:347
963
+ msgid ""
964
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
965
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
966
+ msgstr ""
967
+
968
+ #: classes/WP_Piwik/Admin/Settings.php:508
969
+ msgid "Donate"
970
+ msgstr "Faire un don"
971
+
972
+ #: classes/WP_Piwik/Admin/Settings.php:511
973
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
974
+ msgstr "Si vous aimez WP-Piwik, vous pouvez soutenir son développement par un don&nbsp;:"
975
+
976
+ #: classes/WP_Piwik/Admin/Settings.php:530
977
+ msgid "My Amazon.de wishlist"
978
+ msgstr "Ma liste de souhaits Amazon.de"
979
+
980
+ #: classes/WP_Piwik/Admin/Settings.php:533
981
+ #: classes/WP_Piwik/Admin/Settings.php:575
982
+ msgid "Please don't forget to vote the compatibility at the"
983
+ msgstr "Merci de ne pas oublier de voter la compatibilité avec"
984
+
985
+ #: classes/WP_Piwik/Admin/Settings.php:561
986
+ msgid "Thank you very much for your donation"
987
+ msgstr "Merci beaucoup pour votre don"
988
+
989
+ #: classes/WP_Piwik/Admin/Settings.php:561
990
+ msgid "the Piwik team itself"
991
+ msgstr "l'équipe Piwik elle-même"
992
+
993
+ #: classes/WP_Piwik/Admin/Settings.php:561
994
+ msgid ", and all people flattering this"
995
+ msgstr ", et toutes les personnes flatteuses à ce sujet."
996
+
997
+ #: classes/WP_Piwik/Admin/Settings.php:562
998
+ msgid ""
999
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
1000
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
1001
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1002
+ "Sparklines</a> (License: New BSD License)."
1003
+ msgstr ""
1004
+
1005
+ #: classes/WP_Piwik/Admin/Settings.php:563
1006
+ msgid "Thank you very much"
1007
+ msgstr "Merci beaucoup"
1008
+
1009
+ #: classes/WP_Piwik/Admin/Settings.php:563
1010
+ msgid "for your translation work"
1011
+ msgstr "pour votre travail de traduction"
1012
+
1013
+ #: classes/WP_Piwik/Admin/Settings.php:564
1014
+ msgid ""
1015
+ "Thank you very much, all users who send me mails containing criticism, "
1016
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1017
+ " much better."
1018
+ msgstr "Merci beaucoup, à tous les utilisateurs qui envoient des mails contenant critique, éloge, demandes de fonctionnalités et rapports de bogues&nbsp;! Vous m'avez aidé a rendre WP-Piwik encore meilleur."
1019
+
1020
+ #: classes/WP_Piwik/Admin/Settings.php:565
1021
+ msgid ""
1022
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1023
+ "if my piece of code is really used!"
1024
+ msgstr "Je <strong>vous</strong> remercie d'utiliser mon extension. C'est la meilleur éloge si mon morceau de code est vraiment utilisé&nbsp;!"
1025
+
1026
+ #: classes/WP_Piwik/Admin/Settings.php:574
1027
+ msgid "The best place to get help:"
1028
+ msgstr "Le meilleur endroit pour obtenir de l'aide&nbsp;:"
1029
+
1030
+ #: classes/WP_Piwik/Admin/Settings.php:574
1031
+ msgid "WP-Piwik support forum"
1032
+ msgstr "Forum de support WP-Piwik"
1033
+
1034
+ #: classes/WP_Piwik/Admin/Settings.php:577
1035
+ msgid "Debugging"
1036
+ msgstr "Débogage"
1037
+
1038
+ #: classes/WP_Piwik/Admin/Settings.php:578
1039
+ msgid ""
1040
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1041
+ "available:"
1042
+ msgstr "allow_url_fopen doit être activé <em>ou</em> cURL doit être disponible&nbsp;:"
1043
+
1044
+ #: classes/WP_Piwik/Admin/Settings.php:581
1045
+ msgid "cURL is"
1046
+ msgstr "cURL est"
1047
+
1048
+ #: classes/WP_Piwik/Admin/Settings.php:582
1049
+ #: classes/WP_Piwik/Admin/Settings.php:587
1050
+ msgid "not"
1051
+ msgstr "non"
1052
+
1053
+ #: classes/WP_Piwik/Admin/Settings.php:583
1054
+ msgid "available"
1055
+ msgstr "disponible"
1056
+
1057
+ #: classes/WP_Piwik/Admin/Settings.php:586
1058
+ msgid "allow_url_fopen is"
1059
+ msgstr "allow_url_fopen est"
1060
+
1061
+ #: classes/WP_Piwik/Admin/Settings.php:588
1062
+ msgid "enabled"
1063
+ msgstr "activé"
1064
+
1065
+ #: classes/WP_Piwik/Admin/Settings.php:590
1066
+ msgid "is used."
1067
+ msgstr "est utilisé."
1068
+
1069
+ #: classes/WP_Piwik/Admin/Settings.php:592
1070
+ msgid "Determined Piwik base URL is"
1071
+ msgstr "L'URL Piwik de base identifée est"
1072
+
1073
+ #: classes/WP_Piwik/Admin/Settings.php:596
1074
+ msgid "Tools"
1075
+ msgstr "Outils"
1076
+
1077
+ #: classes/WP_Piwik/Admin/Settings.php:598
1078
+ msgid "Run testscript"
1079
+ msgstr "Lancer le script de test"
1080
+
1081
+ #: classes/WP_Piwik/Admin/Settings.php:599
1082
+ msgid "Sitebrowser"
1083
+ msgstr "Navigateur de site"
1084
+
1085
+ #: classes/WP_Piwik/Admin/Settings.php:600
1086
+ msgid "Clear cache"
1087
+ msgstr "Nettoyer le cache"
1088
+
1089
+ #: classes/WP_Piwik/Admin/Settings.php:601
1090
+ msgid "Are you sure you want to clear all settings?"
1091
+ msgstr "Êtes-vous sûr de vouloir effacer tous les réglages&nbsp;?"
1092
+
1093
+ #: classes/WP_Piwik/Admin/Settings.php:601
1094
+ msgid "Reset WP-Piwik"
1095
+ msgstr "Réinitialiser WP-Piwik"
1096
+
1097
+ #: classes/WP_Piwik/Admin/Settings.php:603
1098
+ msgid "Latest support threads on WordPress.org"
1099
+ msgstr "Les derniers messages de support sur WordPress.org"
1100
+
1101
+ #: classes/WP_Piwik/Admin/Settings.php:654
1102
+ msgid "Settings cleared (except connection settings)."
1103
+ msgstr "Les réglages ont été effacés (sauf les paramètres de connexion)"
1104
+
1105
+ #: classes/WP_Piwik/Admin/Settings.php:670
1106
+ msgid "Cache cleared."
1107
+ msgstr "Le cache a été effacé."
1108
+
1109
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1110
+ msgid "site"
1111
+ msgstr "site"
1112
+
1113
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1114
+ msgid "sites"
1115
+ msgstr "sites"
1116
+
1117
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1118
+ msgid "No site configured yet."
1119
+ msgstr "Pas de site configuré actuellement."
1120
+
1121
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1122
+ msgid "Blog ID"
1123
+ msgstr "Identifiant du blog"
1124
+
1125
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1126
+ msgid "Title"
1127
+ msgstr "Titre"
1128
+
1129
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1130
+ msgid "URL"
1131
+ msgstr "URL"
1132
+
1133
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1134
+ msgid "Site ID (Piwik)"
1135
+ msgstr "Identifiant du site (Piwik)"
1136
+
1137
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1138
+ msgid "Site not created yet."
1139
+ msgstr "Le site n'a pas encore été créé."
1140
+
1141
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1142
+ msgid "Statistics"
1143
+ msgstr "Statistiques"
1144
+
1145
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1146
+ msgid "Currently shown stats:"
1147
+ msgstr "Stats affichées actuellement : "
1148
+
1149
+ #: classes/WP_Piwik/Request/Php.php:27
1150
+ msgid "Could not resolve"
1151
+ msgstr "Impossible de résoudre"
1152
+
1153
+ #: classes/WP_Piwik/Request/Php.php:27
1154
+ msgid "realpath() returns false"
1155
+ msgstr "realpath() retourne faux (false)"
1156
+
1157
+ #: classes/WP_Piwik/Request/Php.php:39
1158
+ msgid "Class Piwik\\FrontController does not exists."
1159
+ msgstr "La classe Piwik\\FrontController n'existe pas."
1160
+
1161
+ #: classes/WP_Piwik/Request/Php.php:42
1162
+ msgid "Class Piwik\\API\\Request does not exists."
1163
+ msgstr "La class Piwik\\API\\Request n'existe pas."
1164
+
1165
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1166
+ msgid "Piwik Custom Variables"
1167
+ msgstr "Variables personnalisées Piwik"
1168
+
1169
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1170
+ msgid "Name"
1171
+ msgstr "Nom"
1172
+
1173
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1174
+ msgid "Value"
1175
+ msgstr "Valeur"
1176
+
1177
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1178
+ msgid "Set custom variables for a page view"
1179
+ msgstr "Définir des variables personnalisées pour une page vue"
1180
+
1181
+ #: classes/WP_Piwik/Widget.php:91
1182
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1183
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1184
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1185
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1186
+ #: classes/WP_Piwik/Widget/Items.php:23
1187
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1188
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1189
+ #: classes/WP_Piwik/Widget/Overview.php:24
1190
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1191
+ #: classes/WP_Piwik/Widget/Screens.php:35
1192
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1193
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1194
+ #: classes/WP_Piwik/Widget/Systems.php:33
1195
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1196
+ msgid "Piwik error"
1197
+ msgstr "Erreur Piwik"
1198
+
1199
+ #: classes/WP_Piwik/Widget.php:100
1200
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1201
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1202
+ #: classes/WP_Piwik/Widget/Country.php:39
1203
+ #: classes/WP_Piwik/Widget/Screens.php:37
1204
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1205
+ #: classes/WP_Piwik/Widget/Systems.php:35
1206
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1207
+ msgid "Unique"
1208
+ msgstr "Unique"
1209
+
1210
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1211
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1212
+ msgid "Visits"
1213
+ msgstr "Visites"
1214
+
1215
+ #: classes/WP_Piwik/Widget.php:104
1216
+ msgid "Hits"
1217
+ msgstr "Entrées"
1218
+
1219
+ #: classes/WP_Piwik/Widget.php:106
1220
+ msgid "Actions"
1221
+ msgstr "Actions"
1222
+
1223
+ #: classes/WP_Piwik/Widget.php:162
1224
+ msgid "No data available."
1225
+ msgstr "Pas de données disponibles"
1226
+
1227
+ #: classes/WP_Piwik/Widget.php:243
1228
  msgid "today"
1229
  msgstr "aujourd'hui"
1230
 
1231
+ #: classes/WP_Piwik/Widget.php:248
1232
+ msgid "current month"
1233
+ msgstr "mois en cours"
1234
+
1235
+ #: classes/WP_Piwik/Widget.php:253
1236
+ msgid "last month"
1237
+ msgstr "mois précédent"
1238
+
1239
+ #: classes/WP_Piwik/Widget.php:258
1240
+ msgid "current week"
1241
+ msgstr "semaine en cours"
1242
+
1243
+ #: classes/WP_Piwik/Widget.php:263
1244
+ msgid "last week"
1245
+ msgstr "semaine précédente"
1246
+
1247
+ #: classes/WP_Piwik/Widget.php:268
1248
  msgid "yesterday"
1249
  msgstr "hier"
1250
 
1251
+ #: classes/WP_Piwik/Widget.php:293
1252
+ msgid "week"
1253
+ msgstr "semaine"
1254
 
1255
+ #: classes/WP_Piwik/Widget.php:328
1256
+ msgid "last 30 days"
1257
+ msgstr "30 derniers jours"
1258
 
1259
+ #: classes/WP_Piwik/Widget.php:330
1260
+ msgid "last 12 "
1261
+ msgstr ""
1262
+
1263
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1264
+ msgid "Browser Details"
1265
+ msgstr "Détails navigateur"
1266
+
1267
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1268
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1269
+ msgid "Browser"
1270
+ msgstr "Navigateur"
1271
+
1272
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1273
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1274
+ #: classes/WP_Piwik/Widget/Country.php:39
1275
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1276
+ #: classes/WP_Piwik/Widget/Screens.php:37
1277
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1278
+ #: classes/WP_Piwik/Widget/Systems.php:35
1279
+ msgid "Percent"
1280
+ msgstr "Pourcentage"
1281
+
1282
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1283
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1284
+ #: classes/WP_Piwik/Widget/Country.php:66
1285
+ #: classes/WP_Piwik/Widget/Screens.php:64
1286
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1287
+ #: classes/WP_Piwik/Widget/Systems.php:62
1288
+ msgid "Others"
1289
+ msgstr "Autres"
1290
 
1291
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1292
+ msgid "Browsers"
1293
+ msgstr "Navigateurs"
1294
 
1295
+ #: classes/WP_Piwik/Widget/Chart.php:19
1296
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1297
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1298
+ msgid "Visitors"
1299
+ msgstr "Visiteurs"
1300
+
1301
+ #: classes/WP_Piwik/Widget/Chart.php:71
1302
+ msgid ""
1303
+ "The graph contains the values shown in the table below (visitors / unique / "
1304
+ "bounces). The red line shows a linear trendline (unique)."
1305
+ msgstr "Le graphique contient les valeurs indiquées dans le tableau ci-dessous (visiteurs / unique / rebonds). La ligne rouge montre une courbe de tendance linéaire (unique)."
1306
+
1307
+ #: classes/WP_Piwik/Widget/Country.php:18
1308
+ msgid "Countries"
1309
+ msgstr "Pays"
1310
+
1311
+ #: classes/WP_Piwik/Widget/Country.php:39
1312
+ msgid "Country"
1313
+ msgstr "Pays"
1314
+
1315
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1316
+ msgid "E-Commerce"
1317
+ msgstr ""
1318
+
1319
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1320
+ msgid "Conversions"
1321
+ msgstr ""
1322
+
1323
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1324
+ msgid "Visits converted"
1325
+ msgstr ""
1326
+
1327
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1328
+ #: classes/WP_Piwik/Widget/Items.php:27
1329
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1330
+ msgid "Revenue"
1331
+ msgstr ""
1332
+
1333
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1334
+ #: classes/WP_Piwik/Widget/Items.php:32
1335
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1336
+ msgid "Conversion rate"
1337
+ msgstr ""
1338
+
1339
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1340
+ msgid "Conversions (new visitor)"
1341
+ msgstr ""
1342
+
1343
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1344
+ msgid "Visits converted (new visitor)"
1345
+ msgstr ""
1346
+
1347
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1348
+ msgid "Revenue (new visitor)"
1349
+ msgstr ""
1350
+
1351
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1352
+ msgid "Conversion rate (new visitor)"
1353
+ msgstr ""
1354
+
1355
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1356
+ msgid "Conversions (returning visitor)"
1357
+ msgstr ""
1358
+
1359
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1360
+ msgid "Visits converted (returning visitor)"
1361
+ msgstr ""
1362
+
1363
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1364
+ msgid "Revenue (returning visitor)"
1365
+ msgstr ""
1366
+
1367
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1368
+ msgid "Conversion rate (returning visitor)"
1369
+ msgstr ""
1370
+
1371
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1372
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1373
+ msgid "Shortcut"
1374
+ msgstr "Raccourci"
1375
+
1376
+ #: classes/WP_Piwik/Widget/Items.php:11
1377
+ msgid "E-Commerce Items"
1378
+ msgstr ""
1379
+
1380
+ #: classes/WP_Piwik/Widget/Items.php:26
1381
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1382
+ msgid "Label"
1383
+ msgstr ""
1384
+
1385
+ #: classes/WP_Piwik/Widget/Items.php:28
1386
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1387
+ msgid "Quantity"
1388
+ msgstr ""
1389
+
1390
+ #: classes/WP_Piwik/Widget/Items.php:29
1391
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1392
+ msgid "Orders"
1393
+ msgstr ""
1394
+
1395
+ #: classes/WP_Piwik/Widget/Items.php:30
1396
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1397
+ msgid "Avg. price"
1398
+ msgstr ""
1399
+
1400
+ #: classes/WP_Piwik/Widget/Items.php:31
1401
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1402
+ msgid "Avg. quantity"
1403
+ msgstr ""
1404
+
1405
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1406
+ msgid "E-Commerce Item Categories"
1407
+ msgstr ""
1408
+
1409
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1410
+ msgid "Keywords"
1411
+ msgstr "Mots Clés"
1412
+
1413
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1414
+ #: classes/WP_Piwik/Widget/Search.php:16
1415
+ msgid "Site Search"
1416
+ msgstr "Recherche du site"
1417
+
1418
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1419
+ #: classes/WP_Piwik/Widget/Search.php:25
1420
+ msgid "Keyword"
1421
+ msgstr "Mots clés"
1422
+
1423
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1424
+ #: classes/WP_Piwik/Widget/Search.php:25
1425
+ msgid "Requests"
1426
+ msgstr "Requêtes"
1427
+
1428
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1429
+ #: classes/WP_Piwik/Widget/Search.php:25
1430
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1431
+ msgid "Bounced"
1432
+ msgstr "Rebonds"
1433
+
1434
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1435
+ msgid "Overview"
1436
+ msgstr "Vue d'ensemble"
1437
+
1438
+ #: classes/WP_Piwik/Widget/Overview.php:17
1439
+ msgid "dashboard"
1440
+ msgstr "Tableau de bord"
1441
+
1442
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1443
+ msgid "Unique visitors"
1444
+ msgstr "Visiteurs uniques"
1445
+
1446
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1447
+ msgid "Page views"
1448
+ msgstr "Pages vues"
1449
+
1450
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1451
+ msgid "Total time spent"
1452
+ msgstr "Temps passé total"
1453
+
1454
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1455
+ msgid "Bounce count"
1456
+ msgstr "Nombre de sauts"
1457
+
1458
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1459
+ msgid "Time/visit"
1460
+ msgstr "Temps / visite"
1461
+
1462
+ #: classes/WP_Piwik/Widget/Overview.php:57
1463
+ msgid "Max. page views in one visit"
1464
+ msgstr "Pages vues max.par visite"
1465
+
1466
+ #: classes/WP_Piwik/Widget/Pages.php:16
1467
+ msgid "Pages"
1468
+ msgstr "Pages"
1469
+
1470
+ #: classes/WP_Piwik/Widget/Pages.php:18
1471
+ msgid "Page"
1472
+ msgstr "Page"
1473
+
1474
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1475
+ msgid "Plugins"
1476
+ msgstr "Extensions"
1477
+
1478
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1479
+ msgid "Plugin"
1480
+ msgstr "Extension"
1481
+
1482
+ #: classes/WP_Piwik/Widget/Post.php:43
1483
+ msgid "Min. generation time"
1484
+ msgstr "Temps min. de génération"
1485
+
1486
+ #: classes/WP_Piwik/Widget/Post.php:44
1487
+ msgid "Max. generation time"
1488
+ msgstr "Temps max. de génération"
1489
+
1490
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1491
+ msgid "Referrers"
1492
+ msgstr "Référants"
1493
+
1494
+ #: classes/WP_Piwik/Widget/Screens.php:16
1495
+ msgid "Resolutions"
1496
+ msgstr "Résolutions"
1497
+
1498
+ #: classes/WP_Piwik/Widget/Screens.php:37
1499
+ msgid "Resolution"
1500
+ msgstr "Résolution"
1501
+
1502
+ #: classes/WP_Piwik/Widget/Seo.php:13
1503
+ msgid "SEO"
1504
+ msgstr "SEO"
1505
+
1506
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1507
+ msgid "Operation System Details"
1508
+ msgstr "Détails du système d'exploitation"
1509
+
1510
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1511
+ #: classes/WP_Piwik/Widget/Systems.php:35
1512
+ msgid "Operation System"
1513
+ msgstr "Système d'exploitation"
1514
+
1515
+ #: classes/WP_Piwik/Widget/Systems.php:14
1516
+ msgid "Operation Systems"
1517
+ msgstr "Systèmes d'exploitation"
1518
+
1519
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1520
+ msgid "Date"
1521
+ msgstr "Date"
1522
+
1523
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1524
+ msgid "Page Views"
1525
+ msgstr "Pages vues"
1526
+
1527
+ #: wp-piwik.php:60
1528
+ #, php-format
1529
+ msgid ""
1530
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1531
+ " Please update PHP to use WP-Piwik."
1532
+ msgstr "WP-Piwik requiert au moins PHP 5.3. Vous utilisez la version obsolète %s. Merci de mettre à jour PHP pour utiliser WP-Piwik."
languages/wp-piwik-hi.mo ADDED
Binary file
languages/wp-piwik-hi.po ADDED
@@ -0,0 +1,1529 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # AnandVivek, 2015
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP-Piwik\n"
7
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
8
+ "PO-Revision-Date: 2017-10-09 20:43+0000\n"
9
+ "Last-Translator: André Bräkling\n"
10
+ "Language-Team: Hindi (http://www.transifex.com/piwik/wp-piwik/language/hi/)\n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: 8bit\n"
14
+ "Language: hi\n"
15
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
+
17
+ #: classes/WP_Piwik.php:203
18
+ #, php-format
19
+ msgid "%s %s installed."
20
+ msgstr "%s %s स्थापित।"
21
+
22
+ #: classes/WP_Piwik.php:203
23
+ msgid "Next you should connect to Piwik"
24
+ msgstr ""
25
+
26
+ #: classes/WP_Piwik.php:237
27
+ #, php-format
28
+ msgid "%s updated to %s."
29
+ msgstr ""
30
+
31
+ #: classes/WP_Piwik.php:237
32
+ msgid "Please validate your configuration"
33
+ msgstr ""
34
+
35
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
36
+ msgid "Settings"
37
+ msgstr ""
38
+
39
+ #: classes/WP_Piwik.php:272
40
+ msgid "Important"
41
+ msgstr "महत्वपूर्ण"
42
+
43
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
44
+ msgid "Piwik Statistics"
45
+ msgstr "Piwik आँकड़ा"
46
+
47
+ #: classes/WP_Piwik.php:499
48
+ msgid "Configure WP-Piwik"
49
+ msgstr ""
50
+
51
+ #: classes/WP_Piwik.php:992
52
+ msgid "An error occured"
53
+ msgstr ""
54
+
55
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
56
+ msgid "Support"
57
+ msgstr "सहयोग"
58
+
59
+ #: classes/WP_Piwik.php:1275
60
+ msgid "Cheatin&#8217; uh?"
61
+ msgstr "धोका&#8217; उह?"
62
+
63
+ #: classes/WP_Piwik/Admin/Settings.php:24
64
+ msgid "Reload"
65
+ msgstr "पुन: लोड"
66
+
67
+ #: classes/WP_Piwik/Admin/Settings.php:27
68
+ msgid "Changes saved."
69
+ msgstr "बदलाव सहेजा गया।"
70
+
71
+ #: classes/WP_Piwik/Admin/Settings.php:55
72
+ msgid "Thanks for using WP-Piwik!"
73
+ msgstr "WP-Piwik का उपयोग करने हेतु धन्यवाद!"
74
+
75
+ #: classes/WP_Piwik/Admin/Settings.php:58
76
+ #, php-format
77
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
78
+ msgstr "WP-Piwik %s सफलतापूर्वक Piwik %s से जुड़ गया है।"
79
+
80
+ #: classes/WP_Piwik/Admin/Settings.php:58
81
+ #, php-format
82
+ msgid "You are running WordPress %s."
83
+ msgstr "आप वर्डप्रैस %s चला रहे हैं।"
84
+
85
+ #: classes/WP_Piwik/Admin/Settings.php:58
86
+ #, php-format
87
+ msgid ""
88
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
89
+ "your sites as different websites."
90
+ msgstr "आप अभी वर्डप्रैस %s ब्लॉग (डबल्यूपीएमयू) चला रहे हैं। WP-Piwik आपके साइट को एक अलग वैबसाइट की तरह चलाएगा।"
91
+
92
+ #: classes/WP_Piwik/Admin/Settings.php:62
93
+ #, php-format
94
+ msgid ""
95
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
96
+ " the &raquo;Connect to Piwik&laquo; section below."
97
+ msgstr ""
98
+
99
+ #: classes/WP_Piwik/Admin/Settings.php:64
100
+ #, php-format
101
+ msgid ""
102
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
103
+ "During connection the following error occured: <br /><code>%s</code>"
104
+ msgstr ""
105
+
106
+ #: classes/WP_Piwik/Admin/Settings.php:67
107
+ #, php-format
108
+ msgid ""
109
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
110
+ "Piwik&laquo; section below."
111
+ msgstr ""
112
+
113
+ #: classes/WP_Piwik/Admin/Settings.php:71
114
+ msgid "Connect to Piwik"
115
+ msgstr "Piwik से जोड़ें"
116
+
117
+ #: classes/WP_Piwik/Admin/Settings.php:76
118
+ msgid "Show Statistics"
119
+ msgstr "आँकड़ा दिखाएँ"
120
+
121
+ #: classes/WP_Piwik/Admin/Settings.php:80
122
+ msgid "Enable Tracking"
123
+ msgstr "ट्रैकिंग सक्षम"
124
+
125
+ #: classes/WP_Piwik/Admin/Settings.php:85
126
+ msgid "Expert Settings"
127
+ msgstr "विशेषज्ञ सेटिंग्स"
128
+
129
+ #: classes/WP_Piwik/Admin/Settings.php:93
130
+ msgid "Credits"
131
+ msgstr "श्रेय"
132
+
133
+ #: classes/WP_Piwik/Admin/Settings.php:106
134
+ msgid ""
135
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
136
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
137
+ " To use this you will need your own Piwik instance. If you do not already "
138
+ "have a Piwik setup, you have two simple options: use either"
139
+ msgstr "WP-Piwik वर्डप्रैस का एक प्लगइन है जो Piwik के आँकड़ों को वर्डप्रैस के प्रबंधक डैशबोर्ड में दिखाता है। इसके उपयोग के लिए आपको अपना Piwik की आवश्यकता होगी। यदि आपके पास Piwik का सेटअप नहीं है तो आप इसे दो साधारण तरीके से प्राप्त कर सकते हैं।"
140
+
141
+ #: classes/WP_Piwik/Admin/Settings.php:106
142
+ msgid "a self-hosted Piwik"
143
+ msgstr ""
144
+
145
+ #: classes/WP_Piwik/Admin/Settings.php:106
146
+ msgid "or"
147
+ msgstr "या"
148
+
149
+ #: classes/WP_Piwik/Admin/Settings.php:106
150
+ msgid "a cloud-hosted Piwik by InnoCraft"
151
+ msgstr ""
152
+
153
+ #: classes/WP_Piwik/Admin/Settings.php:109
154
+ msgid ""
155
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
156
+ "and not connect to InnoCraft Cloud."
157
+ msgstr ""
158
+
159
+ #: classes/WP_Piwik/Admin/Settings.php:109
160
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
161
+ msgid "More information"
162
+ msgstr "और जानकारी"
163
+
164
+ #: classes/WP_Piwik/Admin/Settings.php:111
165
+ msgid "You can choose between three connection methods:"
166
+ msgstr "आप इनमें से तीन जोड़ने की विधि चुन सकते हैं:"
167
+
168
+ #: classes/WP_Piwik/Admin/Settings.php:111
169
+ #: classes/WP_Piwik/Admin/Settings.php:114
170
+ msgid "Self-hosted (HTTP API, default)"
171
+ msgstr ""
172
+
173
+ #: classes/WP_Piwik/Admin/Settings.php:111
174
+ msgid ""
175
+ "This is the default option for a self-hosted Piwik and should work for most "
176
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
177
+ msgstr ""
178
+
179
+ #: classes/WP_Piwik/Admin/Settings.php:111
180
+ #: classes/WP_Piwik/Admin/Settings.php:115
181
+ msgid "Self-hosted (PHP API)"
182
+ msgstr ""
183
+
184
+ #: classes/WP_Piwik/Admin/Settings.php:111
185
+ msgid ""
186
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
187
+ " machine and you know the full server path to your Piwik instance."
188
+ msgstr ""
189
+
190
+ #: classes/WP_Piwik/Admin/Settings.php:111
191
+ #: classes/WP_Piwik/Admin/Settings.php:116
192
+ msgid "Cloud-hosted (InnoCraft Cloud)"
193
+ msgstr ""
194
+
195
+ #: classes/WP_Piwik/Admin/Settings.php:111
196
+ msgid ""
197
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
198
+ "option."
199
+ msgstr ""
200
+
201
+ #: classes/WP_Piwik/Admin/Settings.php:112
202
+ msgid "Piwik Mode"
203
+ msgstr "Piwik मोड"
204
+
205
+ #: classes/WP_Piwik/Admin/Settings.php:113
206
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
207
+ msgstr ""
208
+
209
+ #: classes/WP_Piwik/Admin/Settings.php:119
210
+ msgid "Piwik URL"
211
+ msgstr "Piwik यूआरएल"
212
+
213
+ #: classes/WP_Piwik/Admin/Settings.php:119
214
+ msgid ""
215
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
216
+ "instance, e.g. http://www.example.com/piwik/."
217
+ msgstr ""
218
+
219
+ #: classes/WP_Piwik/Admin/Settings.php:120
220
+ msgid "Piwik path"
221
+ msgstr ""
222
+
223
+ #: classes/WP_Piwik/Admin/Settings.php:120
224
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
225
+ msgstr ""
226
+
227
+ #: classes/WP_Piwik/Admin/Settings.php:121
228
+ msgid "Piwik subdomain"
229
+ msgstr ""
230
+
231
+ #: classes/WP_Piwik/Admin/Settings.php:121
232
+ msgid ""
233
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
234
+ "https://SUBDOMAIN.innocraft.cloud."
235
+ msgstr ""
236
+
237
+ #: classes/WP_Piwik/Admin/Settings.php:122
238
+ msgid "Auth token"
239
+ msgstr ""
240
+
241
+ #: classes/WP_Piwik/Admin/Settings.php:122
242
+ msgid ""
243
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
244
+ "0a1b2c34d56e78901fa2bc3d45678efa."
245
+ msgstr ""
246
+
247
+ #: classes/WP_Piwik/Admin/Settings.php:122
248
+ #, php-format
249
+ msgid "See %sWP-Piwik FAQ%s."
250
+ msgstr ""
251
+
252
+ #: classes/WP_Piwik/Admin/Settings.php:127
253
+ msgid "Auto config"
254
+ msgstr ""
255
+
256
+ #: classes/WP_Piwik/Admin/Settings.php:127
257
+ msgid ""
258
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
259
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
260
+ msgstr ""
261
+
262
+ #: classes/WP_Piwik/Admin/Settings.php:131
263
+ #, php-format
264
+ msgid ""
265
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
266
+ "/><code>%s</code>"
267
+ msgstr ""
268
+
269
+ #: classes/WP_Piwik/Admin/Settings.php:141
270
+ msgid "Determined site"
271
+ msgstr ""
272
+
273
+ #: classes/WP_Piwik/Admin/Settings.php:146
274
+ msgid "Select site"
275
+ msgstr "साइट चुनें"
276
+
277
+ #: classes/WP_Piwik/Admin/Settings.php:155
278
+ msgid "Piwik default date"
279
+ msgstr "Piwik मूल दिनांक"
280
+
281
+ #: classes/WP_Piwik/Admin/Settings.php:156
282
+ #: classes/WP_Piwik/Admin/Settings.php:170
283
+ msgid "Today"
284
+ msgstr "आज"
285
+
286
+ #: classes/WP_Piwik/Admin/Settings.php:157
287
+ #: classes/WP_Piwik/Admin/Settings.php:169
288
+ msgid "Yesterday"
289
+ msgstr "कल"
290
+
291
+ #: classes/WP_Piwik/Admin/Settings.php:158
292
+ msgid "Current month"
293
+ msgstr "इस माह"
294
+
295
+ #: classes/WP_Piwik/Admin/Settings.php:159
296
+ msgid "Last month"
297
+ msgstr "पिछले माह"
298
+
299
+ #: classes/WP_Piwik/Admin/Settings.php:160
300
+ msgid "Current week"
301
+ msgstr "इस सप्ताह"
302
+
303
+ #: classes/WP_Piwik/Admin/Settings.php:161
304
+ msgid "Last week"
305
+ msgstr "पिछले सप्ताह"
306
+
307
+ #: classes/WP_Piwik/Admin/Settings.php:162
308
+ msgid "Default date shown on statistics page."
309
+ msgstr ""
310
+
311
+ #: classes/WP_Piwik/Admin/Settings.php:164
312
+ msgid "Show SEO data"
313
+ msgstr "SEO आँकड़ा दिखाएँ"
314
+
315
+ #: classes/WP_Piwik/Admin/Settings.php:164
316
+ msgid "Display SEO ranking data on statistics page."
317
+ msgstr "SEO पायदान डाटा को आँकड़ा पृष्ठ पर दिखाएँ।"
318
+
319
+ #: classes/WP_Piwik/Admin/Settings.php:164
320
+ #: classes/WP_Piwik/Admin/Settings.php:176
321
+ msgid "Slow!"
322
+ msgstr "धीमा!"
323
+
324
+ #: classes/WP_Piwik/Admin/Settings.php:165
325
+ msgid "Show e-commerce data"
326
+ msgstr ""
327
+
328
+ #: classes/WP_Piwik/Admin/Settings.php:165
329
+ msgid "Display e-commerce data on statistics page."
330
+ msgstr ""
331
+
332
+ #: classes/WP_Piwik/Admin/Settings.php:167
333
+ msgid "Dashboard overview"
334
+ msgstr "डैशबोर्ड अवलोकन"
335
+
336
+ #: classes/WP_Piwik/Admin/Settings.php:168
337
+ #: classes/WP_Piwik/Admin/Settings.php:208
338
+ #: classes/WP_Piwik/Admin/Settings.php:210
339
+ #: classes/WP_Piwik/Admin/Settings.php:231
340
+ #: classes/WP_Piwik/Admin/Settings.php:285
341
+ #: classes/WP_Piwik/Admin/Settings.php:340
342
+ msgid "Disabled"
343
+ msgstr "अक्षम"
344
+
345
+ #: classes/WP_Piwik/Admin/Settings.php:171
346
+ msgid "Last 30 days"
347
+ msgstr "अंतिम 30 दिवस"
348
+
349
+ #: classes/WP_Piwik/Admin/Settings.php:172
350
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
351
+ msgstr ""
352
+
353
+ #: classes/WP_Piwik/Admin/Settings.php:174
354
+ msgid "Dashboard graph"
355
+ msgstr ""
356
+
357
+ #: classes/WP_Piwik/Admin/Settings.php:174
358
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
359
+ msgstr ""
360
+
361
+ #: classes/WP_Piwik/Admin/Settings.php:176
362
+ msgid "Dashboard SEO"
363
+ msgstr "डैशबोर्ड SEO"
364
+
365
+ #: classes/WP_Piwik/Admin/Settings.php:176
366
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
367
+ msgstr ""
368
+
369
+ #: classes/WP_Piwik/Admin/Settings.php:178
370
+ msgid "Dashboard e-commerce"
371
+ msgstr ""
372
+
373
+ #: classes/WP_Piwik/Admin/Settings.php:178
374
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
375
+ msgstr ""
376
+
377
+ #: classes/WP_Piwik/Admin/Settings.php:180
378
+ msgid "Show graph on WordPress Toolbar"
379
+ msgstr ""
380
+
381
+ #: classes/WP_Piwik/Admin/Settings.php:180
382
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
383
+ msgstr ""
384
+
385
+ #: classes/WP_Piwik/Admin/Settings.php:182
386
+ msgid "Display stats to"
387
+ msgstr ""
388
+
389
+ #: classes/WP_Piwik/Admin/Settings.php:189
390
+ msgid "Choose user roles allowed to see the statistics page."
391
+ msgstr ""
392
+
393
+ #: classes/WP_Piwik/Admin/Settings.php:191
394
+ msgid "Show per post stats"
395
+ msgstr ""
396
+
397
+ #: classes/WP_Piwik/Admin/Settings.php:191
398
+ msgid "Show stats about single posts at the post edit admin page."
399
+ msgstr ""
400
+
401
+ #: classes/WP_Piwik/Admin/Settings.php:193
402
+ msgid "Piwik shortcut"
403
+ msgstr ""
404
+
405
+ #: classes/WP_Piwik/Admin/Settings.php:193
406
+ msgid "Display a shortcut to Piwik itself."
407
+ msgstr ""
408
+
409
+ #: classes/WP_Piwik/Admin/Settings.php:195
410
+ msgid "WP-Piwik display name"
411
+ msgstr "WP-Piwik दृश्य नाम"
412
+
413
+ #: classes/WP_Piwik/Admin/Settings.php:195
414
+ msgid "Plugin name shown in WordPress."
415
+ msgstr "प्लगइन नाम जो वर्डप्रैस में दिखता है।"
416
+
417
+ #: classes/WP_Piwik/Admin/Settings.php:197
418
+ msgid "Enable shortcodes"
419
+ msgstr ""
420
+
421
+ #: classes/WP_Piwik/Admin/Settings.php:197
422
+ msgid "Enable shortcodes in post or page content."
423
+ msgstr ""
424
+
425
+ #: classes/WP_Piwik/Admin/Settings.php:208
426
+ msgid "You can choose between four tracking code modes:"
427
+ msgstr ""
428
+
429
+ #: classes/WP_Piwik/Admin/Settings.php:208
430
+ msgid ""
431
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
432
+ "tracking code to your template files or you use another plugin to add the "
433
+ "tracking code."
434
+ msgstr ""
435
+
436
+ #: classes/WP_Piwik/Admin/Settings.php:208
437
+ #: classes/WP_Piwik/Admin/Settings.php:211
438
+ msgid "Default tracking"
439
+ msgstr ""
440
+
441
+ #: classes/WP_Piwik/Admin/Settings.php:208
442
+ msgid "WP-Piwik will use Piwik's standard tracking code."
443
+ msgstr ""
444
+
445
+ #: classes/WP_Piwik/Admin/Settings.php:208
446
+ #: classes/WP_Piwik/Admin/Settings.php:212
447
+ msgid "Use js/index.php"
448
+ msgstr "js/index.php का उपयोग"
449
+
450
+ #: classes/WP_Piwik/Admin/Settings.php:208
451
+ msgid ""
452
+ "You can choose this tracking code, to deliver a minified proxy code and to "
453
+ "avoid using the files called piwik.js or piwik.php."
454
+ msgstr ""
455
+
456
+ #: classes/WP_Piwik/Admin/Settings.php:208
457
+ #, php-format
458
+ msgid "See %sreadme file%s."
459
+ msgstr ""
460
+
461
+ #: classes/WP_Piwik/Admin/Settings.php:208
462
+ #: classes/WP_Piwik/Admin/Settings.php:213
463
+ msgid "Use proxy script"
464
+ msgstr "प्रॉक्सि स्क्रिप्ट का उपयोग"
465
+
466
+ #: classes/WP_Piwik/Admin/Settings.php:208
467
+ msgid "Use this tracking code to not reveal the Piwik server URL."
468
+ msgstr ""
469
+
470
+ #: classes/WP_Piwik/Admin/Settings.php:208
471
+ #: classes/WP_Piwik/Admin/Settings.php:228
472
+ #: classes/WP_Piwik/Admin/Settings.php:238
473
+ #, php-format
474
+ msgid "See %sPiwik FAQ%s."
475
+ msgstr ""
476
+
477
+ #: classes/WP_Piwik/Admin/Settings.php:208
478
+ #: classes/WP_Piwik/Admin/Settings.php:214
479
+ msgid "Enter manually"
480
+ msgstr "अपने से डालें"
481
+
482
+ #: classes/WP_Piwik/Admin/Settings.php:208
483
+ msgid ""
484
+ "Enter your own tracking code manually. You can choose one of the prior "
485
+ "options, pre-configure your tracking code and switch to manually editing at "
486
+ "last."
487
+ msgstr ""
488
+
489
+ #: classes/WP_Piwik/Admin/Settings.php:208
490
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
491
+ msgstr ""
492
+
493
+ #: classes/WP_Piwik/Admin/Settings.php:209
494
+ msgid "Add tracking code"
495
+ msgstr ""
496
+
497
+ #: classes/WP_Piwik/Admin/Settings.php:217
498
+ msgid "Tracking code"
499
+ msgstr ""
500
+
501
+ #: classes/WP_Piwik/Admin/Settings.php:219
502
+ msgid "JavaScript code position"
503
+ msgstr ""
504
+
505
+ #: classes/WP_Piwik/Admin/Settings.php:220
506
+ msgid "Footer"
507
+ msgstr ""
508
+
509
+ #: classes/WP_Piwik/Admin/Settings.php:221
510
+ msgid "Header"
511
+ msgstr ""
512
+
513
+ #: classes/WP_Piwik/Admin/Settings.php:222
514
+ msgid ""
515
+ "Choose whether the JavaScript code is added to the footer or the header."
516
+ msgstr ""
517
+
518
+ #: classes/WP_Piwik/Admin/Settings.php:224
519
+ msgid "Noscript code"
520
+ msgstr ""
521
+
522
+ #: classes/WP_Piwik/Admin/Settings.php:226
523
+ msgid "Add &lt;noscript&gt;"
524
+ msgstr ""
525
+
526
+ #: classes/WP_Piwik/Admin/Settings.php:226
527
+ msgid "Adds the &lt;noscript&gt; code to your footer."
528
+ msgstr ""
529
+
530
+ #: classes/WP_Piwik/Admin/Settings.php:226
531
+ #: classes/WP_Piwik/Admin/Settings.php:228
532
+ msgid "Disabled in proxy mode."
533
+ msgstr ""
534
+
535
+ #: classes/WP_Piwik/Admin/Settings.php:228
536
+ msgid "Add rec parameter to noscript code"
537
+ msgstr ""
538
+
539
+ #: classes/WP_Piwik/Admin/Settings.php:228
540
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
541
+ msgstr ""
542
+
543
+ #: classes/WP_Piwik/Admin/Settings.php:230
544
+ msgid "Enable content tracking"
545
+ msgstr ""
546
+
547
+ #: classes/WP_Piwik/Admin/Settings.php:232
548
+ msgid "Track all content blocks"
549
+ msgstr ""
550
+
551
+ #: classes/WP_Piwik/Admin/Settings.php:233
552
+ msgid "Track only visible content blocks"
553
+ msgstr ""
554
+
555
+ #: classes/WP_Piwik/Admin/Settings.php:234
556
+ msgid ""
557
+ "Content tracking allows you to track interaction with the content of a web "
558
+ "page or application."
559
+ msgstr ""
560
+
561
+ #: classes/WP_Piwik/Admin/Settings.php:234
562
+ #: classes/WP_Piwik/Admin/Settings.php:236
563
+ #: classes/WP_Piwik/Admin/Settings.php:245
564
+ #: classes/WP_Piwik/Admin/Settings.php:247
565
+ #: classes/WP_Piwik/Admin/Settings.php:249
566
+ #: classes/WP_Piwik/Admin/Settings.php:270
567
+ #: classes/WP_Piwik/Admin/Settings.php:272
568
+ #: classes/WP_Piwik/Admin/Settings.php:278
569
+ #: classes/WP_Piwik/Admin/Settings.php:343
570
+ #, php-format
571
+ msgid "See %sPiwik documentation%s."
572
+ msgstr ""
573
+
574
+ #: classes/WP_Piwik/Admin/Settings.php:236
575
+ msgid "Track search"
576
+ msgstr ""
577
+
578
+ #: classes/WP_Piwik/Admin/Settings.php:236
579
+ msgid "Use Piwik's advanced Site Search Analytics feature."
580
+ msgstr ""
581
+
582
+ #: classes/WP_Piwik/Admin/Settings.php:238
583
+ msgid "Track 404"
584
+ msgstr "ट्रैक 404"
585
+
586
+ #: classes/WP_Piwik/Admin/Settings.php:238
587
+ msgid ""
588
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
589
+ msgstr ""
590
+
591
+ #: classes/WP_Piwik/Admin/Settings.php:241
592
+ msgid "Add annotation on new post of type"
593
+ msgstr ""
594
+
595
+ #: classes/WP_Piwik/Admin/Settings.php:247
596
+ msgid "Show custom variables box"
597
+ msgstr ""
598
+
599
+ #: classes/WP_Piwik/Admin/Settings.php:247
600
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
601
+ msgstr ""
602
+
603
+ #: classes/WP_Piwik/Admin/Settings.php:249
604
+ msgid "Add new file types for download tracking"
605
+ msgstr ""
606
+
607
+ #: classes/WP_Piwik/Admin/Settings.php:249
608
+ msgid ""
609
+ "Add file extensions for download tracking, divided by a vertical bar "
610
+ "(&#124;)."
611
+ msgstr ""
612
+
613
+ #: classes/WP_Piwik/Admin/Settings.php:251
614
+ msgid "Disable cookies"
615
+ msgstr "कुकी अक्षम करें"
616
+
617
+ #: classes/WP_Piwik/Admin/Settings.php:251
618
+ msgid "Disable all tracking cookies for a visitor."
619
+ msgstr ""
620
+
621
+ #: classes/WP_Piwik/Admin/Settings.php:253
622
+ msgid "Limit cookie lifetime"
623
+ msgstr ""
624
+
625
+ #: classes/WP_Piwik/Admin/Settings.php:253
626
+ msgid ""
627
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
628
+ " period as necessary."
629
+ msgstr ""
630
+
631
+ #: classes/WP_Piwik/Admin/Settings.php:255
632
+ msgid "Visitor timeout (seconds)"
633
+ msgstr ""
634
+
635
+ #: classes/WP_Piwik/Admin/Settings.php:257
636
+ msgid "Session timeout (seconds)"
637
+ msgstr ""
638
+
639
+ #: classes/WP_Piwik/Admin/Settings.php:259
640
+ msgid "Referral timeout (seconds)"
641
+ msgstr ""
642
+
643
+ #: classes/WP_Piwik/Admin/Settings.php:261
644
+ msgid "Track admin pages"
645
+ msgstr ""
646
+
647
+ #: classes/WP_Piwik/Admin/Settings.php:261
648
+ msgid ""
649
+ "Enable to track users on admin pages (remember to configure the tracking "
650
+ "filter appropriately)."
651
+ msgstr ""
652
+
653
+ #: classes/WP_Piwik/Admin/Settings.php:264
654
+ msgid "Tracking filter"
655
+ msgstr ""
656
+
657
+ #: classes/WP_Piwik/Admin/Settings.php:268
658
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
659
+ msgstr ""
660
+
661
+ #: classes/WP_Piwik/Admin/Settings.php:270
662
+ msgid "Track subdomains in the same website"
663
+ msgstr ""
664
+
665
+ #: classes/WP_Piwik/Admin/Settings.php:270
666
+ msgid "Adds *.-prefix to cookie domain."
667
+ msgstr ""
668
+
669
+ #: classes/WP_Piwik/Admin/Settings.php:272
670
+ msgid "Do not count subdomains as outlink"
671
+ msgstr ""
672
+
673
+ #: classes/WP_Piwik/Admin/Settings.php:272
674
+ msgid "Adds *.-prefix to tracked domain."
675
+ msgstr ""
676
+
677
+ #: classes/WP_Piwik/Admin/Settings.php:274
678
+ msgid "Enable cross domain linking"
679
+ msgstr ""
680
+
681
+ #: classes/WP_Piwik/Admin/Settings.php:274
682
+ msgid ""
683
+ "When enabled, it will make sure to use the same visitor ID for the same "
684
+ "visitor across several domains. This works only when this feature is enabled"
685
+ " because the visitor ID is stored in a cookie and cannot be read on the "
686
+ "other domain by default. When this feature is enabled, it will append a URL "
687
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
688
+ "URL that belongs to one of your domains. For this feature to work, you also "
689
+ "have to configure which domains should be treated as local in your Piwik "
690
+ "website settings. This feature requires Piwik 3.0.2."
691
+ msgstr ""
692
+
693
+ #: classes/WP_Piwik/Admin/Settings.php:276
694
+ msgid "Track RSS feeds"
695
+ msgstr ""
696
+
697
+ #: classes/WP_Piwik/Admin/Settings.php:276
698
+ msgid "Enable to track posts in feeds via tracking pixel."
699
+ msgstr ""
700
+
701
+ #: classes/WP_Piwik/Admin/Settings.php:278
702
+ msgid "Track RSS feed links as campaign"
703
+ msgstr ""
704
+
705
+ #: classes/WP_Piwik/Admin/Settings.php:278
706
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
707
+ msgstr ""
708
+
709
+ #: classes/WP_Piwik/Admin/Settings.php:280
710
+ msgid "RSS feed campaign"
711
+ msgstr ""
712
+
713
+ #: classes/WP_Piwik/Admin/Settings.php:280
714
+ msgid "Keyword: post name."
715
+ msgstr ""
716
+
717
+ #: classes/WP_Piwik/Admin/Settings.php:282
718
+ msgid "Enable heartbeat timer"
719
+ msgstr ""
720
+
721
+ #: classes/WP_Piwik/Admin/Settings.php:282
722
+ msgid ""
723
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
724
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
725
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
726
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
727
+ "HTTP requests on your site."
728
+ msgstr ""
729
+
730
+ #: classes/WP_Piwik/Admin/Settings.php:284
731
+ msgid "User ID Tracking"
732
+ msgstr ""
733
+
734
+ #: classes/WP_Piwik/Admin/Settings.php:286
735
+ msgid "WP User ID"
736
+ msgstr ""
737
+
738
+ #: classes/WP_Piwik/Admin/Settings.php:287
739
+ msgid "Email Address"
740
+ msgstr ""
741
+
742
+ #: classes/WP_Piwik/Admin/Settings.php:288
743
+ msgid "Username"
744
+ msgstr "उपयोगकर्ता नाम"
745
+
746
+ #: classes/WP_Piwik/Admin/Settings.php:289
747
+ msgid "Display Name (Not Recommended!)"
748
+ msgstr ""
749
+
750
+ #: classes/WP_Piwik/Admin/Settings.php:290
751
+ msgid ""
752
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
753
+ "can select which field from the User's profile is tracked as the &quot;User "
754
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
755
+ msgstr ""
756
+
757
+ #: classes/WP_Piwik/Admin/Settings.php:295
758
+ msgid ""
759
+ "Usually, you do not need to change these settings. If you want to do so, you"
760
+ " should know what you do or you got an expert's advice."
761
+ msgstr ""
762
+
763
+ #: classes/WP_Piwik/Admin/Settings.php:297
764
+ msgid "Enable cache"
765
+ msgstr ""
766
+
767
+ #: classes/WP_Piwik/Admin/Settings.php:297
768
+ msgid "Cache API calls, which not contain today's values, for a week."
769
+ msgstr ""
770
+
771
+ #: classes/WP_Piwik/Admin/Settings.php:300
772
+ msgid "HTTP connection via"
773
+ msgstr ""
774
+
775
+ #: classes/WP_Piwik/Admin/Settings.php:301
776
+ #: classes/WP_Piwik/Admin/Settings.php:590
777
+ msgid "cURL"
778
+ msgstr "cURL"
779
+
780
+ #: classes/WP_Piwik/Admin/Settings.php:302
781
+ #: classes/WP_Piwik/Admin/Settings.php:590
782
+ msgid "fopen"
783
+ msgstr "fopen"
784
+
785
+ #: classes/WP_Piwik/Admin/Settings.php:303
786
+ msgid ""
787
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
788
+ " or Cloud mode."
789
+ msgstr ""
790
+
791
+ #: classes/WP_Piwik/Admin/Settings.php:305
792
+ msgid "HTTP method"
793
+ msgstr ""
794
+
795
+ #: classes/WP_Piwik/Admin/Settings.php:306
796
+ #: classes/WP_Piwik/Admin/Settings.php:590
797
+ msgid "POST"
798
+ msgstr "POST"
799
+
800
+ #: classes/WP_Piwik/Admin/Settings.php:307
801
+ #: classes/WP_Piwik/Admin/Settings.php:590
802
+ msgid "GET"
803
+ msgstr "GET"
804
+
805
+ #: classes/WP_Piwik/Admin/Settings.php:308
806
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
807
+ msgstr ""
808
+
809
+ #: classes/WP_Piwik/Admin/Settings.php:310
810
+ msgid "Disable time limit"
811
+ msgstr ""
812
+
813
+ #: classes/WP_Piwik/Admin/Settings.php:310
814
+ msgid "Use set_time_limit(0) if stats page causes a time out."
815
+ msgstr ""
816
+
817
+ #: classes/WP_Piwik/Admin/Settings.php:312
818
+ msgid "Connection timeout"
819
+ msgstr ""
820
+
821
+ #: classes/WP_Piwik/Admin/Settings.php:314
822
+ msgid "Disable SSL peer verification"
823
+ msgstr ""
824
+
825
+ #: classes/WP_Piwik/Admin/Settings.php:314
826
+ #: classes/WP_Piwik/Admin/Settings.php:315
827
+ msgid "not recommended"
828
+ msgstr ""
829
+
830
+ #: classes/WP_Piwik/Admin/Settings.php:315
831
+ msgid "Disable SSL host verification"
832
+ msgstr ""
833
+
834
+ #: classes/WP_Piwik/Admin/Settings.php:317
835
+ msgid "User agent"
836
+ msgstr ""
837
+
838
+ #: classes/WP_Piwik/Admin/Settings.php:318
839
+ msgid "Use the PHP default user agent"
840
+ msgstr ""
841
+
842
+ #: classes/WP_Piwik/Admin/Settings.php:318
843
+ msgid "empty"
844
+ msgstr "रिक्त"
845
+
846
+ #: classes/WP_Piwik/Admin/Settings.php:319
847
+ msgid "Define a specific user agent"
848
+ msgstr ""
849
+
850
+ #: classes/WP_Piwik/Admin/Settings.php:321
851
+ msgid "Specific user agent"
852
+ msgstr ""
853
+
854
+ #: classes/WP_Piwik/Admin/Settings.php:323
855
+ msgid "Enable DNS prefetch"
856
+ msgstr ""
857
+
858
+ #: classes/WP_Piwik/Admin/Settings.php:323
859
+ #, php-format
860
+ msgid "See %sPiwik Blog%s."
861
+ msgstr ""
862
+
863
+ #: classes/WP_Piwik/Admin/Settings.php:323
864
+ msgid "Add a DNS prefetch tag. "
865
+ msgstr ""
866
+
867
+ #: classes/WP_Piwik/Admin/Settings.php:325
868
+ msgid "Add data-cfasync=false"
869
+ msgstr ""
870
+
871
+ #: classes/WP_Piwik/Admin/Settings.php:325
872
+ #, php-format
873
+ msgid "See %sCloudFlare Knowledge Base%s."
874
+ msgstr ""
875
+
876
+ #: classes/WP_Piwik/Admin/Settings.php:325
877
+ msgid ""
878
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
879
+ "ignore the script. "
880
+ msgstr ""
881
+
882
+ #: classes/WP_Piwik/Admin/Settings.php:327
883
+ msgid "CDN URL"
884
+ msgstr "CDN URL"
885
+
886
+ #: classes/WP_Piwik/Admin/Settings.php:329
887
+ msgid "CDN URL (SSL)"
888
+ msgstr "CDN URL (SSL)"
889
+
890
+ #: classes/WP_Piwik/Admin/Settings.php:331
891
+ msgid "Force Piwik to use a specific protocol"
892
+ msgstr ""
893
+
894
+ #: classes/WP_Piwik/Admin/Settings.php:332
895
+ msgid "Disabled (default)"
896
+ msgstr ""
897
+
898
+ #: classes/WP_Piwik/Admin/Settings.php:333
899
+ msgid "http"
900
+ msgstr "http"
901
+
902
+ #: classes/WP_Piwik/Admin/Settings.php:334
903
+ msgid "https (SSL)"
904
+ msgstr "https (SSL)"
905
+
906
+ #: classes/WP_Piwik/Admin/Settings.php:335
907
+ msgid ""
908
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
909
+ "work with a CDN URL."
910
+ msgstr ""
911
+
912
+ #: classes/WP_Piwik/Admin/Settings.php:337
913
+ msgid "Update notice"
914
+ msgstr "सूचना अद्यतन"
915
+
916
+ #: classes/WP_Piwik/Admin/Settings.php:338
917
+ msgid "Show always if WP-Piwik is updated"
918
+ msgstr ""
919
+
920
+ #: classes/WP_Piwik/Admin/Settings.php:339
921
+ msgid "Show only if WP-Piwik is updated and settings were changed"
922
+ msgstr ""
923
+
924
+ #: classes/WP_Piwik/Admin/Settings.php:341
925
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
926
+ msgstr ""
927
+
928
+ #: classes/WP_Piwik/Admin/Settings.php:343
929
+ msgid "Define all file types for download tracking"
930
+ msgstr ""
931
+
932
+ #: classes/WP_Piwik/Admin/Settings.php:343
933
+ msgid ""
934
+ "Replace Piwik's default file extensions for download tracking, divided by a "
935
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
936
+ msgstr ""
937
+
938
+ #: classes/WP_Piwik/Admin/Settings.php:345
939
+ msgid "Set classes to be treated as downloads"
940
+ msgstr ""
941
+
942
+ #: classes/WP_Piwik/Admin/Settings.php:345
943
+ msgid ""
944
+ "Set classes to be treated as downloads (in addition to piwik_download), "
945
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
946
+ "settings."
947
+ msgstr ""
948
+
949
+ #: classes/WP_Piwik/Admin/Settings.php:345
950
+ #: classes/WP_Piwik/Admin/Settings.php:347
951
+ #, php-format
952
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
953
+ msgstr ""
954
+
955
+ #: classes/WP_Piwik/Admin/Settings.php:347
956
+ msgid "Set classes to be treated as outlinks"
957
+ msgstr ""
958
+
959
+ #: classes/WP_Piwik/Admin/Settings.php:347
960
+ msgid ""
961
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
962
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
963
+ msgstr ""
964
+
965
+ #: classes/WP_Piwik/Admin/Settings.php:508
966
+ msgid "Donate"
967
+ msgstr "दान"
968
+
969
+ #: classes/WP_Piwik/Admin/Settings.php:511
970
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
971
+ msgstr ""
972
+
973
+ #: classes/WP_Piwik/Admin/Settings.php:530
974
+ msgid "My Amazon.de wishlist"
975
+ msgstr ""
976
+
977
+ #: classes/WP_Piwik/Admin/Settings.php:533
978
+ #: classes/WP_Piwik/Admin/Settings.php:575
979
+ msgid "Please don't forget to vote the compatibility at the"
980
+ msgstr ""
981
+
982
+ #: classes/WP_Piwik/Admin/Settings.php:561
983
+ msgid "Thank you very much for your donation"
984
+ msgstr "आपके दान के लिए धन्यवाद"
985
+
986
+ #: classes/WP_Piwik/Admin/Settings.php:561
987
+ msgid "the Piwik team itself"
988
+ msgstr ""
989
+
990
+ #: classes/WP_Piwik/Admin/Settings.php:561
991
+ msgid ", and all people flattering this"
992
+ msgstr ""
993
+
994
+ #: classes/WP_Piwik/Admin/Settings.php:562
995
+ msgid ""
996
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
997
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
998
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
999
+ "Sparklines</a> (License: New BSD License)."
1000
+ msgstr ""
1001
+
1002
+ #: classes/WP_Piwik/Admin/Settings.php:563
1003
+ msgid "Thank you very much"
1004
+ msgstr "बहुत बहुत धन्यवाद"
1005
+
1006
+ #: classes/WP_Piwik/Admin/Settings.php:563
1007
+ msgid "for your translation work"
1008
+ msgstr "आपके अनुवाद कार्य हेतु"
1009
+
1010
+ #: classes/WP_Piwik/Admin/Settings.php:564
1011
+ msgid ""
1012
+ "Thank you very much, all users who send me mails containing criticism, "
1013
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1014
+ " much better."
1015
+ msgstr ""
1016
+
1017
+ #: classes/WP_Piwik/Admin/Settings.php:565
1018
+ msgid ""
1019
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1020
+ "if my piece of code is really used!"
1021
+ msgstr ""
1022
+
1023
+ #: classes/WP_Piwik/Admin/Settings.php:574
1024
+ msgid "The best place to get help:"
1025
+ msgstr "सबसे अच्छा जगह सहायता के लिए:"
1026
+
1027
+ #: classes/WP_Piwik/Admin/Settings.php:574
1028
+ msgid "WP-Piwik support forum"
1029
+ msgstr "WP-Piwik सहायता मंच"
1030
+
1031
+ #: classes/WP_Piwik/Admin/Settings.php:577
1032
+ msgid "Debugging"
1033
+ msgstr ""
1034
+
1035
+ #: classes/WP_Piwik/Admin/Settings.php:578
1036
+ msgid ""
1037
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1038
+ "available:"
1039
+ msgstr ""
1040
+
1041
+ #: classes/WP_Piwik/Admin/Settings.php:581
1042
+ msgid "cURL is"
1043
+ msgstr ""
1044
+
1045
+ #: classes/WP_Piwik/Admin/Settings.php:582
1046
+ #: classes/WP_Piwik/Admin/Settings.php:587
1047
+ msgid "not"
1048
+ msgstr ""
1049
+
1050
+ #: classes/WP_Piwik/Admin/Settings.php:583
1051
+ msgid "available"
1052
+ msgstr ""
1053
+
1054
+ #: classes/WP_Piwik/Admin/Settings.php:586
1055
+ msgid "allow_url_fopen is"
1056
+ msgstr "allow_url_fopen है"
1057
+
1058
+ #: classes/WP_Piwik/Admin/Settings.php:588
1059
+ msgid "enabled"
1060
+ msgstr ""
1061
+
1062
+ #: classes/WP_Piwik/Admin/Settings.php:590
1063
+ msgid "is used."
1064
+ msgstr ""
1065
+
1066
+ #: classes/WP_Piwik/Admin/Settings.php:592
1067
+ msgid "Determined Piwik base URL is"
1068
+ msgstr ""
1069
+
1070
+ #: classes/WP_Piwik/Admin/Settings.php:596
1071
+ msgid "Tools"
1072
+ msgstr "औज़ार"
1073
+
1074
+ #: classes/WP_Piwik/Admin/Settings.php:598
1075
+ msgid "Run testscript"
1076
+ msgstr ""
1077
+
1078
+ #: classes/WP_Piwik/Admin/Settings.php:599
1079
+ msgid "Sitebrowser"
1080
+ msgstr ""
1081
+
1082
+ #: classes/WP_Piwik/Admin/Settings.php:600
1083
+ msgid "Clear cache"
1084
+ msgstr ""
1085
+
1086
+ #: classes/WP_Piwik/Admin/Settings.php:601
1087
+ msgid "Are you sure you want to clear all settings?"
1088
+ msgstr ""
1089
+
1090
+ #: classes/WP_Piwik/Admin/Settings.php:601
1091
+ msgid "Reset WP-Piwik"
1092
+ msgstr ""
1093
+
1094
+ #: classes/WP_Piwik/Admin/Settings.php:603
1095
+ msgid "Latest support threads on WordPress.org"
1096
+ msgstr ""
1097
+
1098
+ #: classes/WP_Piwik/Admin/Settings.php:654
1099
+ msgid "Settings cleared (except connection settings)."
1100
+ msgstr ""
1101
+
1102
+ #: classes/WP_Piwik/Admin/Settings.php:670
1103
+ msgid "Cache cleared."
1104
+ msgstr ""
1105
+
1106
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1107
+ msgid "site"
1108
+ msgstr ""
1109
+
1110
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1111
+ msgid "sites"
1112
+ msgstr ""
1113
+
1114
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1115
+ msgid "No site configured yet."
1116
+ msgstr ""
1117
+
1118
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1119
+ msgid "Blog ID"
1120
+ msgstr ""
1121
+
1122
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1123
+ msgid "Title"
1124
+ msgstr ""
1125
+
1126
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1127
+ msgid "URL"
1128
+ msgstr "यूआरएल"
1129
+
1130
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1131
+ msgid "Site ID (Piwik)"
1132
+ msgstr "साइट आईडी (Piwik)"
1133
+
1134
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1135
+ msgid "Site not created yet."
1136
+ msgstr ""
1137
+
1138
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1139
+ msgid "Statistics"
1140
+ msgstr "आँकड़ा"
1141
+
1142
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1143
+ msgid "Currently shown stats:"
1144
+ msgstr ""
1145
+
1146
+ #: classes/WP_Piwik/Request/Php.php:27
1147
+ msgid "Could not resolve"
1148
+ msgstr ""
1149
+
1150
+ #: classes/WP_Piwik/Request/Php.php:27
1151
+ msgid "realpath() returns false"
1152
+ msgstr ""
1153
+
1154
+ #: classes/WP_Piwik/Request/Php.php:39
1155
+ msgid "Class Piwik\\FrontController does not exists."
1156
+ msgstr ""
1157
+
1158
+ #: classes/WP_Piwik/Request/Php.php:42
1159
+ msgid "Class Piwik\\API\\Request does not exists."
1160
+ msgstr ""
1161
+
1162
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1163
+ msgid "Piwik Custom Variables"
1164
+ msgstr ""
1165
+
1166
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1167
+ msgid "Name"
1168
+ msgstr "नाम"
1169
+
1170
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1171
+ msgid "Value"
1172
+ msgstr "मूल्य"
1173
+
1174
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1175
+ msgid "Set custom variables for a page view"
1176
+ msgstr ""
1177
+
1178
+ #: classes/WP_Piwik/Widget.php:91
1179
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1180
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1181
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1182
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1183
+ #: classes/WP_Piwik/Widget/Items.php:23
1184
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1185
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1186
+ #: classes/WP_Piwik/Widget/Overview.php:24
1187
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1188
+ #: classes/WP_Piwik/Widget/Screens.php:35
1189
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1190
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1191
+ #: classes/WP_Piwik/Widget/Systems.php:33
1192
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1193
+ msgid "Piwik error"
1194
+ msgstr "Piwik त्रुटि"
1195
+
1196
+ #: classes/WP_Piwik/Widget.php:100
1197
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1198
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1199
+ #: classes/WP_Piwik/Widget/Country.php:39
1200
+ #: classes/WP_Piwik/Widget/Screens.php:37
1201
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1202
+ #: classes/WP_Piwik/Widget/Systems.php:35
1203
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1204
+ msgid "Unique"
1205
+ msgstr ""
1206
+
1207
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1208
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1209
+ msgid "Visits"
1210
+ msgstr ""
1211
+
1212
+ #: classes/WP_Piwik/Widget.php:104
1213
+ msgid "Hits"
1214
+ msgstr ""
1215
+
1216
+ #: classes/WP_Piwik/Widget.php:106
1217
+ msgid "Actions"
1218
+ msgstr ""
1219
+
1220
+ #: classes/WP_Piwik/Widget.php:162
1221
+ msgid "No data available."
1222
+ msgstr "डाटा अनुपलब्ध"
1223
+
1224
+ #: classes/WP_Piwik/Widget.php:243
1225
+ msgid "today"
1226
+ msgstr ""
1227
+
1228
+ #: classes/WP_Piwik/Widget.php:248
1229
+ msgid "current month"
1230
+ msgstr ""
1231
+
1232
+ #: classes/WP_Piwik/Widget.php:253
1233
+ msgid "last month"
1234
+ msgstr ""
1235
+
1236
+ #: classes/WP_Piwik/Widget.php:258
1237
+ msgid "current week"
1238
+ msgstr ""
1239
+
1240
+ #: classes/WP_Piwik/Widget.php:263
1241
+ msgid "last week"
1242
+ msgstr ""
1243
+
1244
+ #: classes/WP_Piwik/Widget.php:268
1245
+ msgid "yesterday"
1246
+ msgstr ""
1247
+
1248
+ #: classes/WP_Piwik/Widget.php:293
1249
+ msgid "week"
1250
+ msgstr "सप्ताह"
1251
+
1252
+ #: classes/WP_Piwik/Widget.php:328
1253
+ msgid "last 30 days"
1254
+ msgstr ""
1255
+
1256
+ #: classes/WP_Piwik/Widget.php:330
1257
+ msgid "last 12 "
1258
+ msgstr ""
1259
+
1260
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1261
+ msgid "Browser Details"
1262
+ msgstr "ब्राउज़र जानकारी"
1263
+
1264
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1265
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1266
+ msgid "Browser"
1267
+ msgstr "ब्राउज़र"
1268
+
1269
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1270
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1271
+ #: classes/WP_Piwik/Widget/Country.php:39
1272
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1273
+ #: classes/WP_Piwik/Widget/Screens.php:37
1274
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1275
+ #: classes/WP_Piwik/Widget/Systems.php:35
1276
+ msgid "Percent"
1277
+ msgstr "प्रतिशत"
1278
+
1279
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1280
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1281
+ #: classes/WP_Piwik/Widget/Country.php:66
1282
+ #: classes/WP_Piwik/Widget/Screens.php:64
1283
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1284
+ #: classes/WP_Piwik/Widget/Systems.php:62
1285
+ msgid "Others"
1286
+ msgstr "अन्य"
1287
+
1288
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1289
+ msgid "Browsers"
1290
+ msgstr ""
1291
+
1292
+ #: classes/WP_Piwik/Widget/Chart.php:19
1293
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1294
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1295
+ msgid "Visitors"
1296
+ msgstr ""
1297
+
1298
+ #: classes/WP_Piwik/Widget/Chart.php:71
1299
+ msgid ""
1300
+ "The graph contains the values shown in the table below (visitors / unique / "
1301
+ "bounces). The red line shows a linear trendline (unique)."
1302
+ msgstr ""
1303
+
1304
+ #: classes/WP_Piwik/Widget/Country.php:18
1305
+ msgid "Countries"
1306
+ msgstr "देश"
1307
+
1308
+ #: classes/WP_Piwik/Widget/Country.php:39
1309
+ msgid "Country"
1310
+ msgstr "देश"
1311
+
1312
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1313
+ msgid "E-Commerce"
1314
+ msgstr ""
1315
+
1316
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1317
+ msgid "Conversions"
1318
+ msgstr "रूपांतरण"
1319
+
1320
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1321
+ msgid "Visits converted"
1322
+ msgstr ""
1323
+
1324
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1325
+ #: classes/WP_Piwik/Widget/Items.php:27
1326
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1327
+ msgid "Revenue"
1328
+ msgstr "राजस्व"
1329
+
1330
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1331
+ #: classes/WP_Piwik/Widget/Items.php:32
1332
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1333
+ msgid "Conversion rate"
1334
+ msgstr ""
1335
+
1336
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1337
+ msgid "Conversions (new visitor)"
1338
+ msgstr ""
1339
+
1340
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1341
+ msgid "Visits converted (new visitor)"
1342
+ msgstr ""
1343
+
1344
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1345
+ msgid "Revenue (new visitor)"
1346
+ msgstr ""
1347
+
1348
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1349
+ msgid "Conversion rate (new visitor)"
1350
+ msgstr ""
1351
+
1352
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1353
+ msgid "Conversions (returning visitor)"
1354
+ msgstr ""
1355
+
1356
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1357
+ msgid "Visits converted (returning visitor)"
1358
+ msgstr ""
1359
+
1360
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1361
+ msgid "Revenue (returning visitor)"
1362
+ msgstr ""
1363
+
1364
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1365
+ msgid "Conversion rate (returning visitor)"
1366
+ msgstr ""
1367
+
1368
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1369
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1370
+ msgid "Shortcut"
1371
+ msgstr ""
1372
+
1373
+ #: classes/WP_Piwik/Widget/Items.php:11
1374
+ msgid "E-Commerce Items"
1375
+ msgstr ""
1376
+
1377
+ #: classes/WP_Piwik/Widget/Items.php:26
1378
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1379
+ msgid "Label"
1380
+ msgstr "लेबल"
1381
+
1382
+ #: classes/WP_Piwik/Widget/Items.php:28
1383
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1384
+ msgid "Quantity"
1385
+ msgstr "मात्रा"
1386
+
1387
+ #: classes/WP_Piwik/Widget/Items.php:29
1388
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1389
+ msgid "Orders"
1390
+ msgstr ""
1391
+
1392
+ #: classes/WP_Piwik/Widget/Items.php:30
1393
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1394
+ msgid "Avg. price"
1395
+ msgstr ""
1396
+
1397
+ #: classes/WP_Piwik/Widget/Items.php:31
1398
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1399
+ msgid "Avg. quantity"
1400
+ msgstr ""
1401
+
1402
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1403
+ msgid "E-Commerce Item Categories"
1404
+ msgstr ""
1405
+
1406
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1407
+ msgid "Keywords"
1408
+ msgstr ""
1409
+
1410
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1411
+ #: classes/WP_Piwik/Widget/Search.php:16
1412
+ msgid "Site Search"
1413
+ msgstr ""
1414
+
1415
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1416
+ #: classes/WP_Piwik/Widget/Search.php:25
1417
+ msgid "Keyword"
1418
+ msgstr ""
1419
+
1420
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1421
+ #: classes/WP_Piwik/Widget/Search.php:25
1422
+ msgid "Requests"
1423
+ msgstr ""
1424
+
1425
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1426
+ #: classes/WP_Piwik/Widget/Search.php:25
1427
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1428
+ msgid "Bounced"
1429
+ msgstr ""
1430
+
1431
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1432
+ msgid "Overview"
1433
+ msgstr "अवलोकन"
1434
+
1435
+ #: classes/WP_Piwik/Widget/Overview.php:17
1436
+ msgid "dashboard"
1437
+ msgstr ""
1438
+
1439
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1440
+ msgid "Unique visitors"
1441
+ msgstr "नए दृश्यक"
1442
+
1443
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1444
+ msgid "Page views"
1445
+ msgstr ""
1446
+
1447
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1448
+ msgid "Total time spent"
1449
+ msgstr ""
1450
+
1451
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1452
+ msgid "Bounce count"
1453
+ msgstr ""
1454
+
1455
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1456
+ msgid "Time/visit"
1457
+ msgstr ""
1458
+
1459
+ #: classes/WP_Piwik/Widget/Overview.php:57
1460
+ msgid "Max. page views in one visit"
1461
+ msgstr ""
1462
+
1463
+ #: classes/WP_Piwik/Widget/Pages.php:16
1464
+ msgid "Pages"
1465
+ msgstr ""
1466
+
1467
+ #: classes/WP_Piwik/Widget/Pages.php:18
1468
+ msgid "Page"
1469
+ msgstr ""
1470
+
1471
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1472
+ msgid "Plugins"
1473
+ msgstr ""
1474
+
1475
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1476
+ msgid "Plugin"
1477
+ msgstr ""
1478
+
1479
+ #: classes/WP_Piwik/Widget/Post.php:43
1480
+ msgid "Min. generation time"
1481
+ msgstr ""
1482
+
1483
+ #: classes/WP_Piwik/Widget/Post.php:44
1484
+ msgid "Max. generation time"
1485
+ msgstr ""
1486
+
1487
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1488
+ msgid "Referrers"
1489
+ msgstr ""
1490
+
1491
+ #: classes/WP_Piwik/Widget/Screens.php:16
1492
+ msgid "Resolutions"
1493
+ msgstr ""
1494
+
1495
+ #: classes/WP_Piwik/Widget/Screens.php:37
1496
+ msgid "Resolution"
1497
+ msgstr ""
1498
+
1499
+ #: classes/WP_Piwik/Widget/Seo.php:13
1500
+ msgid "SEO"
1501
+ msgstr "SEO"
1502
+
1503
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1504
+ msgid "Operation System Details"
1505
+ msgstr "संचालन प्रणाली की जानकारी"
1506
+
1507
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1508
+ #: classes/WP_Piwik/Widget/Systems.php:35
1509
+ msgid "Operation System"
1510
+ msgstr "संचालन प्रणाली"
1511
+
1512
+ #: classes/WP_Piwik/Widget/Systems.php:14
1513
+ msgid "Operation Systems"
1514
+ msgstr "संचालन प्रणालियाँ"
1515
+
1516
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1517
+ msgid "Date"
1518
+ msgstr "दिनांक"
1519
+
1520
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1521
+ msgid "Page Views"
1522
+ msgstr ""
1523
+
1524
+ #: wp-piwik.php:60
1525
+ #, php-format
1526
+ msgid ""
1527
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1528
+ " Please update PHP to use WP-Piwik."
1529
+ msgstr ""
languages/wp-piwik-hu_HU.mo ADDED
Binary file
languages/wp-piwik-hu_HU.po ADDED
@@ -0,0 +1,1530 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Márk Kökény <oregapamgroup@gmail.com>, 2015-2016
4
+ # Márk Kökény <oregapamgroup@gmail.com>, 2016
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP-Piwik\n"
8
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
9
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
10
+ "Last-Translator: André Bräkling\n"
11
+ "Language-Team: Hungarian (Hungary) (http://www.transifex.com/piwik/wp-piwik/language/hu_HU/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: hu_HU\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: classes/WP_Piwik.php:203
19
+ #, php-format
20
+ msgid "%s %s installed."
21
+ msgstr "%s %s telepítve."
22
+
23
+ #: classes/WP_Piwik.php:203
24
+ msgid "Next you should connect to Piwik"
25
+ msgstr "Most kapcsolódnod kell a Piwik-hez"
26
+
27
+ #: classes/WP_Piwik.php:237
28
+ #, php-format
29
+ msgid "%s updated to %s."
30
+ msgstr "%s frissítve erre: %s."
31
+
32
+ #: classes/WP_Piwik.php:237
33
+ msgid "Please validate your configuration"
34
+ msgstr "Kérlek ellenőrizd a konfigurációd"
35
+
36
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
37
+ msgid "Settings"
38
+ msgstr "Beállítások"
39
+
40
+ #: classes/WP_Piwik.php:272
41
+ msgid "Important"
42
+ msgstr "Fontos"
43
+
44
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
45
+ msgid "Piwik Statistics"
46
+ msgstr "Piwik statisztikák"
47
+
48
+ #: classes/WP_Piwik.php:499
49
+ msgid "Configure WP-Piwik"
50
+ msgstr "WP-Piwik beállításai"
51
+
52
+ #: classes/WP_Piwik.php:992
53
+ msgid "An error occured"
54
+ msgstr "Egy hiba adódott"
55
+
56
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
57
+ msgid "Support"
58
+ msgstr "Támogatás"
59
+
60
+ #: classes/WP_Piwik.php:1275
61
+ msgid "Cheatin&#8217; uh?"
62
+ msgstr "Csalsz &#8217;e, mi?"
63
+
64
+ #: classes/WP_Piwik/Admin/Settings.php:24
65
+ msgid "Reload"
66
+ msgstr "Újratöltés"
67
+
68
+ #: classes/WP_Piwik/Admin/Settings.php:27
69
+ msgid "Changes saved."
70
+ msgstr "Módosítások elmentve."
71
+
72
+ #: classes/WP_Piwik/Admin/Settings.php:55
73
+ msgid "Thanks for using WP-Piwik!"
74
+ msgstr "Köszönjük, hogy a WP-Piwik-et használod!"
75
+
76
+ #: classes/WP_Piwik/Admin/Settings.php:58
77
+ #, php-format
78
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
79
+ msgstr "WP-Piwik %s sikeresen kapcsolódott a Piwik %s-hez."
80
+
81
+ #: classes/WP_Piwik/Admin/Settings.php:58
82
+ #, php-format
83
+ msgid "You are running WordPress %s."
84
+ msgstr "WordPress %s verzióját használod."
85
+
86
+ #: classes/WP_Piwik/Admin/Settings.php:58
87
+ #, php-format
88
+ msgid ""
89
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
90
+ "your sites as different websites."
91
+ msgstr "WordPress %s bloghálózatot (WPMU) használsz. WP-Piwik külön oldalként kezeli minden oldalad."
92
+
93
+ #: classes/WP_Piwik/Admin/Settings.php:62
94
+ #, php-format
95
+ msgid ""
96
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
97
+ " the &raquo;Connect to Piwik&laquo; section below."
98
+ msgstr "WP-Piwik %s nem tud kapcsolatot létesíteni a Piwik-el a megadott kapcsolati adatok alapján. Ellenőrizd a &raquo;Kapcsolódás Piwikhez&laquo; szekciót lentebb."
99
+
100
+ #: classes/WP_Piwik/Admin/Settings.php:64
101
+ #, php-format
102
+ msgid ""
103
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
104
+ "During connection the following error occured: <br /><code>%s</code>"
105
+ msgstr "WP-Piwik %s nem tud kapcsolatot létesíteni a Piwik-el a megadott kapcsolati adatok alapján. Kapcsolódás közben az alábbi hiba lépett fel: <br /><code>%s</code>"
106
+
107
+ #: classes/WP_Piwik/Admin/Settings.php:67
108
+ #, php-format
109
+ msgid ""
110
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
111
+ "Piwik&laquo; section below."
112
+ msgstr "WP-Piwik-nek mindenekelőtt kapcsolatban kell lennie a Piwik-el. Ellenőrizd a &raquo;Kapcsolódás Piwikhez&laquo; szekciót lentebb."
113
+
114
+ #: classes/WP_Piwik/Admin/Settings.php:71
115
+ msgid "Connect to Piwik"
116
+ msgstr "Kapcsolódás Piwik-hez"
117
+
118
+ #: classes/WP_Piwik/Admin/Settings.php:76
119
+ msgid "Show Statistics"
120
+ msgstr "Statisztikák megjelenítése"
121
+
122
+ #: classes/WP_Piwik/Admin/Settings.php:80
123
+ msgid "Enable Tracking"
124
+ msgstr "Követés engedélyezése"
125
+
126
+ #: classes/WP_Piwik/Admin/Settings.php:85
127
+ msgid "Expert Settings"
128
+ msgstr "Haladó beállítások"
129
+
130
+ #: classes/WP_Piwik/Admin/Settings.php:93
131
+ msgid "Credits"
132
+ msgstr "Stáblista"
133
+
134
+ #: classes/WP_Piwik/Admin/Settings.php:106
135
+ msgid ""
136
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
137
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
138
+ " To use this you will need your own Piwik instance. If you do not already "
139
+ "have a Piwik setup, you have two simple options: use either"
140
+ msgstr "A WP-Piwik egy WordPress kiegészítő, amely a Piwik statisztikáit megjeleníti a te WordPress admin vezérlőpultodon, illetve Piwik követőkódot helyezhetsz el vele a blogodon. Használatához szükséged lesz egy saját működőképes Piwik rendszerre. Amennyiben nincs Piwik-ed, két egyszerű lehetőség közül választhatsz: választhatod bármelyiket"
141
+
142
+ #: classes/WP_Piwik/Admin/Settings.php:106
143
+ msgid "a self-hosted Piwik"
144
+ msgstr ""
145
+
146
+ #: classes/WP_Piwik/Admin/Settings.php:106
147
+ msgid "or"
148
+ msgstr "vagy"
149
+
150
+ #: classes/WP_Piwik/Admin/Settings.php:106
151
+ msgid "a cloud-hosted Piwik by InnoCraft"
152
+ msgstr ""
153
+
154
+ #: classes/WP_Piwik/Admin/Settings.php:109
155
+ msgid ""
156
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
157
+ "and not connect to InnoCraft Cloud."
158
+ msgstr ""
159
+
160
+ #: classes/WP_Piwik/Admin/Settings.php:109
161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
162
+ msgid "More information"
163
+ msgstr "További információk"
164
+
165
+ #: classes/WP_Piwik/Admin/Settings.php:111
166
+ msgid "You can choose between three connection methods:"
167
+ msgstr "Válassz a három kapcsolódási metódus közül:"
168
+
169
+ #: classes/WP_Piwik/Admin/Settings.php:111
170
+ #: classes/WP_Piwik/Admin/Settings.php:114
171
+ msgid "Self-hosted (HTTP API, default)"
172
+ msgstr "Általad-üzemeltetettt (HTTP API, alapértelmezett)"
173
+
174
+ #: classes/WP_Piwik/Admin/Settings.php:111
175
+ msgid ""
176
+ "This is the default option for a self-hosted Piwik and should work for most "
177
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
178
+ msgstr "Ez az alapértelmezett beállítás az általad-üzemeltetett Piwik-hez, ennek a legtöbb esetben működnie kell. WP-Piwik http(s)-en keresztül fog csatlakozni Piwik-edhez."
179
+
180
+ #: classes/WP_Piwik/Admin/Settings.php:111
181
+ #: classes/WP_Piwik/Admin/Settings.php:115
182
+ msgid "Self-hosted (PHP API)"
183
+ msgstr "Általad-üzemeltetett (PHP API)"
184
+
185
+ #: classes/WP_Piwik/Admin/Settings.php:111
186
+ msgid ""
187
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
188
+ " machine and you know the full server path to your Piwik instance."
189
+ msgstr "Válaszd ezt, ha az általad-üzemeltetett Piwik és a WordPress ugyanazon a szervergépen fut és tudod a teljes elérési útvonalat Piwik rendszeredhez."
190
+
191
+ #: classes/WP_Piwik/Admin/Settings.php:111
192
+ #: classes/WP_Piwik/Admin/Settings.php:116
193
+ msgid "Cloud-hosted (InnoCraft Cloud)"
194
+ msgstr ""
195
+
196
+ #: classes/WP_Piwik/Admin/Settings.php:111
197
+ msgid ""
198
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
199
+ "option."
200
+ msgstr ""
201
+
202
+ #: classes/WP_Piwik/Admin/Settings.php:112
203
+ msgid "Piwik Mode"
204
+ msgstr "Piwik üzemmód"
205
+
206
+ #: classes/WP_Piwik/Admin/Settings.php:113
207
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
208
+ msgstr "Letiltva (WP-Piwik nem csatlakozik a Piwikhez)"
209
+
210
+ #: classes/WP_Piwik/Admin/Settings.php:119
211
+ msgid "Piwik URL"
212
+ msgstr "Piwik URL"
213
+
214
+ #: classes/WP_Piwik/Admin/Settings.php:119
215
+ msgid ""
216
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
217
+ "instance, e.g. http://www.example.com/piwik/."
218
+ msgstr "Add meg Piwik-ed URL címét. Ugyan az a cím, amelyen te is eléred Piwik-ed webböngészőn keresztül. Pl.: http://www.example.com/piwik/."
219
+
220
+ #: classes/WP_Piwik/Admin/Settings.php:120
221
+ msgid "Piwik path"
222
+ msgstr "Piwik útvonal"
223
+
224
+ #: classes/WP_Piwik/Admin/Settings.php:120
225
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
226
+ msgstr "Add meg az elérési útvonalat a Piwik telepítésedhez, pl.: /var/www/piwik/."
227
+
228
+ #: classes/WP_Piwik/Admin/Settings.php:121
229
+ msgid "Piwik subdomain"
230
+ msgstr ""
231
+
232
+ #: classes/WP_Piwik/Admin/Settings.php:121
233
+ msgid ""
234
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
235
+ "https://SUBDOMAIN.innocraft.cloud."
236
+ msgstr ""
237
+
238
+ #: classes/WP_Piwik/Admin/Settings.php:122
239
+ msgid "Auth token"
240
+ msgstr "Authorizációs token"
241
+
242
+ #: classes/WP_Piwik/Admin/Settings.php:122
243
+ msgid ""
244
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
245
+ "0a1b2c34d56e78901fa2bc3d45678efa."
246
+ msgstr "Írd be Piwik authorizációs tokened ide. Ez egy alfanumerikus karaktersor, pl.: 0a1b2c34d56e78901fa2bc3d45678efa."
247
+
248
+ #: classes/WP_Piwik/Admin/Settings.php:122
249
+ #, php-format
250
+ msgid "See %sWP-Piwik FAQ%s."
251
+ msgstr "Bővebb infó %sWP-Piwik GYIK%s"
252
+
253
+ #: classes/WP_Piwik/Admin/Settings.php:127
254
+ msgid "Auto config"
255
+ msgstr "Automata konfiguráció"
256
+
257
+ #: classes/WP_Piwik/Admin/Settings.php:127
258
+ msgid ""
259
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
260
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
261
+ msgstr "Pipáld be ezt, hogy automatikusan kiválasszam a blogod a Piwik oldalaid közül URL alapján. Amennyiben még nem adtad hozzá az oldalad Piwik-hez, a WP-Piwik megteszi ezt helyetted."
262
+
263
+ #: classes/WP_Piwik/Admin/Settings.php:131
264
+ #, php-format
265
+ msgid ""
266
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
267
+ "/><code>%s</code>"
268
+ msgstr ""
269
+
270
+ #: classes/WP_Piwik/Admin/Settings.php:141
271
+ msgid "Determined site"
272
+ msgstr "Meghatározott oldal"
273
+
274
+ #: classes/WP_Piwik/Admin/Settings.php:146
275
+ msgid "Select site"
276
+ msgstr "Válassz oldalt"
277
+
278
+ #: classes/WP_Piwik/Admin/Settings.php:155
279
+ msgid "Piwik default date"
280
+ msgstr "Piwik alapértelmezett dátum"
281
+
282
+ #: classes/WP_Piwik/Admin/Settings.php:156
283
+ #: classes/WP_Piwik/Admin/Settings.php:170
284
+ msgid "Today"
285
+ msgstr "Ma"
286
+
287
+ #: classes/WP_Piwik/Admin/Settings.php:157
288
+ #: classes/WP_Piwik/Admin/Settings.php:169
289
+ msgid "Yesterday"
290
+ msgstr "Tegnap"
291
+
292
+ #: classes/WP_Piwik/Admin/Settings.php:158
293
+ msgid "Current month"
294
+ msgstr "Jelen hónap"
295
+
296
+ #: classes/WP_Piwik/Admin/Settings.php:159
297
+ msgid "Last month"
298
+ msgstr "Előző hónap"
299
+
300
+ #: classes/WP_Piwik/Admin/Settings.php:160
301
+ msgid "Current week"
302
+ msgstr "Jelen hét"
303
+
304
+ #: classes/WP_Piwik/Admin/Settings.php:161
305
+ msgid "Last week"
306
+ msgstr "Múlthét"
307
+
308
+ #: classes/WP_Piwik/Admin/Settings.php:162
309
+ msgid "Default date shown on statistics page."
310
+ msgstr "Alapértelmezett dátum látható a statisztikák oldalon."
311
+
312
+ #: classes/WP_Piwik/Admin/Settings.php:164
313
+ msgid "Show SEO data"
314
+ msgstr "SEO adat mejelenítése"
315
+
316
+ #: classes/WP_Piwik/Admin/Settings.php:164
317
+ msgid "Display SEO ranking data on statistics page."
318
+ msgstr "SEO rangsor adat megjelenítése a statisztikák oldalon."
319
+
320
+ #: classes/WP_Piwik/Admin/Settings.php:164
321
+ #: classes/WP_Piwik/Admin/Settings.php:176
322
+ msgid "Slow!"
323
+ msgstr "Lassú!"
324
+
325
+ #: classes/WP_Piwik/Admin/Settings.php:165
326
+ msgid "Show e-commerce data"
327
+ msgstr ""
328
+
329
+ #: classes/WP_Piwik/Admin/Settings.php:165
330
+ msgid "Display e-commerce data on statistics page."
331
+ msgstr ""
332
+
333
+ #: classes/WP_Piwik/Admin/Settings.php:167
334
+ msgid "Dashboard overview"
335
+ msgstr "Vezérlőpult összesítés"
336
+
337
+ #: classes/WP_Piwik/Admin/Settings.php:168
338
+ #: classes/WP_Piwik/Admin/Settings.php:208
339
+ #: classes/WP_Piwik/Admin/Settings.php:210
340
+ #: classes/WP_Piwik/Admin/Settings.php:231
341
+ #: classes/WP_Piwik/Admin/Settings.php:285
342
+ #: classes/WP_Piwik/Admin/Settings.php:340
343
+ msgid "Disabled"
344
+ msgstr "Letiltva"
345
+
346
+ #: classes/WP_Piwik/Admin/Settings.php:171
347
+ msgid "Last 30 days"
348
+ msgstr "Utolsó 30 nap"
349
+
350
+ #: classes/WP_Piwik/Admin/Settings.php:172
351
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
352
+ msgstr "WP-Piwik vezérlőpulti widget &quot;Összegzés&quot; engedélyezése."
353
+
354
+ #: classes/WP_Piwik/Admin/Settings.php:174
355
+ msgid "Dashboard graph"
356
+ msgstr "Vezélőpult grafikon"
357
+
358
+ #: classes/WP_Piwik/Admin/Settings.php:174
359
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
360
+ msgstr "WP-Piwik vezérlőpulti widget &quot;Grafikon&quot; engedélyezése."
361
+
362
+ #: classes/WP_Piwik/Admin/Settings.php:176
363
+ msgid "Dashboard SEO"
364
+ msgstr "Vezélőpult grafikon"
365
+
366
+ #: classes/WP_Piwik/Admin/Settings.php:176
367
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
368
+ msgstr "WP-Piwik vezérlőpulti widget &quot;SEO&quot; engedélyezése."
369
+
370
+ #: classes/WP_Piwik/Admin/Settings.php:178
371
+ msgid "Dashboard e-commerce"
372
+ msgstr ""
373
+
374
+ #: classes/WP_Piwik/Admin/Settings.php:178
375
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
376
+ msgstr ""
377
+
378
+ #: classes/WP_Piwik/Admin/Settings.php:180
379
+ msgid "Show graph on WordPress Toolbar"
380
+ msgstr "Grafikon megjelenítése a WordPress eszköztáron"
381
+
382
+ #: classes/WP_Piwik/Admin/Settings.php:180
383
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
384
+ msgstr "Utolsó 30 nap látogatói adatainak megjelenítése a WordPress eszköztáron."
385
+
386
+ #: classes/WP_Piwik/Admin/Settings.php:182
387
+ msgid "Display stats to"
388
+ msgstr "Statisztikák megjelenítése ehhez:"
389
+
390
+ #: classes/WP_Piwik/Admin/Settings.php:189
391
+ msgid "Choose user roles allowed to see the statistics page."
392
+ msgstr "Válaszd ki, melyik felhasználói csoport tagjai láthatják a statisztikák oldalt."
393
+
394
+ #: classes/WP_Piwik/Admin/Settings.php:191
395
+ msgid "Show per post stats"
396
+ msgstr "Megjelenítendő bejegyzés statisztikák száma"
397
+
398
+ #: classes/WP_Piwik/Admin/Settings.php:191
399
+ msgid "Show stats about single posts at the post edit admin page."
400
+ msgstr "Az egyszeri bejegyzések statisztikáit jeleníti meg az admin oldalon."
401
+
402
+ #: classes/WP_Piwik/Admin/Settings.php:193
403
+ msgid "Piwik shortcut"
404
+ msgstr "Piwik parancsikon"
405
+
406
+ #: classes/WP_Piwik/Admin/Settings.php:193
407
+ msgid "Display a shortcut to Piwik itself."
408
+ msgstr "Piwik prancsikon megejlenítése."
409
+
410
+ #: classes/WP_Piwik/Admin/Settings.php:195
411
+ msgid "WP-Piwik display name"
412
+ msgstr "WP-Piwik megjelenítendő neve"
413
+
414
+ #: classes/WP_Piwik/Admin/Settings.php:195
415
+ msgid "Plugin name shown in WordPress."
416
+ msgstr "Ez a név fog megjelenni a WordPressben."
417
+
418
+ #: classes/WP_Piwik/Admin/Settings.php:197
419
+ msgid "Enable shortcodes"
420
+ msgstr "Shortcode engedélyezése"
421
+
422
+ #: classes/WP_Piwik/Admin/Settings.php:197
423
+ msgid "Enable shortcodes in post or page content."
424
+ msgstr "Shortkódok engedélyezése a bejegyzésben, vagy az oldal tartalmában"
425
+
426
+ #: classes/WP_Piwik/Admin/Settings.php:208
427
+ msgid "You can choose between four tracking code modes:"
428
+ msgstr "Négy követési módszer közül választhatsz:"
429
+
430
+ #: classes/WP_Piwik/Admin/Settings.php:208
431
+ msgid ""
432
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
433
+ "tracking code to your template files or you use another plugin to add the "
434
+ "tracking code."
435
+ msgstr "WP-Piwik nem állít be követőkódot. Használd ezt, ha manuálisan akarod beágyazni a követőkódod a sablonfájlokba, vagy másik kiegészítőt használsz erre a célra."
436
+
437
+ #: classes/WP_Piwik/Admin/Settings.php:208
438
+ #: classes/WP_Piwik/Admin/Settings.php:211
439
+ msgid "Default tracking"
440
+ msgstr "Alapértelmezett követés"
441
+
442
+ #: classes/WP_Piwik/Admin/Settings.php:208
443
+ msgid "WP-Piwik will use Piwik's standard tracking code."
444
+ msgstr "WP-Piwik a Piwik sztenderd követőkódját alkalmazza."
445
+
446
+ #: classes/WP_Piwik/Admin/Settings.php:208
447
+ #: classes/WP_Piwik/Admin/Settings.php:212
448
+ msgid "Use js/index.php"
449
+ msgstr "Használja a js/index.php-t"
450
+
451
+ #: classes/WP_Piwik/Admin/Settings.php:208
452
+ msgid ""
453
+ "You can choose this tracking code, to deliver a minified proxy code and to "
454
+ "avoid using the files called piwik.js or piwik.php."
455
+ msgstr "Választhatod ezt a követőkódot, amely kicsinyített proxy kódot tartalmaz, ezzel elkerülve a piwik.js illetve piwik.php fájlok használatát."
456
+
457
+ #: classes/WP_Piwik/Admin/Settings.php:208
458
+ #, php-format
459
+ msgid "See %sreadme file%s."
460
+ msgstr "Továbbiak az %solvass el fájlban%s."
461
+
462
+ #: classes/WP_Piwik/Admin/Settings.php:208
463
+ #: classes/WP_Piwik/Admin/Settings.php:213
464
+ msgid "Use proxy script"
465
+ msgstr "Használjon proxy szkriptet"
466
+
467
+ #: classes/WP_Piwik/Admin/Settings.php:208
468
+ msgid "Use this tracking code to not reveal the Piwik server URL."
469
+ msgstr "Használd ezt a követőkódot, és nem feded fel a Piwik szerver URL címét."
470
+
471
+ #: classes/WP_Piwik/Admin/Settings.php:208
472
+ #: classes/WP_Piwik/Admin/Settings.php:228
473
+ #: classes/WP_Piwik/Admin/Settings.php:238
474
+ #, php-format
475
+ msgid "See %sPiwik FAQ%s."
476
+ msgstr "Bővebb infó %sWP-Piwik GYIK%s"
477
+
478
+ #: classes/WP_Piwik/Admin/Settings.php:208
479
+ #: classes/WP_Piwik/Admin/Settings.php:214
480
+ msgid "Enter manually"
481
+ msgstr "Megadás manuálisan"
482
+
483
+ #: classes/WP_Piwik/Admin/Settings.php:208
484
+ msgid ""
485
+ "Enter your own tracking code manually. You can choose one of the prior "
486
+ "options, pre-configure your tracking code and switch to manually editing at "
487
+ "last."
488
+ msgstr "Írd be saját követőkódod manuálisan. Választhatsz egyet az előbbi opciók közül, elő-konfigurálod a követőkódot, majd a végén váltasz manuális szerkesztésre."
489
+
490
+ #: classes/WP_Piwik/Admin/Settings.php:208
491
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
492
+ msgstr "Használj placeholder-t {ID} hogy hozzáadd a Piwik oldal ID-t."
493
+
494
+ #: classes/WP_Piwik/Admin/Settings.php:209
495
+ msgid "Add tracking code"
496
+ msgstr "Követőkód hozzáadása"
497
+
498
+ #: classes/WP_Piwik/Admin/Settings.php:217
499
+ msgid "Tracking code"
500
+ msgstr "Követőkód"
501
+
502
+ #: classes/WP_Piwik/Admin/Settings.php:219
503
+ msgid "JavaScript code position"
504
+ msgstr "JavaScript kód pozíció"
505
+
506
+ #: classes/WP_Piwik/Admin/Settings.php:220
507
+ msgid "Footer"
508
+ msgstr "Lábléc"
509
+
510
+ #: classes/WP_Piwik/Admin/Settings.php:221
511
+ msgid "Header"
512
+ msgstr "Fejléc"
513
+
514
+ #: classes/WP_Piwik/Admin/Settings.php:222
515
+ msgid ""
516
+ "Choose whether the JavaScript code is added to the footer or the header."
517
+ msgstr "Válaszd ki, hogy a fejlécbe vagy a láblécbe kerüljön a JavaScript kód."
518
+
519
+ #: classes/WP_Piwik/Admin/Settings.php:224
520
+ msgid "Noscript code"
521
+ msgstr "Noscript kód"
522
+
523
+ #: classes/WP_Piwik/Admin/Settings.php:226
524
+ msgid "Add &lt;noscript&gt;"
525
+ msgstr "&lt;noscript&gt; Hozzáadása"
526
+
527
+ #: classes/WP_Piwik/Admin/Settings.php:226
528
+ msgid "Adds the &lt;noscript&gt; code to your footer."
529
+ msgstr "&lt;noscript&gt; kódot helyez a láblécbe."
530
+
531
+ #: classes/WP_Piwik/Admin/Settings.php:226
532
+ #: classes/WP_Piwik/Admin/Settings.php:228
533
+ msgid "Disabled in proxy mode."
534
+ msgstr "Proxy mód letiltva."
535
+
536
+ #: classes/WP_Piwik/Admin/Settings.php:228
537
+ msgid "Add rec parameter to noscript code"
538
+ msgstr "Rec paraméter hozzárendelése a noscript kódhoz"
539
+
540
+ #: classes/WP_Piwik/Admin/Settings.php:228
541
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
542
+ msgstr "JavaScript mentes látogatókövetés engedélyezése (nem ajánlott)."
543
+
544
+ #: classes/WP_Piwik/Admin/Settings.php:230
545
+ msgid "Enable content tracking"
546
+ msgstr "Tartalom követés engedélyezése"
547
+
548
+ #: classes/WP_Piwik/Admin/Settings.php:232
549
+ msgid "Track all content blocks"
550
+ msgstr "Minden tartalmi blokk követése"
551
+
552
+ #: classes/WP_Piwik/Admin/Settings.php:233
553
+ msgid "Track only visible content blocks"
554
+ msgstr "Csak a látható tartalmi blokk követése"
555
+
556
+ #: classes/WP_Piwik/Admin/Settings.php:234
557
+ msgid ""
558
+ "Content tracking allows you to track interaction with the content of a web "
559
+ "page or application."
560
+ msgstr "A tartalom követés engedélyezi számodra, hogy interakciókat kövess az oldal tartalmán belül, vagy egy applikációban."
561
+
562
+ #: classes/WP_Piwik/Admin/Settings.php:234
563
+ #: classes/WP_Piwik/Admin/Settings.php:236
564
+ #: classes/WP_Piwik/Admin/Settings.php:245
565
+ #: classes/WP_Piwik/Admin/Settings.php:247
566
+ #: classes/WP_Piwik/Admin/Settings.php:249
567
+ #: classes/WP_Piwik/Admin/Settings.php:270
568
+ #: classes/WP_Piwik/Admin/Settings.php:272
569
+ #: classes/WP_Piwik/Admin/Settings.php:278
570
+ #: classes/WP_Piwik/Admin/Settings.php:343
571
+ #, php-format
572
+ msgid "See %sPiwik documentation%s."
573
+ msgstr "Bővebb infó a %sPiwik dokumentációban%s."
574
+
575
+ #: classes/WP_Piwik/Admin/Settings.php:236
576
+ msgid "Track search"
577
+ msgstr "Keresés követése"
578
+
579
+ #: classes/WP_Piwik/Admin/Settings.php:236
580
+ msgid "Use Piwik's advanced Site Search Analytics feature."
581
+ msgstr "Piwik haladó oldal keresési analitika funkció használata."
582
+
583
+ #: classes/WP_Piwik/Admin/Settings.php:238
584
+ msgid "Track 404"
585
+ msgstr "404 követése"
586
+
587
+ #: classes/WP_Piwik/Admin/Settings.php:238
588
+ msgid ""
589
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
590
+ msgstr "WP-Piwik képes automatikusan 404-kategóriát létrehozni, hogy nyomonkövesse a 404-oldal-látogatásokat."
591
+
592
+ #: classes/WP_Piwik/Admin/Settings.php:241
593
+ msgid "Add annotation on new post of type"
594
+ msgstr ""
595
+
596
+ #: classes/WP_Piwik/Admin/Settings.php:247
597
+ msgid "Show custom variables box"
598
+ msgstr "Egyedi változók doboz megjelenítése"
599
+
600
+ #: classes/WP_Piwik/Admin/Settings.php:247
601
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
602
+ msgstr "Megjeleníti az &quot;egyedi változók&quot; szerkesztése dobozt a bejegyzés szerkesztés oldalon."
603
+
604
+ #: classes/WP_Piwik/Admin/Settings.php:249
605
+ msgid "Add new file types for download tracking"
606
+ msgstr "Új fájltípusok hozzáadása a letöltés követéshez"
607
+
608
+ #: classes/WP_Piwik/Admin/Settings.php:249
609
+ msgid ""
610
+ "Add file extensions for download tracking, divided by a vertical bar "
611
+ "(&#124;)."
612
+ msgstr "Új fájltípusok hozzáadása a letöltés követéshez, függőleges vonallal elválasztva (&#124;)."
613
+
614
+ #: classes/WP_Piwik/Admin/Settings.php:251
615
+ msgid "Disable cookies"
616
+ msgstr "Sütik letiltása"
617
+
618
+ #: classes/WP_Piwik/Admin/Settings.php:251
619
+ msgid "Disable all tracking cookies for a visitor."
620
+ msgstr "Minden követési süti letiltása egy látogatónak."
621
+
622
+ #: classes/WP_Piwik/Admin/Settings.php:253
623
+ msgid "Limit cookie lifetime"
624
+ msgstr "Süti élettartamának limitálása"
625
+
626
+ #: classes/WP_Piwik/Admin/Settings.php:253
627
+ msgid ""
628
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
629
+ " period as necessary."
630
+ msgstr "Limitálhatod a sütik élettartamát, hogy elkerülhesd a felhasználók a szükségesnél hosszabb benntartását."
631
+
632
+ #: classes/WP_Piwik/Admin/Settings.php:255
633
+ msgid "Visitor timeout (seconds)"
634
+ msgstr "Látogatói időkorlát (másodpercben)"
635
+
636
+ #: classes/WP_Piwik/Admin/Settings.php:257
637
+ msgid "Session timeout (seconds)"
638
+ msgstr "Munkamenet időkorlát (másodpercben)"
639
+
640
+ #: classes/WP_Piwik/Admin/Settings.php:259
641
+ msgid "Referral timeout (seconds)"
642
+ msgstr "Hivatkozás időkorlát (másodpercben)"
643
+
644
+ #: classes/WP_Piwik/Admin/Settings.php:261
645
+ msgid "Track admin pages"
646
+ msgstr "Admin oldalak követése"
647
+
648
+ #: classes/WP_Piwik/Admin/Settings.php:261
649
+ msgid ""
650
+ "Enable to track users on admin pages (remember to configure the tracking "
651
+ "filter appropriately)."
652
+ msgstr "Felhasználók követésének engedélyezése az admin oldalakon (ne felejts el megfelelő követési szűrőt alkalmazni)."
653
+
654
+ #: classes/WP_Piwik/Admin/Settings.php:264
655
+ msgid "Tracking filter"
656
+ msgstr "Követési szűrő"
657
+
658
+ #: classes/WP_Piwik/Admin/Settings.php:268
659
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
660
+ msgstr "Válaszd ki azokat a felhasználói szinteket amelyeket <strong>nem</strong> akarsz követni."
661
+
662
+ #: classes/WP_Piwik/Admin/Settings.php:270
663
+ msgid "Track subdomains in the same website"
664
+ msgstr "Aldomainek követése ugyanazon weboldalon"
665
+
666
+ #: classes/WP_Piwik/Admin/Settings.php:270
667
+ msgid "Adds *.-prefix to cookie domain."
668
+ msgstr "Hozzáad egy *.-prefixumot a domain sütiébe."
669
+
670
+ #: classes/WP_Piwik/Admin/Settings.php:272
671
+ msgid "Do not count subdomains as outlink"
672
+ msgstr "Ne számolja az aldomaineket a kilépési linkeknél"
673
+
674
+ #: classes/WP_Piwik/Admin/Settings.php:272
675
+ msgid "Adds *.-prefix to tracked domain."
676
+ msgstr "Hozzáad egy *.-prefixumot a követett domainhez."
677
+
678
+ #: classes/WP_Piwik/Admin/Settings.php:274
679
+ msgid "Enable cross domain linking"
680
+ msgstr ""
681
+
682
+ #: classes/WP_Piwik/Admin/Settings.php:274
683
+ msgid ""
684
+ "When enabled, it will make sure to use the same visitor ID for the same "
685
+ "visitor across several domains. This works only when this feature is enabled"
686
+ " because the visitor ID is stored in a cookie and cannot be read on the "
687
+ "other domain by default. When this feature is enabled, it will append a URL "
688
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
689
+ "URL that belongs to one of your domains. For this feature to work, you also "
690
+ "have to configure which domains should be treated as local in your Piwik "
691
+ "website settings. This feature requires Piwik 3.0.2."
692
+ msgstr ""
693
+
694
+ #: classes/WP_Piwik/Admin/Settings.php:276
695
+ msgid "Track RSS feeds"
696
+ msgstr "RSS csatornák követése"
697
+
698
+ #: classes/WP_Piwik/Admin/Settings.php:276
699
+ msgid "Enable to track posts in feeds via tracking pixel."
700
+ msgstr "Bejegyzések követése a csatornában követő pixel segítségével."
701
+
702
+ #: classes/WP_Piwik/Admin/Settings.php:278
703
+ msgid "Track RSS feed links as campaign"
704
+ msgstr "RSS csatorna linkek kampánykénti követése"
705
+
706
+ #: classes/WP_Piwik/Admin/Settings.php:278
707
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
708
+ msgstr ""
709
+
710
+ #: classes/WP_Piwik/Admin/Settings.php:280
711
+ msgid "RSS feed campaign"
712
+ msgstr "RSS csatorna kampány"
713
+
714
+ #: classes/WP_Piwik/Admin/Settings.php:280
715
+ msgid "Keyword: post name."
716
+ msgstr "Kulcsszó: hivatkozás neve."
717
+
718
+ #: classes/WP_Piwik/Admin/Settings.php:282
719
+ msgid "Enable heartbeat timer"
720
+ msgstr "Heartbeat időzítő engedélyezése"
721
+
722
+ #: classes/WP_Piwik/Admin/Settings.php:282
723
+ msgid ""
724
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
725
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
726
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
727
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
728
+ "HTTP requests on your site."
729
+ msgstr "A heartbeat időzítő engedélyezésével pontosabb látogatási hosszakat kaphatsz, periodikusan kiküldött HTTP ping kérések kiküldésének segítségével, rögtön miután az oldalt megnyitották. Add meg az időt a pingek között másodpercben(Piwik alapértelmezett: 15), hogy engedélyezd, vagy 0-t hogy letiltsd ezt a funkciót. <strong>Megjegyzés:</strong> Ez a funkció sok HTTP kérést okozhat az oldaladon."
730
+
731
+ #: classes/WP_Piwik/Admin/Settings.php:284
732
+ msgid "User ID Tracking"
733
+ msgstr "Felhasználó ID követés"
734
+
735
+ #: classes/WP_Piwik/Admin/Settings.php:286
736
+ msgid "WP User ID"
737
+ msgstr "WP felhasználó ID"
738
+
739
+ #: classes/WP_Piwik/Admin/Settings.php:287
740
+ msgid "Email Address"
741
+ msgstr "E-mailcím"
742
+
743
+ #: classes/WP_Piwik/Admin/Settings.php:288
744
+ msgid "Username"
745
+ msgstr "Felhasználóinév"
746
+
747
+ #: classes/WP_Piwik/Admin/Settings.php:289
748
+ msgid "Display Name (Not Recommended!)"
749
+ msgstr "Megjelenítési név (Nem ajánlott!)"
750
+
751
+ #: classes/WP_Piwik/Admin/Settings.php:290
752
+ msgid ""
753
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
754
+ "can select which field from the User's profile is tracked as the &quot;User "
755
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
756
+ msgstr "Mikor egy felhasználó bejelentkezik a WordPress-be, követi az ő &quot;User ID-át&quot;. Ki tudod választani, melyik mezőt tekintse a rendszer &quot;User ID-nak&quot;. Mikor engedélyezve van, ajánlott az email címet kiválasztani."
757
+
758
+ #: classes/WP_Piwik/Admin/Settings.php:295
759
+ msgid ""
760
+ "Usually, you do not need to change these settings. If you want to do so, you"
761
+ " should know what you do or you got an expert's advice."
762
+ msgstr "Általában nincs szükség ezen beállítások módosítására. Azonban ha akarod akkor megteheted, feltéve ha tudod, hogy mit csinálsz, vagy kaptál tanácsot hozzáértő személytől."
763
+
764
+ #: classes/WP_Piwik/Admin/Settings.php:297
765
+ msgid "Enable cache"
766
+ msgstr "Gyorsítótár engedélyezése"
767
+
768
+ #: classes/WP_Piwik/Admin/Settings.php:297
769
+ msgid "Cache API calls, which not contain today's values, for a week."
770
+ msgstr "API hívások gyorsítótárazása egy hétig, amelyek nem tartalmazzák a mai napi értékeket."
771
+
772
+ #: classes/WP_Piwik/Admin/Settings.php:300
773
+ msgid "HTTP connection via"
774
+ msgstr "HTTP kapcsolódás ezzel"
775
+
776
+ #: classes/WP_Piwik/Admin/Settings.php:301
777
+ #: classes/WP_Piwik/Admin/Settings.php:590
778
+ msgid "cURL"
779
+ msgstr "cURL"
780
+
781
+ #: classes/WP_Piwik/Admin/Settings.php:302
782
+ #: classes/WP_Piwik/Admin/Settings.php:590
783
+ msgid "fopen"
784
+ msgstr "fopen"
785
+
786
+ #: classes/WP_Piwik/Admin/Settings.php:303
787
+ msgid ""
788
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
789
+ " or Cloud mode."
790
+ msgstr ""
791
+
792
+ #: classes/WP_Piwik/Admin/Settings.php:305
793
+ msgid "HTTP method"
794
+ msgstr "HTTP metódus"
795
+
796
+ #: classes/WP_Piwik/Admin/Settings.php:306
797
+ #: classes/WP_Piwik/Admin/Settings.php:590
798
+ msgid "POST"
799
+ msgstr "POST"
800
+
801
+ #: classes/WP_Piwik/Admin/Settings.php:307
802
+ #: classes/WP_Piwik/Admin/Settings.php:590
803
+ msgid "GET"
804
+ msgstr "GET"
805
+
806
+ #: classes/WP_Piwik/Admin/Settings.php:308
807
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
808
+ msgstr ""
809
+
810
+ #: classes/WP_Piwik/Admin/Settings.php:310
811
+ msgid "Disable time limit"
812
+ msgstr "Időlimit letiltása"
813
+
814
+ #: classes/WP_Piwik/Admin/Settings.php:310
815
+ msgid "Use set_time_limit(0) if stats page causes a time out."
816
+ msgstr "set_time_limit(0) használata, ha a statisztikák oldal betöltésekor időtúllépés lép fel."
817
+
818
+ #: classes/WP_Piwik/Admin/Settings.php:312
819
+ msgid "Connection timeout"
820
+ msgstr "Kapcsolódási időkorlát"
821
+
822
+ #: classes/WP_Piwik/Admin/Settings.php:314
823
+ msgid "Disable SSL peer verification"
824
+ msgstr "SSL peer ellenőrzés letiltása"
825
+
826
+ #: classes/WP_Piwik/Admin/Settings.php:314
827
+ #: classes/WP_Piwik/Admin/Settings.php:315
828
+ msgid "not recommended"
829
+ msgstr "nem ajánlott"
830
+
831
+ #: classes/WP_Piwik/Admin/Settings.php:315
832
+ msgid "Disable SSL host verification"
833
+ msgstr "SSL hoszt ellenőrzésének letiltása"
834
+
835
+ #: classes/WP_Piwik/Admin/Settings.php:317
836
+ msgid "User agent"
837
+ msgstr "User agent"
838
+
839
+ #: classes/WP_Piwik/Admin/Settings.php:318
840
+ msgid "Use the PHP default user agent"
841
+ msgstr "Használja a PHP alapértlmezett user agent-jét"
842
+
843
+ #: classes/WP_Piwik/Admin/Settings.php:318
844
+ msgid "empty"
845
+ msgstr "üres"
846
+
847
+ #: classes/WP_Piwik/Admin/Settings.php:319
848
+ msgid "Define a specific user agent"
849
+ msgstr "Specifikus user agent meghatározása"
850
+
851
+ #: classes/WP_Piwik/Admin/Settings.php:321
852
+ msgid "Specific user agent"
853
+ msgstr "Specifikus user agent"
854
+
855
+ #: classes/WP_Piwik/Admin/Settings.php:323
856
+ msgid "Enable DNS prefetch"
857
+ msgstr ""
858
+
859
+ #: classes/WP_Piwik/Admin/Settings.php:323
860
+ #, php-format
861
+ msgid "See %sPiwik Blog%s."
862
+ msgstr ""
863
+
864
+ #: classes/WP_Piwik/Admin/Settings.php:323
865
+ msgid "Add a DNS prefetch tag. "
866
+ msgstr ""
867
+
868
+ #: classes/WP_Piwik/Admin/Settings.php:325
869
+ msgid "Add data-cfasync=false"
870
+ msgstr "data-cfasync=false hozzáadása"
871
+
872
+ #: classes/WP_Piwik/Admin/Settings.php:325
873
+ #, php-format
874
+ msgid "See %sCloudFlare Knowledge Base%s."
875
+ msgstr ""
876
+
877
+ #: classes/WP_Piwik/Admin/Settings.php:325
878
+ msgid ""
879
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
880
+ "ignore the script. "
881
+ msgstr ""
882
+
883
+ #: classes/WP_Piwik/Admin/Settings.php:327
884
+ msgid "CDN URL"
885
+ msgstr "CDN URL"
886
+
887
+ #: classes/WP_Piwik/Admin/Settings.php:329
888
+ msgid "CDN URL (SSL)"
889
+ msgstr "CDN URL (SSL)"
890
+
891
+ #: classes/WP_Piwik/Admin/Settings.php:331
892
+ msgid "Force Piwik to use a specific protocol"
893
+ msgstr "Erőltesse a Piwik-et, hogy használja a specifikus protokollt"
894
+
895
+ #: classes/WP_Piwik/Admin/Settings.php:332
896
+ msgid "Disabled (default)"
897
+ msgstr "Letiltva (alapértelmezett)"
898
+
899
+ #: classes/WP_Piwik/Admin/Settings.php:333
900
+ msgid "http"
901
+ msgstr "http"
902
+
903
+ #: classes/WP_Piwik/Admin/Settings.php:334
904
+ msgid "https (SSL)"
905
+ msgstr "https (SSL)"
906
+
907
+ #: classes/WP_Piwik/Admin/Settings.php:335
908
+ msgid ""
909
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
910
+ "work with a CDN URL."
911
+ msgstr "Válaszd ezt, ha explicit módon akarod rábírni a Piwik-et, hogy használjon HTTP-t vagy HTTPS-t. Nem fog működni CDN URL-el."
912
+
913
+ #: classes/WP_Piwik/Admin/Settings.php:337
914
+ msgid "Update notice"
915
+ msgstr "Frissítési értesítés"
916
+
917
+ #: classes/WP_Piwik/Admin/Settings.php:338
918
+ msgid "Show always if WP-Piwik is updated"
919
+ msgstr "Mutassa mindíg, ha a WP-Piwik frissítve van"
920
+
921
+ #: classes/WP_Piwik/Admin/Settings.php:339
922
+ msgid "Show only if WP-Piwik is updated and settings were changed"
923
+ msgstr "Mutassa csak akkor, ha a WP-Piwik frissítésre került és beállításai módosultak"
924
+
925
+ #: classes/WP_Piwik/Admin/Settings.php:341
926
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
927
+ msgstr "Válaszd ezt, ha értesítést kívánsz kapni a WP-Piwik frissítéséről."
928
+
929
+ #: classes/WP_Piwik/Admin/Settings.php:343
930
+ msgid "Define all file types for download tracking"
931
+ msgstr "Add meg a követni kívánt fájltípusokat"
932
+
933
+ #: classes/WP_Piwik/Admin/Settings.php:343
934
+ msgid ""
935
+ "Replace Piwik's default file extensions for download tracking, divided by a "
936
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
937
+ msgstr "Piwik alapértelmezett fájlkiterjesztések lecserélése letöltés követéskor, függőleges vonallal elválasztva (&#124;). Hagyd üresen, hogy megtartsd a Piwik alapértelmezett beállításait."
938
+
939
+ #: classes/WP_Piwik/Admin/Settings.php:345
940
+ msgid "Set classes to be treated as downloads"
941
+ msgstr ""
942
+
943
+ #: classes/WP_Piwik/Admin/Settings.php:345
944
+ msgid ""
945
+ "Set classes to be treated as downloads (in addition to piwik_download), "
946
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
947
+ "settings."
948
+ msgstr ""
949
+
950
+ #: classes/WP_Piwik/Admin/Settings.php:345
951
+ #: classes/WP_Piwik/Admin/Settings.php:347
952
+ #, php-format
953
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
954
+ msgstr ""
955
+
956
+ #: classes/WP_Piwik/Admin/Settings.php:347
957
+ msgid "Set classes to be treated as outlinks"
958
+ msgstr ""
959
+
960
+ #: classes/WP_Piwik/Admin/Settings.php:347
961
+ msgid ""
962
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
963
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
964
+ msgstr ""
965
+
966
+ #: classes/WP_Piwik/Admin/Settings.php:508
967
+ msgid "Donate"
968
+ msgstr "Támogatás"
969
+
970
+ #: classes/WP_Piwik/Admin/Settings.php:511
971
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
972
+ msgstr "Ha tetszik a WP-Piwik, támogasd fejlesztésünket egy kis adománnyal:"
973
+
974
+ #: classes/WP_Piwik/Admin/Settings.php:530
975
+ msgid "My Amazon.de wishlist"
976
+ msgstr "Amazon.de kívánságlistám"
977
+
978
+ #: classes/WP_Piwik/Admin/Settings.php:533
979
+ #: classes/WP_Piwik/Admin/Settings.php:575
980
+ msgid "Please don't forget to vote the compatibility at the"
981
+ msgstr "Kérlek ne felejts el szavazni a kompatibilitásról a"
982
+
983
+ #: classes/WP_Piwik/Admin/Settings.php:561
984
+ msgid "Thank you very much for your donation"
985
+ msgstr "Köszönjük, hogy támogattad munkánkat"
986
+
987
+ #: classes/WP_Piwik/Admin/Settings.php:561
988
+ msgid "the Piwik team itself"
989
+ msgstr "a Piwik csapat maga"
990
+
991
+ #: classes/WP_Piwik/Admin/Settings.php:561
992
+ msgid ", and all people flattering this"
993
+ msgstr "és minden személy aki megtisztelte ezt"
994
+
995
+ #: classes/WP_Piwik/Admin/Settings.php:562
996
+ msgid ""
997
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
998
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
999
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1000
+ "Sparklines</a> (License: New BSD License)."
1001
+ msgstr ""
1002
+
1003
+ #: classes/WP_Piwik/Admin/Settings.php:563
1004
+ msgid "Thank you very much"
1005
+ msgstr "Köszönettel tartozunk"
1006
+
1007
+ #: classes/WP_Piwik/Admin/Settings.php:563
1008
+ msgid "for your translation work"
1009
+ msgstr "a fordítási munkádért"
1010
+
1011
+ #: classes/WP_Piwik/Admin/Settings.php:564
1012
+ msgid ""
1013
+ "Thank you very much, all users who send me mails containing criticism, "
1014
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1015
+ " much better."
1016
+ msgstr "Köszönettel tartozunk minden felhasználónak, aki kritikájával, dícséretével, új funkciók ajánlásával és hibabejelentésekkel segítette munkánkat! Általatok lesz a WP-Piwik kiegészítő jobb és jobb."
1017
+
1018
+ #: classes/WP_Piwik/Admin/Settings.php:565
1019
+ msgid ""
1020
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1021
+ "if my piece of code is really used!"
1022
+ msgstr "Köszönjük <strong>neked</strong>, hogy használod ezt a kiegészítőt. A legnagyobb dícséret az, hogy hasznos számotokra az amit csinálunk."
1023
+
1024
+ #: classes/WP_Piwik/Admin/Settings.php:574
1025
+ msgid "The best place to get help:"
1026
+ msgstr "Legjobb hely, ahol segítséget kaphatsz:"
1027
+
1028
+ #: classes/WP_Piwik/Admin/Settings.php:574
1029
+ msgid "WP-Piwik support forum"
1030
+ msgstr "WP-Piwik támogatási fórum"
1031
+
1032
+ #: classes/WP_Piwik/Admin/Settings.php:577
1033
+ msgid "Debugging"
1034
+ msgstr "Hibakeresés"
1035
+
1036
+ #: classes/WP_Piwik/Admin/Settings.php:578
1037
+ msgid ""
1038
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1039
+ "available:"
1040
+ msgstr "Az allow_url_fopen-nek kell engedélyezve vagy a cURL-nek elérhetőnek kell lennie:"
1041
+
1042
+ #: classes/WP_Piwik/Admin/Settings.php:581
1043
+ msgid "cURL is"
1044
+ msgstr "cURL"
1045
+
1046
+ #: classes/WP_Piwik/Admin/Settings.php:582
1047
+ #: classes/WP_Piwik/Admin/Settings.php:587
1048
+ msgid "not"
1049
+ msgstr "nem"
1050
+
1051
+ #: classes/WP_Piwik/Admin/Settings.php:583
1052
+ msgid "available"
1053
+ msgstr "elérhető"
1054
+
1055
+ #: classes/WP_Piwik/Admin/Settings.php:586
1056
+ msgid "allow_url_fopen is"
1057
+ msgstr "allow_url_fopen"
1058
+
1059
+ #: classes/WP_Piwik/Admin/Settings.php:588
1060
+ msgid "enabled"
1061
+ msgstr "engedélyezve"
1062
+
1063
+ #: classes/WP_Piwik/Admin/Settings.php:590
1064
+ msgid "is used."
1065
+ msgstr "használatban."
1066
+
1067
+ #: classes/WP_Piwik/Admin/Settings.php:592
1068
+ msgid "Determined Piwik base URL is"
1069
+ msgstr "A meghatározott Piwik gyökér URL:"
1070
+
1071
+ #: classes/WP_Piwik/Admin/Settings.php:596
1072
+ msgid "Tools"
1073
+ msgstr "Eszközök"
1074
+
1075
+ #: classes/WP_Piwik/Admin/Settings.php:598
1076
+ msgid "Run testscript"
1077
+ msgstr "Tesztszktipt futtatása"
1078
+
1079
+ #: classes/WP_Piwik/Admin/Settings.php:599
1080
+ msgid "Sitebrowser"
1081
+ msgstr "Oldalböngésző"
1082
+
1083
+ #: classes/WP_Piwik/Admin/Settings.php:600
1084
+ msgid "Clear cache"
1085
+ msgstr "Gyorsítótár ürítése"
1086
+
1087
+ #: classes/WP_Piwik/Admin/Settings.php:601
1088
+ msgid "Are you sure you want to clear all settings?"
1089
+ msgstr "Biztos, hogy törölnél minden beállítást?"
1090
+
1091
+ #: classes/WP_Piwik/Admin/Settings.php:601
1092
+ msgid "Reset WP-Piwik"
1093
+ msgstr "WP-Piwik visszaállítása"
1094
+
1095
+ #: classes/WP_Piwik/Admin/Settings.php:603
1096
+ msgid "Latest support threads on WordPress.org"
1097
+ msgstr "Legfrissebb támogatási fórumok a WordPress.org-on"
1098
+
1099
+ #: classes/WP_Piwik/Admin/Settings.php:654
1100
+ msgid "Settings cleared (except connection settings)."
1101
+ msgstr "Beállítások törölve (kivéve a csatlakozási beállításokat)"
1102
+
1103
+ #: classes/WP_Piwik/Admin/Settings.php:670
1104
+ msgid "Cache cleared."
1105
+ msgstr "Gyorsítótár kiürítve"
1106
+
1107
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1108
+ msgid "site"
1109
+ msgstr "oldal"
1110
+
1111
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1112
+ msgid "sites"
1113
+ msgstr "oldalak"
1114
+
1115
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1116
+ msgid "No site configured yet."
1117
+ msgstr "Nincs konfigurált oldal."
1118
+
1119
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1120
+ msgid "Blog ID"
1121
+ msgstr "Blog ID"
1122
+
1123
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1124
+ msgid "Title"
1125
+ msgstr "Cím"
1126
+
1127
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1128
+ msgid "URL"
1129
+ msgstr "URL"
1130
+
1131
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1132
+ msgid "Site ID (Piwik)"
1133
+ msgstr "Oldal ID (Piwik)"
1134
+
1135
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1136
+ msgid "Site not created yet."
1137
+ msgstr "Oldal még nem készült el."
1138
+
1139
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1140
+ msgid "Statistics"
1141
+ msgstr "Statisztikák"
1142
+
1143
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1144
+ msgid "Currently shown stats:"
1145
+ msgstr "Jelenleg mutatott statok:"
1146
+
1147
+ #: classes/WP_Piwik/Request/Php.php:27
1148
+ msgid "Could not resolve"
1149
+ msgstr "Nem sikerül feloldani"
1150
+
1151
+ #: classes/WP_Piwik/Request/Php.php:27
1152
+ msgid "realpath() returns false"
1153
+ msgstr "realpath() false értékkel tér vissza"
1154
+
1155
+ #: classes/WP_Piwik/Request/Php.php:39
1156
+ msgid "Class Piwik\\FrontController does not exists."
1157
+ msgstr "Piwik\\FrontController osztály nem létezik."
1158
+
1159
+ #: classes/WP_Piwik/Request/Php.php:42
1160
+ msgid "Class Piwik\\API\\Request does not exists."
1161
+ msgstr "Piwik\\API\\Request osztály nem létezk."
1162
+
1163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1164
+ msgid "Piwik Custom Variables"
1165
+ msgstr "Piwik egyedi változók"
1166
+
1167
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1168
+ msgid "Name"
1169
+ msgstr "Név"
1170
+
1171
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1172
+ msgid "Value"
1173
+ msgstr "Érték"
1174
+
1175
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1176
+ msgid "Set custom variables for a page view"
1177
+ msgstr "Egyedi változók beállítása az oldalnézethez"
1178
+
1179
+ #: classes/WP_Piwik/Widget.php:91
1180
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1181
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1182
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1183
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1184
+ #: classes/WP_Piwik/Widget/Items.php:23
1185
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1186
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1187
+ #: classes/WP_Piwik/Widget/Overview.php:24
1188
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1189
+ #: classes/WP_Piwik/Widget/Screens.php:35
1190
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1191
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1192
+ #: classes/WP_Piwik/Widget/Systems.php:33
1193
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1194
+ msgid "Piwik error"
1195
+ msgstr "Piwik hiba"
1196
+
1197
+ #: classes/WP_Piwik/Widget.php:100
1198
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1199
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1200
+ #: classes/WP_Piwik/Widget/Country.php:39
1201
+ #: classes/WP_Piwik/Widget/Screens.php:37
1202
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1203
+ #: classes/WP_Piwik/Widget/Systems.php:35
1204
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1205
+ msgid "Unique"
1206
+ msgstr "Egyedi"
1207
+
1208
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1209
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1210
+ msgid "Visits"
1211
+ msgstr "Látogatások"
1212
+
1213
+ #: classes/WP_Piwik/Widget.php:104
1214
+ msgid "Hits"
1215
+ msgstr "Kattintások"
1216
+
1217
+ #: classes/WP_Piwik/Widget.php:106
1218
+ msgid "Actions"
1219
+ msgstr "Akciók"
1220
+
1221
+ #: classes/WP_Piwik/Widget.php:162
1222
+ msgid "No data available."
1223
+ msgstr "Nincs elérhető adat."
1224
+
1225
+ #: classes/WP_Piwik/Widget.php:243
1226
+ msgid "today"
1227
+ msgstr "ma"
1228
+
1229
+ #: classes/WP_Piwik/Widget.php:248
1230
+ msgid "current month"
1231
+ msgstr "jelen hónap"
1232
+
1233
+ #: classes/WP_Piwik/Widget.php:253
1234
+ msgid "last month"
1235
+ msgstr "előző hónap"
1236
+
1237
+ #: classes/WP_Piwik/Widget.php:258
1238
+ msgid "current week"
1239
+ msgstr "jelen hét"
1240
+
1241
+ #: classes/WP_Piwik/Widget.php:263
1242
+ msgid "last week"
1243
+ msgstr "előző hét"
1244
+
1245
+ #: classes/WP_Piwik/Widget.php:268
1246
+ msgid "yesterday"
1247
+ msgstr "tegnap"
1248
+
1249
+ #: classes/WP_Piwik/Widget.php:293
1250
+ msgid "week"
1251
+ msgstr "hét"
1252
+
1253
+ #: classes/WP_Piwik/Widget.php:328
1254
+ msgid "last 30 days"
1255
+ msgstr "utolsó 30 nap"
1256
+
1257
+ #: classes/WP_Piwik/Widget.php:330
1258
+ msgid "last 12 "
1259
+ msgstr ""
1260
+
1261
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1262
+ msgid "Browser Details"
1263
+ msgstr "Böngésző adatai"
1264
+
1265
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1266
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1267
+ msgid "Browser"
1268
+ msgstr "Böngésző"
1269
+
1270
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1271
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1272
+ #: classes/WP_Piwik/Widget/Country.php:39
1273
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1274
+ #: classes/WP_Piwik/Widget/Screens.php:37
1275
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1276
+ #: classes/WP_Piwik/Widget/Systems.php:35
1277
+ msgid "Percent"
1278
+ msgstr "Százalék"
1279
+
1280
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1281
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1282
+ #: classes/WP_Piwik/Widget/Country.php:66
1283
+ #: classes/WP_Piwik/Widget/Screens.php:64
1284
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1285
+ #: classes/WP_Piwik/Widget/Systems.php:62
1286
+ msgid "Others"
1287
+ msgstr "Egyebek"
1288
+
1289
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1290
+ msgid "Browsers"
1291
+ msgstr "Böngészők"
1292
+
1293
+ #: classes/WP_Piwik/Widget/Chart.php:19
1294
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1295
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1296
+ msgid "Visitors"
1297
+ msgstr "Látogatók"
1298
+
1299
+ #: classes/WP_Piwik/Widget/Chart.php:71
1300
+ msgid ""
1301
+ "The graph contains the values shown in the table below (visitors / unique / "
1302
+ "bounces). The red line shows a linear trendline (unique)."
1303
+ msgstr "A grafikon tartalmazza az értékeket, melyek láthatóak a lentebbi táblázatban (látogatók / egyedi / visszapattanások). A vörös vonal mutatja a lineáris trendvonalat (egyedi)."
1304
+
1305
+ #: classes/WP_Piwik/Widget/Country.php:18
1306
+ msgid "Countries"
1307
+ msgstr "Országok"
1308
+
1309
+ #: classes/WP_Piwik/Widget/Country.php:39
1310
+ msgid "Country"
1311
+ msgstr "Ország"
1312
+
1313
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1314
+ msgid "E-Commerce"
1315
+ msgstr ""
1316
+
1317
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1318
+ msgid "Conversions"
1319
+ msgstr ""
1320
+
1321
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1322
+ msgid "Visits converted"
1323
+ msgstr ""
1324
+
1325
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1326
+ #: classes/WP_Piwik/Widget/Items.php:27
1327
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1328
+ msgid "Revenue"
1329
+ msgstr ""
1330
+
1331
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1332
+ #: classes/WP_Piwik/Widget/Items.php:32
1333
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1334
+ msgid "Conversion rate"
1335
+ msgstr ""
1336
+
1337
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1338
+ msgid "Conversions (new visitor)"
1339
+ msgstr ""
1340
+
1341
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1342
+ msgid "Visits converted (new visitor)"
1343
+ msgstr ""
1344
+
1345
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1346
+ msgid "Revenue (new visitor)"
1347
+ msgstr ""
1348
+
1349
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1350
+ msgid "Conversion rate (new visitor)"
1351
+ msgstr ""
1352
+
1353
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1354
+ msgid "Conversions (returning visitor)"
1355
+ msgstr ""
1356
+
1357
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1358
+ msgid "Visits converted (returning visitor)"
1359
+ msgstr ""
1360
+
1361
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1362
+ msgid "Revenue (returning visitor)"
1363
+ msgstr ""
1364
+
1365
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1366
+ msgid "Conversion rate (returning visitor)"
1367
+ msgstr ""
1368
+
1369
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1370
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1371
+ msgid "Shortcut"
1372
+ msgstr "Parancsikon"
1373
+
1374
+ #: classes/WP_Piwik/Widget/Items.php:11
1375
+ msgid "E-Commerce Items"
1376
+ msgstr ""
1377
+
1378
+ #: classes/WP_Piwik/Widget/Items.php:26
1379
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1380
+ msgid "Label"
1381
+ msgstr ""
1382
+
1383
+ #: classes/WP_Piwik/Widget/Items.php:28
1384
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1385
+ msgid "Quantity"
1386
+ msgstr ""
1387
+
1388
+ #: classes/WP_Piwik/Widget/Items.php:29
1389
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1390
+ msgid "Orders"
1391
+ msgstr ""
1392
+
1393
+ #: classes/WP_Piwik/Widget/Items.php:30
1394
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1395
+ msgid "Avg. price"
1396
+ msgstr ""
1397
+
1398
+ #: classes/WP_Piwik/Widget/Items.php:31
1399
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1400
+ msgid "Avg. quantity"
1401
+ msgstr ""
1402
+
1403
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1404
+ msgid "E-Commerce Item Categories"
1405
+ msgstr ""
1406
+
1407
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1408
+ msgid "Keywords"
1409
+ msgstr "Kulcsszavak"
1410
+
1411
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1412
+ #: classes/WP_Piwik/Widget/Search.php:16
1413
+ msgid "Site Search"
1414
+ msgstr "Oldal keresés"
1415
+
1416
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1417
+ #: classes/WP_Piwik/Widget/Search.php:25
1418
+ msgid "Keyword"
1419
+ msgstr "Kulcsszó"
1420
+
1421
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1422
+ #: classes/WP_Piwik/Widget/Search.php:25
1423
+ msgid "Requests"
1424
+ msgstr "Kérések"
1425
+
1426
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1427
+ #: classes/WP_Piwik/Widget/Search.php:25
1428
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1429
+ msgid "Bounced"
1430
+ msgstr "Visszapattant"
1431
+
1432
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1433
+ msgid "Overview"
1434
+ msgstr "Áttekintés"
1435
+
1436
+ #: classes/WP_Piwik/Widget/Overview.php:17
1437
+ msgid "dashboard"
1438
+ msgstr ""
1439
+
1440
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1441
+ msgid "Unique visitors"
1442
+ msgstr "Egyedi látogatók"
1443
+
1444
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1445
+ msgid "Page views"
1446
+ msgstr "Oldal megtekintések"
1447
+
1448
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1449
+ msgid "Total time spent"
1450
+ msgstr "Eltöltött idő"
1451
+
1452
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1453
+ msgid "Bounce count"
1454
+ msgstr "Visszapattanások száma"
1455
+
1456
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1457
+ msgid "Time/visit"
1458
+ msgstr "Idő/látogatás"
1459
+
1460
+ #: classes/WP_Piwik/Widget/Overview.php:57
1461
+ msgid "Max. page views in one visit"
1462
+ msgstr "Max. oldal megtekintések egy látogatás alatt"
1463
+
1464
+ #: classes/WP_Piwik/Widget/Pages.php:16
1465
+ msgid "Pages"
1466
+ msgstr "Oldalak"
1467
+
1468
+ #: classes/WP_Piwik/Widget/Pages.php:18
1469
+ msgid "Page"
1470
+ msgstr "Oldal"
1471
+
1472
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1473
+ msgid "Plugins"
1474
+ msgstr "Kiegészítők"
1475
+
1476
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1477
+ msgid "Plugin"
1478
+ msgstr "Kiegészítő"
1479
+
1480
+ #: classes/WP_Piwik/Widget/Post.php:43
1481
+ msgid "Min. generation time"
1482
+ msgstr "Min. oldalgenerációs idő"
1483
+
1484
+ #: classes/WP_Piwik/Widget/Post.php:44
1485
+ msgid "Max. generation time"
1486
+ msgstr "Max. oldalgenerációs idő"
1487
+
1488
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1489
+ msgid "Referrers"
1490
+ msgstr "Hivatkozások"
1491
+
1492
+ #: classes/WP_Piwik/Widget/Screens.php:16
1493
+ msgid "Resolutions"
1494
+ msgstr "Felbontások"
1495
+
1496
+ #: classes/WP_Piwik/Widget/Screens.php:37
1497
+ msgid "Resolution"
1498
+ msgstr "Felbontás"
1499
+
1500
+ #: classes/WP_Piwik/Widget/Seo.php:13
1501
+ msgid "SEO"
1502
+ msgstr "SEO"
1503
+
1504
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1505
+ msgid "Operation System Details"
1506
+ msgstr "Operációs rendszer adatok"
1507
+
1508
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1509
+ #: classes/WP_Piwik/Widget/Systems.php:35
1510
+ msgid "Operation System"
1511
+ msgstr "Operációs rendszer"
1512
+
1513
+ #: classes/WP_Piwik/Widget/Systems.php:14
1514
+ msgid "Operation Systems"
1515
+ msgstr "Operációs rendszerek"
1516
+
1517
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1518
+ msgid "Date"
1519
+ msgstr "Dátum"
1520
+
1521
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1522
+ msgid "Page Views"
1523
+ msgstr "Oldal megtekintések"
1524
+
1525
+ #: wp-piwik.php:60
1526
+ #, php-format
1527
+ msgid ""
1528
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1529
+ " Please update PHP to use WP-Piwik."
1530
+ msgstr "A WP-Piwik megkívánja legalább a PHP 5.3-at. Te egy korábbi %s verziót használsz. Kérlek frissítsd a PHP-t, hogy használni tudd a WP-Piwik-et."
languages/wp-piwik-id.mo ADDED
Binary file
languages/wp-piwik-id.po ADDED
@@ -0,0 +1,1528 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: WP-Piwik\n"
6
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
7
+ "PO-Revision-Date: 2017-10-15 18:39+0000\n"
8
+ "Last-Translator: André Bräkling\n"
9
+ "Language-Team: Indonesian (http://www.transifex.com/piwik/wp-piwik/language/id/)\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "Language: id\n"
14
+ "Plural-Forms: nplurals=1; plural=0;\n"
15
+
16
+ #: classes/WP_Piwik.php:203
17
+ #, php-format
18
+ msgid "%s %s installed."
19
+ msgstr ""
20
+
21
+ #: classes/WP_Piwik.php:203
22
+ msgid "Next you should connect to Piwik"
23
+ msgstr ""
24
+
25
+ #: classes/WP_Piwik.php:237
26
+ #, php-format
27
+ msgid "%s updated to %s."
28
+ msgstr ""
29
+
30
+ #: classes/WP_Piwik.php:237
31
+ msgid "Please validate your configuration"
32
+ msgstr ""
33
+
34
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
35
+ msgid "Settings"
36
+ msgstr ""
37
+
38
+ #: classes/WP_Piwik.php:272
39
+ msgid "Important"
40
+ msgstr ""
41
+
42
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
43
+ msgid "Piwik Statistics"
44
+ msgstr ""
45
+
46
+ #: classes/WP_Piwik.php:499
47
+ msgid "Configure WP-Piwik"
48
+ msgstr ""
49
+
50
+ #: classes/WP_Piwik.php:992
51
+ msgid "An error occured"
52
+ msgstr ""
53
+
54
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
55
+ msgid "Support"
56
+ msgstr ""
57
+
58
+ #: classes/WP_Piwik.php:1275
59
+ msgid "Cheatin&#8217; uh?"
60
+ msgstr ""
61
+
62
+ #: classes/WP_Piwik/Admin/Settings.php:24
63
+ msgid "Reload"
64
+ msgstr ""
65
+
66
+ #: classes/WP_Piwik/Admin/Settings.php:27
67
+ msgid "Changes saved."
68
+ msgstr ""
69
+
70
+ #: classes/WP_Piwik/Admin/Settings.php:55
71
+ msgid "Thanks for using WP-Piwik!"
72
+ msgstr ""
73
+
74
+ #: classes/WP_Piwik/Admin/Settings.php:58
75
+ #, php-format
76
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
77
+ msgstr ""
78
+
79
+ #: classes/WP_Piwik/Admin/Settings.php:58
80
+ #, php-format
81
+ msgid "You are running WordPress %s."
82
+ msgstr ""
83
+
84
+ #: classes/WP_Piwik/Admin/Settings.php:58
85
+ #, php-format
86
+ msgid ""
87
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
88
+ "your sites as different websites."
89
+ msgstr ""
90
+
91
+ #: classes/WP_Piwik/Admin/Settings.php:62
92
+ #, php-format
93
+ msgid ""
94
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
95
+ " the &raquo;Connect to Piwik&laquo; section below."
96
+ msgstr ""
97
+
98
+ #: classes/WP_Piwik/Admin/Settings.php:64
99
+ #, php-format
100
+ msgid ""
101
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
102
+ "During connection the following error occured: <br /><code>%s</code>"
103
+ msgstr ""
104
+
105
+ #: classes/WP_Piwik/Admin/Settings.php:67
106
+ #, php-format
107
+ msgid ""
108
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
109
+ "Piwik&laquo; section below."
110
+ msgstr ""
111
+
112
+ #: classes/WP_Piwik/Admin/Settings.php:71
113
+ msgid "Connect to Piwik"
114
+ msgstr ""
115
+
116
+ #: classes/WP_Piwik/Admin/Settings.php:76
117
+ msgid "Show Statistics"
118
+ msgstr ""
119
+
120
+ #: classes/WP_Piwik/Admin/Settings.php:80
121
+ msgid "Enable Tracking"
122
+ msgstr ""
123
+
124
+ #: classes/WP_Piwik/Admin/Settings.php:85
125
+ msgid "Expert Settings"
126
+ msgstr ""
127
+
128
+ #: classes/WP_Piwik/Admin/Settings.php:93
129
+ msgid "Credits"
130
+ msgstr ""
131
+
132
+ #: classes/WP_Piwik/Admin/Settings.php:106
133
+ msgid ""
134
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
135
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
136
+ " To use this you will need your own Piwik instance. If you do not already "
137
+ "have a Piwik setup, you have two simple options: use either"
138
+ msgstr ""
139
+
140
+ #: classes/WP_Piwik/Admin/Settings.php:106
141
+ msgid "a self-hosted Piwik"
142
+ msgstr ""
143
+
144
+ #: classes/WP_Piwik/Admin/Settings.php:106
145
+ msgid "or"
146
+ msgstr "atau"
147
+
148
+ #: classes/WP_Piwik/Admin/Settings.php:106
149
+ msgid "a cloud-hosted Piwik by InnoCraft"
150
+ msgstr ""
151
+
152
+ #: classes/WP_Piwik/Admin/Settings.php:109
153
+ msgid ""
154
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
155
+ "and not connect to InnoCraft Cloud."
156
+ msgstr ""
157
+
158
+ #: classes/WP_Piwik/Admin/Settings.php:109
159
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
160
+ msgid "More information"
161
+ msgstr ""
162
+
163
+ #: classes/WP_Piwik/Admin/Settings.php:111
164
+ msgid "You can choose between three connection methods:"
165
+ msgstr ""
166
+
167
+ #: classes/WP_Piwik/Admin/Settings.php:111
168
+ #: classes/WP_Piwik/Admin/Settings.php:114
169
+ msgid "Self-hosted (HTTP API, default)"
170
+ msgstr ""
171
+
172
+ #: classes/WP_Piwik/Admin/Settings.php:111
173
+ msgid ""
174
+ "This is the default option for a self-hosted Piwik and should work for most "
175
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
176
+ msgstr ""
177
+
178
+ #: classes/WP_Piwik/Admin/Settings.php:111
179
+ #: classes/WP_Piwik/Admin/Settings.php:115
180
+ msgid "Self-hosted (PHP API)"
181
+ msgstr ""
182
+
183
+ #: classes/WP_Piwik/Admin/Settings.php:111
184
+ msgid ""
185
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
186
+ " machine and you know the full server path to your Piwik instance."
187
+ msgstr ""
188
+
189
+ #: classes/WP_Piwik/Admin/Settings.php:111
190
+ #: classes/WP_Piwik/Admin/Settings.php:116
191
+ msgid "Cloud-hosted (InnoCraft Cloud)"
192
+ msgstr ""
193
+
194
+ #: classes/WP_Piwik/Admin/Settings.php:111
195
+ msgid ""
196
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
197
+ "option."
198
+ msgstr ""
199
+
200
+ #: classes/WP_Piwik/Admin/Settings.php:112
201
+ msgid "Piwik Mode"
202
+ msgstr ""
203
+
204
+ #: classes/WP_Piwik/Admin/Settings.php:113
205
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
206
+ msgstr ""
207
+
208
+ #: classes/WP_Piwik/Admin/Settings.php:119
209
+ msgid "Piwik URL"
210
+ msgstr ""
211
+
212
+ #: classes/WP_Piwik/Admin/Settings.php:119
213
+ msgid ""
214
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
215
+ "instance, e.g. http://www.example.com/piwik/."
216
+ msgstr ""
217
+
218
+ #: classes/WP_Piwik/Admin/Settings.php:120
219
+ msgid "Piwik path"
220
+ msgstr ""
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:120
223
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
224
+ msgstr ""
225
+
226
+ #: classes/WP_Piwik/Admin/Settings.php:121
227
+ msgid "Piwik subdomain"
228
+ msgstr ""
229
+
230
+ #: classes/WP_Piwik/Admin/Settings.php:121
231
+ msgid ""
232
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
233
+ "https://SUBDOMAIN.innocraft.cloud."
234
+ msgstr ""
235
+
236
+ #: classes/WP_Piwik/Admin/Settings.php:122
237
+ msgid "Auth token"
238
+ msgstr ""
239
+
240
+ #: classes/WP_Piwik/Admin/Settings.php:122
241
+ msgid ""
242
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
243
+ "0a1b2c34d56e78901fa2bc3d45678efa."
244
+ msgstr ""
245
+
246
+ #: classes/WP_Piwik/Admin/Settings.php:122
247
+ #, php-format
248
+ msgid "See %sWP-Piwik FAQ%s."
249
+ msgstr ""
250
+
251
+ #: classes/WP_Piwik/Admin/Settings.php:127
252
+ msgid "Auto config"
253
+ msgstr ""
254
+
255
+ #: classes/WP_Piwik/Admin/Settings.php:127
256
+ msgid ""
257
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
258
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
259
+ msgstr ""
260
+
261
+ #: classes/WP_Piwik/Admin/Settings.php:131
262
+ #, php-format
263
+ msgid ""
264
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
265
+ "/><code>%s</code>"
266
+ msgstr ""
267
+
268
+ #: classes/WP_Piwik/Admin/Settings.php:141
269
+ msgid "Determined site"
270
+ msgstr ""
271
+
272
+ #: classes/WP_Piwik/Admin/Settings.php:146
273
+ msgid "Select site"
274
+ msgstr ""
275
+
276
+ #: classes/WP_Piwik/Admin/Settings.php:155
277
+ msgid "Piwik default date"
278
+ msgstr ""
279
+
280
+ #: classes/WP_Piwik/Admin/Settings.php:156
281
+ #: classes/WP_Piwik/Admin/Settings.php:170
282
+ msgid "Today"
283
+ msgstr ""
284
+
285
+ #: classes/WP_Piwik/Admin/Settings.php:157
286
+ #: classes/WP_Piwik/Admin/Settings.php:169
287
+ msgid "Yesterday"
288
+ msgstr ""
289
+
290
+ #: classes/WP_Piwik/Admin/Settings.php:158
291
+ msgid "Current month"
292
+ msgstr ""
293
+
294
+ #: classes/WP_Piwik/Admin/Settings.php:159
295
+ msgid "Last month"
296
+ msgstr ""
297
+
298
+ #: classes/WP_Piwik/Admin/Settings.php:160
299
+ msgid "Current week"
300
+ msgstr ""
301
+
302
+ #: classes/WP_Piwik/Admin/Settings.php:161
303
+ msgid "Last week"
304
+ msgstr ""
305
+
306
+ #: classes/WP_Piwik/Admin/Settings.php:162
307
+ msgid "Default date shown on statistics page."
308
+ msgstr ""
309
+
310
+ #: classes/WP_Piwik/Admin/Settings.php:164
311
+ msgid "Show SEO data"
312
+ msgstr ""
313
+
314
+ #: classes/WP_Piwik/Admin/Settings.php:164
315
+ msgid "Display SEO ranking data on statistics page."
316
+ msgstr ""
317
+
318
+ #: classes/WP_Piwik/Admin/Settings.php:164
319
+ #: classes/WP_Piwik/Admin/Settings.php:176
320
+ msgid "Slow!"
321
+ msgstr ""
322
+
323
+ #: classes/WP_Piwik/Admin/Settings.php:165
324
+ msgid "Show e-commerce data"
325
+ msgstr ""
326
+
327
+ #: classes/WP_Piwik/Admin/Settings.php:165
328
+ msgid "Display e-commerce data on statistics page."
329
+ msgstr ""
330
+
331
+ #: classes/WP_Piwik/Admin/Settings.php:167
332
+ msgid "Dashboard overview"
333
+ msgstr ""
334
+
335
+ #: classes/WP_Piwik/Admin/Settings.php:168
336
+ #: classes/WP_Piwik/Admin/Settings.php:208
337
+ #: classes/WP_Piwik/Admin/Settings.php:210
338
+ #: classes/WP_Piwik/Admin/Settings.php:231
339
+ #: classes/WP_Piwik/Admin/Settings.php:285
340
+ #: classes/WP_Piwik/Admin/Settings.php:340
341
+ msgid "Disabled"
342
+ msgstr ""
343
+
344
+ #: classes/WP_Piwik/Admin/Settings.php:171
345
+ msgid "Last 30 days"
346
+ msgstr ""
347
+
348
+ #: classes/WP_Piwik/Admin/Settings.php:172
349
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
350
+ msgstr ""
351
+
352
+ #: classes/WP_Piwik/Admin/Settings.php:174
353
+ msgid "Dashboard graph"
354
+ msgstr ""
355
+
356
+ #: classes/WP_Piwik/Admin/Settings.php:174
357
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
358
+ msgstr ""
359
+
360
+ #: classes/WP_Piwik/Admin/Settings.php:176
361
+ msgid "Dashboard SEO"
362
+ msgstr ""
363
+
364
+ #: classes/WP_Piwik/Admin/Settings.php:176
365
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
366
+ msgstr ""
367
+
368
+ #: classes/WP_Piwik/Admin/Settings.php:178
369
+ msgid "Dashboard e-commerce"
370
+ msgstr ""
371
+
372
+ #: classes/WP_Piwik/Admin/Settings.php:178
373
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
374
+ msgstr ""
375
+
376
+ #: classes/WP_Piwik/Admin/Settings.php:180
377
+ msgid "Show graph on WordPress Toolbar"
378
+ msgstr ""
379
+
380
+ #: classes/WP_Piwik/Admin/Settings.php:180
381
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
382
+ msgstr ""
383
+
384
+ #: classes/WP_Piwik/Admin/Settings.php:182
385
+ msgid "Display stats to"
386
+ msgstr ""
387
+
388
+ #: classes/WP_Piwik/Admin/Settings.php:189
389
+ msgid "Choose user roles allowed to see the statistics page."
390
+ msgstr ""
391
+
392
+ #: classes/WP_Piwik/Admin/Settings.php:191
393
+ msgid "Show per post stats"
394
+ msgstr ""
395
+
396
+ #: classes/WP_Piwik/Admin/Settings.php:191
397
+ msgid "Show stats about single posts at the post edit admin page."
398
+ msgstr ""
399
+
400
+ #: classes/WP_Piwik/Admin/Settings.php:193
401
+ msgid "Piwik shortcut"
402
+ msgstr ""
403
+
404
+ #: classes/WP_Piwik/Admin/Settings.php:193
405
+ msgid "Display a shortcut to Piwik itself."
406
+ msgstr ""
407
+
408
+ #: classes/WP_Piwik/Admin/Settings.php:195
409
+ msgid "WP-Piwik display name"
410
+ msgstr ""
411
+
412
+ #: classes/WP_Piwik/Admin/Settings.php:195
413
+ msgid "Plugin name shown in WordPress."
414
+ msgstr ""
415
+
416
+ #: classes/WP_Piwik/Admin/Settings.php:197
417
+ msgid "Enable shortcodes"
418
+ msgstr ""
419
+
420
+ #: classes/WP_Piwik/Admin/Settings.php:197
421
+ msgid "Enable shortcodes in post or page content."
422
+ msgstr ""
423
+
424
+ #: classes/WP_Piwik/Admin/Settings.php:208
425
+ msgid "You can choose between four tracking code modes:"
426
+ msgstr ""
427
+
428
+ #: classes/WP_Piwik/Admin/Settings.php:208
429
+ msgid ""
430
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
431
+ "tracking code to your template files or you use another plugin to add the "
432
+ "tracking code."
433
+ msgstr ""
434
+
435
+ #: classes/WP_Piwik/Admin/Settings.php:208
436
+ #: classes/WP_Piwik/Admin/Settings.php:211
437
+ msgid "Default tracking"
438
+ msgstr ""
439
+
440
+ #: classes/WP_Piwik/Admin/Settings.php:208
441
+ msgid "WP-Piwik will use Piwik's standard tracking code."
442
+ msgstr ""
443
+
444
+ #: classes/WP_Piwik/Admin/Settings.php:208
445
+ #: classes/WP_Piwik/Admin/Settings.php:212
446
+ msgid "Use js/index.php"
447
+ msgstr ""
448
+
449
+ #: classes/WP_Piwik/Admin/Settings.php:208
450
+ msgid ""
451
+ "You can choose this tracking code, to deliver a minified proxy code and to "
452
+ "avoid using the files called piwik.js or piwik.php."
453
+ msgstr ""
454
+
455
+ #: classes/WP_Piwik/Admin/Settings.php:208
456
+ #, php-format
457
+ msgid "See %sreadme file%s."
458
+ msgstr ""
459
+
460
+ #: classes/WP_Piwik/Admin/Settings.php:208
461
+ #: classes/WP_Piwik/Admin/Settings.php:213
462
+ msgid "Use proxy script"
463
+ msgstr ""
464
+
465
+ #: classes/WP_Piwik/Admin/Settings.php:208
466
+ msgid "Use this tracking code to not reveal the Piwik server URL."
467
+ msgstr ""
468
+
469
+ #: classes/WP_Piwik/Admin/Settings.php:208
470
+ #: classes/WP_Piwik/Admin/Settings.php:228
471
+ #: classes/WP_Piwik/Admin/Settings.php:238
472
+ #, php-format
473
+ msgid "See %sPiwik FAQ%s."
474
+ msgstr ""
475
+
476
+ #: classes/WP_Piwik/Admin/Settings.php:208
477
+ #: classes/WP_Piwik/Admin/Settings.php:214
478
+ msgid "Enter manually"
479
+ msgstr ""
480
+
481
+ #: classes/WP_Piwik/Admin/Settings.php:208
482
+ msgid ""
483
+ "Enter your own tracking code manually. You can choose one of the prior "
484
+ "options, pre-configure your tracking code and switch to manually editing at "
485
+ "last."
486
+ msgstr ""
487
+
488
+ #: classes/WP_Piwik/Admin/Settings.php:208
489
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
490
+ msgstr ""
491
+
492
+ #: classes/WP_Piwik/Admin/Settings.php:209
493
+ msgid "Add tracking code"
494
+ msgstr ""
495
+
496
+ #: classes/WP_Piwik/Admin/Settings.php:217
497
+ msgid "Tracking code"
498
+ msgstr ""
499
+
500
+ #: classes/WP_Piwik/Admin/Settings.php:219
501
+ msgid "JavaScript code position"
502
+ msgstr ""
503
+
504
+ #: classes/WP_Piwik/Admin/Settings.php:220
505
+ msgid "Footer"
506
+ msgstr ""
507
+
508
+ #: classes/WP_Piwik/Admin/Settings.php:221
509
+ msgid "Header"
510
+ msgstr ""
511
+
512
+ #: classes/WP_Piwik/Admin/Settings.php:222
513
+ msgid ""
514
+ "Choose whether the JavaScript code is added to the footer or the header."
515
+ msgstr ""
516
+
517
+ #: classes/WP_Piwik/Admin/Settings.php:224
518
+ msgid "Noscript code"
519
+ msgstr ""
520
+
521
+ #: classes/WP_Piwik/Admin/Settings.php:226
522
+ msgid "Add &lt;noscript&gt;"
523
+ msgstr ""
524
+
525
+ #: classes/WP_Piwik/Admin/Settings.php:226
526
+ msgid "Adds the &lt;noscript&gt; code to your footer."
527
+ msgstr ""
528
+
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
+ #: classes/WP_Piwik/Admin/Settings.php:228
531
+ msgid "Disabled in proxy mode."
532
+ msgstr ""
533
+
534
+ #: classes/WP_Piwik/Admin/Settings.php:228
535
+ msgid "Add rec parameter to noscript code"
536
+ msgstr ""
537
+
538
+ #: classes/WP_Piwik/Admin/Settings.php:228
539
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
540
+ msgstr ""
541
+
542
+ #: classes/WP_Piwik/Admin/Settings.php:230
543
+ msgid "Enable content tracking"
544
+ msgstr ""
545
+
546
+ #: classes/WP_Piwik/Admin/Settings.php:232
547
+ msgid "Track all content blocks"
548
+ msgstr ""
549
+
550
+ #: classes/WP_Piwik/Admin/Settings.php:233
551
+ msgid "Track only visible content blocks"
552
+ msgstr ""
553
+
554
+ #: classes/WP_Piwik/Admin/Settings.php:234
555
+ msgid ""
556
+ "Content tracking allows you to track interaction with the content of a web "
557
+ "page or application."
558
+ msgstr ""
559
+
560
+ #: classes/WP_Piwik/Admin/Settings.php:234
561
+ #: classes/WP_Piwik/Admin/Settings.php:236
562
+ #: classes/WP_Piwik/Admin/Settings.php:245
563
+ #: classes/WP_Piwik/Admin/Settings.php:247
564
+ #: classes/WP_Piwik/Admin/Settings.php:249
565
+ #: classes/WP_Piwik/Admin/Settings.php:270
566
+ #: classes/WP_Piwik/Admin/Settings.php:272
567
+ #: classes/WP_Piwik/Admin/Settings.php:278
568
+ #: classes/WP_Piwik/Admin/Settings.php:343
569
+ #, php-format
570
+ msgid "See %sPiwik documentation%s."
571
+ msgstr ""
572
+
573
+ #: classes/WP_Piwik/Admin/Settings.php:236
574
+ msgid "Track search"
575
+ msgstr ""
576
+
577
+ #: classes/WP_Piwik/Admin/Settings.php:236
578
+ msgid "Use Piwik's advanced Site Search Analytics feature."
579
+ msgstr ""
580
+
581
+ #: classes/WP_Piwik/Admin/Settings.php:238
582
+ msgid "Track 404"
583
+ msgstr ""
584
+
585
+ #: classes/WP_Piwik/Admin/Settings.php:238
586
+ msgid ""
587
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
588
+ msgstr ""
589
+
590
+ #: classes/WP_Piwik/Admin/Settings.php:241
591
+ msgid "Add annotation on new post of type"
592
+ msgstr ""
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:247
595
+ msgid "Show custom variables box"
596
+ msgstr ""
597
+
598
+ #: classes/WP_Piwik/Admin/Settings.php:247
599
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
600
+ msgstr ""
601
+
602
+ #: classes/WP_Piwik/Admin/Settings.php:249
603
+ msgid "Add new file types for download tracking"
604
+ msgstr ""
605
+
606
+ #: classes/WP_Piwik/Admin/Settings.php:249
607
+ msgid ""
608
+ "Add file extensions for download tracking, divided by a vertical bar "
609
+ "(&#124;)."
610
+ msgstr ""
611
+
612
+ #: classes/WP_Piwik/Admin/Settings.php:251
613
+ msgid "Disable cookies"
614
+ msgstr ""
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:251
617
+ msgid "Disable all tracking cookies for a visitor."
618
+ msgstr ""
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:253
621
+ msgid "Limit cookie lifetime"
622
+ msgstr ""
623
+
624
+ #: classes/WP_Piwik/Admin/Settings.php:253
625
+ msgid ""
626
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
627
+ " period as necessary."
628
+ msgstr ""
629
+
630
+ #: classes/WP_Piwik/Admin/Settings.php:255
631
+ msgid "Visitor timeout (seconds)"
632
+ msgstr ""
633
+
634
+ #: classes/WP_Piwik/Admin/Settings.php:257
635
+ msgid "Session timeout (seconds)"
636
+ msgstr ""
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:259
639
+ msgid "Referral timeout (seconds)"
640
+ msgstr ""
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:261
643
+ msgid "Track admin pages"
644
+ msgstr ""
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:261
647
+ msgid ""
648
+ "Enable to track users on admin pages (remember to configure the tracking "
649
+ "filter appropriately)."
650
+ msgstr ""
651
+
652
+ #: classes/WP_Piwik/Admin/Settings.php:264
653
+ msgid "Tracking filter"
654
+ msgstr ""
655
+
656
+ #: classes/WP_Piwik/Admin/Settings.php:268
657
+ msgid "Choose users by user role you do <strong>not</strong> want to track."
658
+ msgstr ""
659
+
660
+ #: classes/WP_Piwik/Admin/Settings.php:270
661
+ msgid "Track subdomains in the same website"
662
+ msgstr ""
663
+
664
+ #: classes/WP_Piwik/Admin/Settings.php:270
665
+ msgid "Adds *.-prefix to cookie domain."
666
+ msgstr ""
667
+
668
+ #: classes/WP_Piwik/Admin/Settings.php:272
669
+ msgid "Do not count subdomains as outlink"
670
+ msgstr ""
671
+
672
+ #: classes/WP_Piwik/Admin/Settings.php:272
673
+ msgid "Adds *.-prefix to tracked domain."
674
+ msgstr ""
675
+
676
+ #: classes/WP_Piwik/Admin/Settings.php:274
677
+ msgid "Enable cross domain linking"
678
+ msgstr ""
679
+
680
+ #: classes/WP_Piwik/Admin/Settings.php:274
681
+ msgid ""
682
+ "When enabled, it will make sure to use the same visitor ID for the same "
683
+ "visitor across several domains. This works only when this feature is enabled"
684
+ " because the visitor ID is stored in a cookie and cannot be read on the "
685
+ "other domain by default. When this feature is enabled, it will append a URL "
686
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
687
+ "URL that belongs to one of your domains. For this feature to work, you also "
688
+ "have to configure which domains should be treated as local in your Piwik "
689
+ "website settings. This feature requires Piwik 3.0.2."
690
+ msgstr ""
691
+
692
+ #: classes/WP_Piwik/Admin/Settings.php:276
693
+ msgid "Track RSS feeds"
694
+ msgstr ""
695
+
696
+ #: classes/WP_Piwik/Admin/Settings.php:276
697
+ msgid "Enable to track posts in feeds via tracking pixel."
698
+ msgstr ""
699
+
700
+ #: classes/WP_Piwik/Admin/Settings.php:278
701
+ msgid "Track RSS feed links as campaign"
702
+ msgstr ""
703
+
704
+ #: classes/WP_Piwik/Admin/Settings.php:278
705
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
706
+ msgstr ""
707
+
708
+ #: classes/WP_Piwik/Admin/Settings.php:280
709
+ msgid "RSS feed campaign"
710
+ msgstr ""
711
+
712
+ #: classes/WP_Piwik/Admin/Settings.php:280
713
+ msgid "Keyword: post name."
714
+ msgstr ""
715
+
716
+ #: classes/WP_Piwik/Admin/Settings.php:282
717
+ msgid "Enable heartbeat timer"
718
+ msgstr ""
719
+
720
+ #: classes/WP_Piwik/Admin/Settings.php:282
721
+ msgid ""
722
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
723
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
724
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
725
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
726
+ "HTTP requests on your site."
727
+ msgstr ""
728
+
729
+ #: classes/WP_Piwik/Admin/Settings.php:284
730
+ msgid "User ID Tracking"
731
+ msgstr ""
732
+
733
+ #: classes/WP_Piwik/Admin/Settings.php:286
734
+ msgid "WP User ID"
735
+ msgstr ""
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:287
738
+ msgid "Email Address"
739
+ msgstr ""
740
+
741
+ #: classes/WP_Piwik/Admin/Settings.php:288
742
+ msgid "Username"
743
+ msgstr "Nama-Id"
744
+
745
+ #: classes/WP_Piwik/Admin/Settings.php:289
746
+ msgid "Display Name (Not Recommended!)"
747
+ msgstr ""
748
+
749
+ #: classes/WP_Piwik/Admin/Settings.php:290
750
+ msgid ""
751
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
752
+ "can select which field from the User's profile is tracked as the &quot;User "
753
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
754
+ msgstr ""
755
+
756
+ #: classes/WP_Piwik/Admin/Settings.php:295
757
+ msgid ""
758
+ "Usually, you do not need to change these settings. If you want to do so, you"
759
+ " should know what you do or you got an expert's advice."
760
+ msgstr ""
761
+
762
+ #: classes/WP_Piwik/Admin/Settings.php:297
763
+ msgid "Enable cache"
764
+ msgstr ""
765
+
766
+ #: classes/WP_Piwik/Admin/Settings.php:297
767
+ msgid "Cache API calls, which not contain today's values, for a week."
768
+ msgstr ""
769
+
770
+ #: classes/WP_Piwik/Admin/Settings.php:300
771
+ msgid "HTTP connection via"
772
+ msgstr ""
773
+
774
+ #: classes/WP_Piwik/Admin/Settings.php:301
775
+ #: classes/WP_Piwik/Admin/Settings.php:590
776
+ msgid "cURL"
777
+ msgstr ""
778
+
779
+ #: classes/WP_Piwik/Admin/Settings.php:302
780
+ #: classes/WP_Piwik/Admin/Settings.php:590
781
+ msgid "fopen"
782
+ msgstr ""
783
+
784
+ #: classes/WP_Piwik/Admin/Settings.php:303
785
+ msgid ""
786
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
787
+ " or Cloud mode."
788
+ msgstr ""
789
+
790
+ #: classes/WP_Piwik/Admin/Settings.php:305
791
+ msgid "HTTP method"
792
+ msgstr ""
793
+
794
+ #: classes/WP_Piwik/Admin/Settings.php:306
795
+ #: classes/WP_Piwik/Admin/Settings.php:590
796
+ msgid "POST"
797
+ msgstr ""
798
+
799
+ #: classes/WP_Piwik/Admin/Settings.php:307
800
+ #: classes/WP_Piwik/Admin/Settings.php:590
801
+ msgid "GET"
802
+ msgstr ""
803
+
804
+ #: classes/WP_Piwik/Admin/Settings.php:308
805
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
806
+ msgstr ""
807
+
808
+ #: classes/WP_Piwik/Admin/Settings.php:310
809
+ msgid "Disable time limit"
810
+ msgstr ""
811
+
812
+ #: classes/WP_Piwik/Admin/Settings.php:310
813
+ msgid "Use set_time_limit(0) if stats page causes a time out."
814
+ msgstr ""
815
+
816
+ #: classes/WP_Piwik/Admin/Settings.php:312
817
+ msgid "Connection timeout"
818
+ msgstr ""
819
+
820
+ #: classes/WP_Piwik/Admin/Settings.php:314
821
+ msgid "Disable SSL peer verification"
822
+ msgstr ""
823
+
824
+ #: classes/WP_Piwik/Admin/Settings.php:314
825
+ #: classes/WP_Piwik/Admin/Settings.php:315
826
+ msgid "not recommended"
827
+ msgstr "tidak direkomendasikan"
828
+
829
+ #: classes/WP_Piwik/Admin/Settings.php:315
830
+ msgid "Disable SSL host verification"
831
+ msgstr ""
832
+
833
+ #: classes/WP_Piwik/Admin/Settings.php:317
834
+ msgid "User agent"
835
+ msgstr ""
836
+
837
+ #: classes/WP_Piwik/Admin/Settings.php:318
838
+ msgid "Use the PHP default user agent"
839
+ msgstr ""
840
+
841
+ #: classes/WP_Piwik/Admin/Settings.php:318
842
+ msgid "empty"
843
+ msgstr ""
844
+
845
+ #: classes/WP_Piwik/Admin/Settings.php:319
846
+ msgid "Define a specific user agent"
847
+ msgstr ""
848
+
849
+ #: classes/WP_Piwik/Admin/Settings.php:321
850
+ msgid "Specific user agent"
851
+ msgstr ""
852
+
853
+ #: classes/WP_Piwik/Admin/Settings.php:323
854
+ msgid "Enable DNS prefetch"
855
+ msgstr ""
856
+
857
+ #: classes/WP_Piwik/Admin/Settings.php:323
858
+ #, php-format
859
+ msgid "See %sPiwik Blog%s."
860
+ msgstr ""
861
+
862
+ #: classes/WP_Piwik/Admin/Settings.php:323
863
+ msgid "Add a DNS prefetch tag. "
864
+ msgstr ""
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:325
867
+ msgid "Add data-cfasync=false"
868
+ msgstr ""
869
+
870
+ #: classes/WP_Piwik/Admin/Settings.php:325
871
+ #, php-format
872
+ msgid "See %sCloudFlare Knowledge Base%s."
873
+ msgstr ""
874
+
875
+ #: classes/WP_Piwik/Admin/Settings.php:325
876
+ msgid ""
877
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
878
+ "ignore the script. "
879
+ msgstr ""
880
+
881
+ #: classes/WP_Piwik/Admin/Settings.php:327
882
+ msgid "CDN URL"
883
+ msgstr ""
884
+
885
+ #: classes/WP_Piwik/Admin/Settings.php:329
886
+ msgid "CDN URL (SSL)"
887
+ msgstr ""
888
+
889
+ #: classes/WP_Piwik/Admin/Settings.php:331
890
+ msgid "Force Piwik to use a specific protocol"
891
+ msgstr ""
892
+
893
+ #: classes/WP_Piwik/Admin/Settings.php:332
894
+ msgid "Disabled (default)"
895
+ msgstr ""
896
+
897
+ #: classes/WP_Piwik/Admin/Settings.php:333
898
+ msgid "http"
899
+ msgstr ""
900
+
901
+ #: classes/WP_Piwik/Admin/Settings.php:334
902
+ msgid "https (SSL)"
903
+ msgstr ""
904
+
905
+ #: classes/WP_Piwik/Admin/Settings.php:335
906
+ msgid ""
907
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
908
+ "work with a CDN URL."
909
+ msgstr ""
910
+
911
+ #: classes/WP_Piwik/Admin/Settings.php:337
912
+ msgid "Update notice"
913
+ msgstr ""
914
+
915
+ #: classes/WP_Piwik/Admin/Settings.php:338
916
+ msgid "Show always if WP-Piwik is updated"
917
+ msgstr ""
918
+
919
+ #: classes/WP_Piwik/Admin/Settings.php:339
920
+ msgid "Show only if WP-Piwik is updated and settings were changed"
921
+ msgstr ""
922
+
923
+ #: classes/WP_Piwik/Admin/Settings.php:341
924
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
925
+ msgstr ""
926
+
927
+ #: classes/WP_Piwik/Admin/Settings.php:343
928
+ msgid "Define all file types for download tracking"
929
+ msgstr ""
930
+
931
+ #: classes/WP_Piwik/Admin/Settings.php:343
932
+ msgid ""
933
+ "Replace Piwik's default file extensions for download tracking, divided by a "
934
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
935
+ msgstr ""
936
+
937
+ #: classes/WP_Piwik/Admin/Settings.php:345
938
+ msgid "Set classes to be treated as downloads"
939
+ msgstr ""
940
+
941
+ #: classes/WP_Piwik/Admin/Settings.php:345
942
+ msgid ""
943
+ "Set classes to be treated as downloads (in addition to piwik_download), "
944
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
945
+ "settings."
946
+ msgstr ""
947
+
948
+ #: classes/WP_Piwik/Admin/Settings.php:345
949
+ #: classes/WP_Piwik/Admin/Settings.php:347
950
+ #, php-format
951
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
952
+ msgstr ""
953
+
954
+ #: classes/WP_Piwik/Admin/Settings.php:347
955
+ msgid "Set classes to be treated as outlinks"
956
+ msgstr ""
957
+
958
+ #: classes/WP_Piwik/Admin/Settings.php:347
959
+ msgid ""
960
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
961
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
962
+ msgstr ""
963
+
964
+ #: classes/WP_Piwik/Admin/Settings.php:508
965
+ msgid "Donate"
966
+ msgstr ""
967
+
968
+ #: classes/WP_Piwik/Admin/Settings.php:511
969
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
970
+ msgstr ""
971
+
972
+ #: classes/WP_Piwik/Admin/Settings.php:530
973
+ msgid "My Amazon.de wishlist"
974
+ msgstr ""
975
+
976
+ #: classes/WP_Piwik/Admin/Settings.php:533
977
+ #: classes/WP_Piwik/Admin/Settings.php:575
978
+ msgid "Please don't forget to vote the compatibility at the"
979
+ msgstr ""
980
+
981
+ #: classes/WP_Piwik/Admin/Settings.php:561
982
+ msgid "Thank you very much for your donation"
983
+ msgstr ""
984
+
985
+ #: classes/WP_Piwik/Admin/Settings.php:561
986
+ msgid "the Piwik team itself"
987
+ msgstr ""
988
+
989
+ #: classes/WP_Piwik/Admin/Settings.php:561
990
+ msgid ", and all people flattering this"
991
+ msgstr ""
992
+
993
+ #: classes/WP_Piwik/Admin/Settings.php:562
994
+ msgid ""
995
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
996
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
997
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
998
+ "Sparklines</a> (License: New BSD License)."
999
+ msgstr ""
1000
+
1001
+ #: classes/WP_Piwik/Admin/Settings.php:563
1002
+ msgid "Thank you very much"
1003
+ msgstr ""
1004
+
1005
+ #: classes/WP_Piwik/Admin/Settings.php:563
1006
+ msgid "for your translation work"
1007
+ msgstr ""
1008
+
1009
+ #: classes/WP_Piwik/Admin/Settings.php:564
1010
+ msgid ""
1011
+ "Thank you very much, all users who send me mails containing criticism, "
1012
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1013
+ " much better."
1014
+ msgstr ""
1015
+
1016
+ #: classes/WP_Piwik/Admin/Settings.php:565
1017
+ msgid ""
1018
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1019
+ "if my piece of code is really used!"
1020
+ msgstr ""
1021
+
1022
+ #: classes/WP_Piwik/Admin/Settings.php:574
1023
+ msgid "The best place to get help:"
1024
+ msgstr ""
1025
+
1026
+ #: classes/WP_Piwik/Admin/Settings.php:574
1027
+ msgid "WP-Piwik support forum"
1028
+ msgstr ""
1029
+
1030
+ #: classes/WP_Piwik/Admin/Settings.php:577
1031
+ msgid "Debugging"
1032
+ msgstr ""
1033
+
1034
+ #: classes/WP_Piwik/Admin/Settings.php:578
1035
+ msgid ""
1036
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1037
+ "available:"
1038
+ msgstr ""
1039
+
1040
+ #: classes/WP_Piwik/Admin/Settings.php:581
1041
+ msgid "cURL is"
1042
+ msgstr ""
1043
+
1044
+ #: classes/WP_Piwik/Admin/Settings.php:582
1045
+ #: classes/WP_Piwik/Admin/Settings.php:587
1046
+ msgid "not"
1047
+ msgstr ""
1048
+
1049
+ #: classes/WP_Piwik/Admin/Settings.php:583
1050
+ msgid "available"
1051
+ msgstr ""
1052
+
1053
+ #: classes/WP_Piwik/Admin/Settings.php:586
1054
+ msgid "allow_url_fopen is"
1055
+ msgstr ""
1056
+
1057
+ #: classes/WP_Piwik/Admin/Settings.php:588
1058
+ msgid "enabled"
1059
+ msgstr ""
1060
+
1061
+ #: classes/WP_Piwik/Admin/Settings.php:590
1062
+ msgid "is used."
1063
+ msgstr ""
1064
+
1065
+ #: classes/WP_Piwik/Admin/Settings.php:592
1066
+ msgid "Determined Piwik base URL is"
1067
+ msgstr ""
1068
+
1069
+ #: classes/WP_Piwik/Admin/Settings.php:596
1070
+ msgid "Tools"
1071
+ msgstr ""
1072
+
1073
+ #: classes/WP_Piwik/Admin/Settings.php:598
1074
+ msgid "Run testscript"
1075
+ msgstr ""
1076
+
1077
+ #: classes/WP_Piwik/Admin/Settings.php:599
1078
+ msgid "Sitebrowser"
1079
+ msgstr ""
1080
+
1081
+ #: classes/WP_Piwik/Admin/Settings.php:600
1082
+ msgid "Clear cache"
1083
+ msgstr ""
1084
+
1085
+ #: classes/WP_Piwik/Admin/Settings.php:601
1086
+ msgid "Are you sure you want to clear all settings?"
1087
+ msgstr ""
1088
+
1089
+ #: classes/WP_Piwik/Admin/Settings.php:601
1090
+ msgid "Reset WP-Piwik"
1091
+ msgstr ""
1092
+
1093
+ #: classes/WP_Piwik/Admin/Settings.php:603
1094
+ msgid "Latest support threads on WordPress.org"
1095
+ msgstr ""
1096
+
1097
+ #: classes/WP_Piwik/Admin/Settings.php:654
1098
+ msgid "Settings cleared (except connection settings)."
1099
+ msgstr ""
1100
+
1101
+ #: classes/WP_Piwik/Admin/Settings.php:670
1102
+ msgid "Cache cleared."
1103
+ msgstr ""
1104
+
1105
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1106
+ msgid "site"
1107
+ msgstr ""
1108
+
1109
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1110
+ msgid "sites"
1111
+ msgstr ""
1112
+
1113
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1114
+ msgid "No site configured yet."
1115
+ msgstr ""
1116
+
1117
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1118
+ msgid "Blog ID"
1119
+ msgstr ""
1120
+
1121
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1122
+ msgid "Title"
1123
+ msgstr "Judul"
1124
+
1125
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1126
+ msgid "URL"
1127
+ msgstr ""
1128
+
1129
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1130
+ msgid "Site ID (Piwik)"
1131
+ msgstr ""
1132
+
1133
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1134
+ msgid "Site not created yet."
1135
+ msgstr ""
1136
+
1137
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1138
+ msgid "Statistics"
1139
+ msgstr ""
1140
+
1141
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1142
+ msgid "Currently shown stats:"
1143
+ msgstr ""
1144
+
1145
+ #: classes/WP_Piwik/Request/Php.php:27
1146
+ msgid "Could not resolve"
1147
+ msgstr ""
1148
+
1149
+ #: classes/WP_Piwik/Request/Php.php:27
1150
+ msgid "realpath() returns false"
1151
+ msgstr ""
1152
+
1153
+ #: classes/WP_Piwik/Request/Php.php:39
1154
+ msgid "Class Piwik\\FrontController does not exists."
1155
+ msgstr ""
1156
+
1157
+ #: classes/WP_Piwik/Request/Php.php:42
1158
+ msgid "Class Piwik\\API\\Request does not exists."
1159
+ msgstr ""
1160
+
1161
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1162
+ msgid "Piwik Custom Variables"
1163
+ msgstr ""
1164
+
1165
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1166
+ msgid "Name"
1167
+ msgstr ""
1168
+
1169
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1170
+ msgid "Value"
1171
+ msgstr ""
1172
+
1173
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1174
+ msgid "Set custom variables for a page view"
1175
+ msgstr ""
1176
+
1177
+ #: classes/WP_Piwik/Widget.php:91
1178
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1179
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1180
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1181
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1182
+ #: classes/WP_Piwik/Widget/Items.php:23
1183
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1184
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1185
+ #: classes/WP_Piwik/Widget/Overview.php:24
1186
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1187
+ #: classes/WP_Piwik/Widget/Screens.php:35
1188
+ #: classes/WP_Piwik/Widget/Search.php:23 classes/WP_Piwik/Widget/Seo.php:20
1189
+ #: classes/WP_Piwik/Widget/SystemDetails.php:33
1190
+ #: classes/WP_Piwik/Widget/Systems.php:33
1191
+ #: classes/WP_Piwik/Widget/Visitors.php:35
1192
+ msgid "Piwik error"
1193
+ msgstr ""
1194
+
1195
+ #: classes/WP_Piwik/Widget.php:100
1196
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1197
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1198
+ #: classes/WP_Piwik/Widget/Country.php:39
1199
+ #: classes/WP_Piwik/Widget/Screens.php:37
1200
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1201
+ #: classes/WP_Piwik/Widget/Systems.php:35
1202
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1203
+ msgid "Unique"
1204
+ msgstr ""
1205
+
1206
+ #: classes/WP_Piwik/Widget.php:102 classes/WP_Piwik/Widget/Plugins.php:25
1207
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1208
+ msgid "Visits"
1209
+ msgstr ""
1210
+
1211
+ #: classes/WP_Piwik/Widget.php:104
1212
+ msgid "Hits"
1213
+ msgstr ""
1214
+
1215
+ #: classes/WP_Piwik/Widget.php:106
1216
+ msgid "Actions"
1217
+ msgstr ""
1218
+
1219
+ #: classes/WP_Piwik/Widget.php:162
1220
+ msgid "No data available."
1221
+ msgstr ""
1222
+
1223
+ #: classes/WP_Piwik/Widget.php:243
1224
+ msgid "today"
1225
+ msgstr ""
1226
+
1227
+ #: classes/WP_Piwik/Widget.php:248
1228
+ msgid "current month"
1229
+ msgstr ""
1230
+
1231
+ #: classes/WP_Piwik/Widget.php:253
1232
+ msgid "last month"
1233
+ msgstr ""
1234
+
1235
+ #: classes/WP_Piwik/Widget.php:258
1236
+ msgid "current week"
1237
+ msgstr ""
1238
+
1239
+ #: classes/WP_Piwik/Widget.php:263
1240
+ msgid "last week"
1241
+ msgstr ""
1242
+
1243
+ #: classes/WP_Piwik/Widget.php:268
1244
+ msgid "yesterday"
1245
+ msgstr ""
1246
+
1247
+ #: classes/WP_Piwik/Widget.php:293
1248
+ msgid "week"
1249
+ msgstr ""
1250
+
1251
+ #: classes/WP_Piwik/Widget.php:328
1252
+ msgid "last 30 days"
1253
+ msgstr ""
1254
+
1255
+ #: classes/WP_Piwik/Widget.php:330
1256
+ msgid "last 12 "
1257
+ msgstr ""
1258
+
1259
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:18
1260
+ msgid "Browser Details"
1261
+ msgstr ""
1262
+
1263
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1264
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1265
+ msgid "Browser"
1266
+ msgstr ""
1267
+
1268
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:39
1269
+ #: classes/WP_Piwik/Widget/Browsers.php:39
1270
+ #: classes/WP_Piwik/Widget/Country.php:39
1271
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1272
+ #: classes/WP_Piwik/Widget/Screens.php:37
1273
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1274
+ #: classes/WP_Piwik/Widget/Systems.php:35
1275
+ msgid "Percent"
1276
+ msgstr ""
1277
+
1278
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:66
1279
+ #: classes/WP_Piwik/Widget/Browsers.php:66
1280
+ #: classes/WP_Piwik/Widget/Country.php:66
1281
+ #: classes/WP_Piwik/Widget/Screens.php:64
1282
+ #: classes/WP_Piwik/Widget/SystemDetails.php:62
1283
+ #: classes/WP_Piwik/Widget/Systems.php:62
1284
+ msgid "Others"
1285
+ msgstr ""
1286
+
1287
+ #: classes/WP_Piwik/Widget/Browsers.php:18
1288
+ msgid "Browsers"
1289
+ msgstr ""
1290
+
1291
+ #: classes/WP_Piwik/Widget/Chart.php:19
1292
+ #: classes/WP_Piwik/Widget/Overview.php:48 classes/WP_Piwik/Widget/Post.php:37
1293
+ #: classes/WP_Piwik/Widget/Visitors.php:17
1294
+ msgid "Visitors"
1295
+ msgstr ""
1296
+
1297
+ #: classes/WP_Piwik/Widget/Chart.php:71
1298
+ msgid ""
1299
+ "The graph contains the values shown in the table below (visitors / unique / "
1300
+ "bounces). The red line shows a linear trendline (unique)."
1301
+ msgstr ""
1302
+
1303
+ #: classes/WP_Piwik/Widget/Country.php:18
1304
+ msgid "Countries"
1305
+ msgstr "Negara"
1306
+
1307
+ #: classes/WP_Piwik/Widget/Country.php:39
1308
+ msgid "Country"
1309
+ msgstr "Negara"
1310
+
1311
+ #: classes/WP_Piwik/Widget/Ecommerce.php:11
1312
+ msgid "E-Commerce"
1313
+ msgstr ""
1314
+
1315
+ #: classes/WP_Piwik/Widget/Ecommerce.php:27
1316
+ msgid "Conversions"
1317
+ msgstr "Konversi"
1318
+
1319
+ #: classes/WP_Piwik/Widget/Ecommerce.php:28
1320
+ msgid "Visits converted"
1321
+ msgstr ""
1322
+
1323
+ #: classes/WP_Piwik/Widget/Ecommerce.php:29
1324
+ #: classes/WP_Piwik/Widget/Items.php:27
1325
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:27
1326
+ msgid "Revenue"
1327
+ msgstr "Pendapatan"
1328
+
1329
+ #: classes/WP_Piwik/Widget/Ecommerce.php:30
1330
+ #: classes/WP_Piwik/Widget/Items.php:32
1331
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:32
1332
+ msgid "Conversion rate"
1333
+ msgstr ""
1334
+
1335
+ #: classes/WP_Piwik/Widget/Ecommerce.php:31
1336
+ msgid "Conversions (new visitor)"
1337
+ msgstr ""
1338
+
1339
+ #: classes/WP_Piwik/Widget/Ecommerce.php:32
1340
+ msgid "Visits converted (new visitor)"
1341
+ msgstr ""
1342
+
1343
+ #: classes/WP_Piwik/Widget/Ecommerce.php:33
1344
+ msgid "Revenue (new visitor)"
1345
+ msgstr ""
1346
+
1347
+ #: classes/WP_Piwik/Widget/Ecommerce.php:34
1348
+ msgid "Conversion rate (new visitor)"
1349
+ msgstr ""
1350
+
1351
+ #: classes/WP_Piwik/Widget/Ecommerce.php:35
1352
+ msgid "Conversions (returning visitor)"
1353
+ msgstr ""
1354
+
1355
+ #: classes/WP_Piwik/Widget/Ecommerce.php:36
1356
+ msgid "Visits converted (returning visitor)"
1357
+ msgstr ""
1358
+
1359
+ #: classes/WP_Piwik/Widget/Ecommerce.php:37
1360
+ msgid "Revenue (returning visitor)"
1361
+ msgstr ""
1362
+
1363
+ #: classes/WP_Piwik/Widget/Ecommerce.php:38
1364
+ msgid "Conversion rate (returning visitor)"
1365
+ msgstr ""
1366
+
1367
+ #: classes/WP_Piwik/Widget/Ecommerce.php:40
1368
+ #: classes/WP_Piwik/Widget/Overview.php:58 classes/WP_Piwik/Widget/Post.php:46
1369
+ msgid "Shortcut"
1370
+ msgstr ""
1371
+
1372
+ #: classes/WP_Piwik/Widget/Items.php:11
1373
+ msgid "E-Commerce Items"
1374
+ msgstr ""
1375
+
1376
+ #: classes/WP_Piwik/Widget/Items.php:26
1377
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:26
1378
+ msgid "Label"
1379
+ msgstr "Label"
1380
+
1381
+ #: classes/WP_Piwik/Widget/Items.php:28
1382
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:28
1383
+ msgid "Quantity"
1384
+ msgstr "Kuantitas"
1385
+
1386
+ #: classes/WP_Piwik/Widget/Items.php:29
1387
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:29
1388
+ msgid "Orders"
1389
+ msgstr ""
1390
+
1391
+ #: classes/WP_Piwik/Widget/Items.php:30
1392
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:30
1393
+ msgid "Avg. price"
1394
+ msgstr ""
1395
+
1396
+ #: classes/WP_Piwik/Widget/Items.php:31
1397
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:31
1398
+ msgid "Avg. quantity"
1399
+ msgstr ""
1400
+
1401
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:11
1402
+ msgid "E-Commerce Item Categories"
1403
+ msgstr ""
1404
+
1405
+ #: classes/WP_Piwik/Widget/Keywords.php:16
1406
+ msgid "Keywords"
1407
+ msgstr ""
1408
+
1409
+ #: classes/WP_Piwik/Widget/Noresult.php:16
1410
+ #: classes/WP_Piwik/Widget/Search.php:16
1411
+ msgid "Site Search"
1412
+ msgstr ""
1413
+
1414
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1415
+ #: classes/WP_Piwik/Widget/Search.php:25
1416
+ msgid "Keyword"
1417
+ msgstr "Katakunci"
1418
+
1419
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1420
+ #: classes/WP_Piwik/Widget/Search.php:25
1421
+ msgid "Requests"
1422
+ msgstr ""
1423
+
1424
+ #: classes/WP_Piwik/Widget/Noresult.php:25
1425
+ #: classes/WP_Piwik/Widget/Search.php:25
1426
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1427
+ msgid "Bounced"
1428
+ msgstr ""
1429
+
1430
+ #: classes/WP_Piwik/Widget/Overview.php:17 classes/WP_Piwik/Widget/Post.php:18
1431
+ msgid "Overview"
1432
+ msgstr ""
1433
+
1434
+ #: classes/WP_Piwik/Widget/Overview.php:17
1435
+ msgid "dashboard"
1436
+ msgstr ""
1437
+
1438
+ #: classes/WP_Piwik/Widget/Overview.php:50 classes/WP_Piwik/Widget/Post.php:38
1439
+ msgid "Unique visitors"
1440
+ msgstr ""
1441
+
1442
+ #: classes/WP_Piwik/Widget/Overview.php:52 classes/WP_Piwik/Widget/Post.php:39
1443
+ msgid "Page views"
1444
+ msgstr ""
1445
+
1446
+ #: classes/WP_Piwik/Widget/Overview.php:53 classes/WP_Piwik/Widget/Post.php:40
1447
+ msgid "Total time spent"
1448
+ msgstr ""
1449
+
1450
+ #: classes/WP_Piwik/Widget/Overview.php:54 classes/WP_Piwik/Widget/Post.php:42
1451
+ msgid "Bounce count"
1452
+ msgstr ""
1453
+
1454
+ #: classes/WP_Piwik/Widget/Overview.php:57 classes/WP_Piwik/Widget/Post.php:41
1455
+ msgid "Time/visit"
1456
+ msgstr ""
1457
+
1458
+ #: classes/WP_Piwik/Widget/Overview.php:57
1459
+ msgid "Max. page views in one visit"
1460
+ msgstr ""
1461
+
1462
+ #: classes/WP_Piwik/Widget/Pages.php:16
1463
+ msgid "Pages"
1464
+ msgstr ""
1465
+
1466
+ #: classes/WP_Piwik/Widget/Pages.php:18
1467
+ msgid "Page"
1468
+ msgstr "Halaman"
1469
+
1470
+ #: classes/WP_Piwik/Widget/Plugins.php:16
1471
+ msgid "Plugins"
1472
+ msgstr ""
1473
+
1474
+ #: classes/WP_Piwik/Widget/Plugins.php:25
1475
+ msgid "Plugin"
1476
+ msgstr ""
1477
+
1478
+ #: classes/WP_Piwik/Widget/Post.php:43
1479
+ msgid "Min. generation time"
1480
+ msgstr ""
1481
+
1482
+ #: classes/WP_Piwik/Widget/Post.php:44
1483
+ msgid "Max. generation time"
1484
+ msgstr ""
1485
+
1486
+ #: classes/WP_Piwik/Widget/Referrers.php:16
1487
+ msgid "Referrers"
1488
+ msgstr ""
1489
+
1490
+ #: classes/WP_Piwik/Widget/Screens.php:16
1491
+ msgid "Resolutions"
1492
+ msgstr ""
1493
+
1494
+ #: classes/WP_Piwik/Widget/Screens.php:37
1495
+ msgid "Resolution"
1496
+ msgstr ""
1497
+
1498
+ #: classes/WP_Piwik/Widget/Seo.php:13
1499
+ msgid "SEO"
1500
+ msgstr ""
1501
+
1502
+ #: classes/WP_Piwik/Widget/SystemDetails.php:14
1503
+ msgid "Operation System Details"
1504
+ msgstr ""
1505
+
1506
+ #: classes/WP_Piwik/Widget/SystemDetails.php:35
1507
+ #: classes/WP_Piwik/Widget/Systems.php:35
1508
+ msgid "Operation System"
1509
+ msgstr ""
1510
+
1511
+ #: classes/WP_Piwik/Widget/Systems.php:14
1512
+ msgid "Operation Systems"
1513
+ msgstr ""
1514
+
1515
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1516
+ msgid "Date"
1517
+ msgstr ""
1518
+
1519
+ #: classes/WP_Piwik/Widget/Visitors.php:57
1520
+ msgid "Page Views"
1521
+ msgstr ""
1522
+
1523
+ #: wp-piwik.php:60
1524
+ #, php-format
1525
+ msgid ""
1526
+ "WP-Piwik requires at least PHP 5.3. You are using the deprecated version %s."
1527
+ " Please update PHP to use WP-Piwik."
1528
+ msgstr ""
languages/wp-piwik-it_IT.mo CHANGED
Binary file
languages/wp-piwik-it_IT.po CHANGED
@@ -1,740 +1,1532 @@
1
- # Translation of the WordPress plugin WP-Piwik 0.8.0 by Andr&eacute; Br&auml;kling.
2
- # Copyright (C) 2010 Andr&eacute; Br&auml;kling
3
- # This file is distributed under the same license as the WP-Piwik package.
4
- #
5
- # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011.
6
- # Stef Binde <ste@vogliaditerra.com>, 2013.
7
- msgid ""
8
- msgstr ""
9
- "Project-Id-Version: WP-Piwik 0.8.4\n"
10
- "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-piwik\n"
11
- "POT-Creation-Date: 2010-07-19 18:06+0000\n"
12
- "PO-Revision-Date: 2013-02-21 18:11+0100\n"
13
- "Last-Translator: Stef Binde <ste@vogliaditerra.com>\n"
14
- "Language-Team: Italian <ste@vogliaditerra.com>\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
17
  "Content-Transfer-Encoding: 8bit\n"
18
- "Language: it\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
- "X-Generator: Lokalize 1.5\n"
21
-
22
- #: dashboard/browsers.php:12 dashboard/browsers.php:33
23
- msgid "Browser"
24
- msgstr "Browser"
25
-
26
- #: dashboard/browsers.php:22 dashboard/pages.php:43 dashboard/screens.php:22
27
- #: dashboard/systems.php:22
28
- msgid "Others"
29
- msgstr "Altri "
30
 
31
- #: dashboard/browsers.php:34 dashboard/keywords.php:17 dashboard/pages.php:22
32
- #: dashboard/screens.php:33 dashboard/systems.php:35 dashboard/visitors.php:53
33
- #: dashboard/websites.php:19 wp-piwik.php:305
34
- msgid "Unique"
35
- msgstr "Unici"
36
 
37
- #: dashboard/browsers.php:35 dashboard/plugins.php:33 dashboard/screens.php:34
38
- #: dashboard/systems.php:36
39
- msgid "Percent"
40
- msgstr "Percentuale"
41
 
42
- #: dashboard/keywords.php:12
43
- msgid "Keywords"
44
- msgstr "Parole chiave"
 
45
 
46
- #: dashboard/keywords.php:17
47
- msgid "Keyword"
48
- msgstr "Parole chiavi"
49
 
50
- #: dashboard/overview.php:12
51
- msgid "Overview"
52
- msgstr "Resoconto"
53
 
54
- #: dashboard/overview.php:42 dashboard/visitors.php:24
55
- msgid "Visitors"
56
- msgstr "Visitatori"
57
 
58
- #: dashboard/overview.php:43
59
- msgid "Unique visitors"
60
- msgstr "Visitatori unici"
61
 
62
- #: dashboard/overview.php:44
63
- msgid "Page views"
64
- msgstr "Pagine viste"
65
 
66
- #: dashboard/overview.php:45
67
- msgid "Max. page views in one visit"
68
- msgstr "Massimo di pagine viste in una visita"
69
 
70
- #: dashboard/overview.php:46
71
- msgid "Total time spent"
72
- msgstr "Tempo di rimanenza"
73
 
74
- msgid "Time/visit"
75
- msgstr "Media durata per visita"
 
76
 
77
- #: dashboard/overview.php:47
78
- msgid "Bounce count"
79
- msgstr "Rimbalzi "
80
 
81
- #: dashboard/overview.php:49 wp-piwik.php:563
82
- msgid "Shortcut"
83
- msgstr "Scorciatoia"
84
 
85
- #: dashboard/pages.php:13
86
- msgid "Pages"
87
- msgstr "Pagine"
88
 
89
- #: dashboard/pages.php:21
90
- msgid "Page"
91
- msgstr "Pagina"
 
92
 
93
- #: dashboard/pages.php:23 dashboard/plugins.php:32 dashboard/visitors.php:52
94
- msgid "Visits"
95
- msgstr "Visite"
 
96
 
97
- #: dashboard/plugins.php:12 dashboard/plugins.php:31
98
- msgid "Plugins"
99
- msgstr "Plugins"
 
 
 
100
 
101
- #: dashboard/screens.php:12 dashboard/screens.php:32
102
- msgid "Resolution"
103
- msgstr "Risoluzione"
 
 
 
104
 
105
- #: dashboard/systems.php:12 dashboard/systems.php:34
106
- msgid "Operating System"
107
- msgstr "Sistemi operativi"
 
 
 
108
 
109
- #: dashboard/visitors.php:51
110
- msgid "Date"
111
- msgstr "Data"
 
 
 
112
 
113
- #: dashboard/visitors.php:54
114
- msgid "Bounced"
115
- msgstr "Uscite"
116
 
117
- #: dashboard/visitors.php:67
118
- msgid "Unique TOTAL"
119
- msgstr "Unici totali"
120
 
121
- #: dashboard/visitors.php:67
122
- msgid "Sum"
123
- msgstr "Somma"
124
 
125
- #: dashboard/visitors.php:67
126
- msgid "Avg"
127
- msgstr "Media"
128
 
129
- #: dashboard/websites.php:12
130
- msgid "Websites"
131
- msgstr "Provenienze"
132
 
133
- #: dashboard/websites.php:18
134
- msgid "Website"
135
- msgstr "Pagina web"
 
 
 
 
 
 
 
 
136
 
137
- #: wp-piwik.php:110 wp-piwik.php:365
138
- msgid "Piwik Statistics"
139
- msgstr "Statistiche Piwik"
140
 
141
- #. #-#-#-#-# plugin.pot (WP-Piwik 0.8.0) #-#-#-#-#
142
- #. Plugin Name of the plugin/theme
143
- #: wp-piwik.php:111 wp-piwik.php:122 wp-piwik.php:123 wp-piwik.php:146
144
- msgid "WP-Piwik"
145
- msgstr "WP-Piwik"
146
 
147
- #: wp-piwik.php:130 wp-piwik.php:131
148
- msgid "WPMU-Piwik"
149
- msgstr "WPMU-Piwik"
 
 
150
 
151
- #: wp-piwik.php:142 wp-piwik.php:557
152
- msgid "yesterday"
153
- msgstr "ieri"
 
154
 
155
- #: wp-piwik.php:143 wp-piwik.php:558
156
- msgid "today"
157
- msgstr "oggi"
158
 
159
- #: wp-piwik.php:144 wp-piwik.php:559
160
- msgid "last30"
161
- msgstr "ultimi 30 giorni"
 
162
 
163
- #: wp-piwik.php:144 wp-piwik.php:559
164
- msgid "last 30 days"
165
- msgstr "ultimi 30 giorni"
 
 
166
 
167
- #: wp-piwik.php:179
168
- msgid "Settings"
169
- msgstr "Impostazioni"
 
170
 
171
- #: wp-piwik.php:381
172
- msgid "Change"
173
- msgstr "Cambia"
 
 
174
 
175
- #: wp-piwik.php:382
176
- msgid "Currently shown stats:"
177
- msgstr "Statistiche mostrate attualmente:"
 
178
 
179
- #: wp-piwik.php:383
180
- msgid "Current shown stats: <strong>Overall</strong>"
181
- msgstr "Statistiche mostrate attualmente<strong>Tutte<strong>"
 
 
182
 
183
- #: wp-piwik.php:448
184
- msgid "WP-Piwik Settings"
185
- msgstr "Impostazioni di WP-Piwik"
186
 
187
- #: wp-piwik.php:455 wp-piwik.php:617
188
- msgid "Account settings"
189
- msgstr "Impostazioni Account"
190
 
191
- #: wp-piwik.php:457 wp-piwik.php:619
192
  msgid "Piwik URL"
193
  msgstr "URL di Piwik"
194
 
195
- #: wp-piwik.php:461 wp-piwik.php:623
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
196
  msgid "Auth token"
197
  msgstr "Auth Token"
198
 
199
- #: wp-piwik.php:467 wp-piwik.php:628
200
  msgid ""
201
- "To enable Piwik statistics, please enter your Piwik"
202
- " base URL (like http://mydomain.com/piwik) and your"
203
- " personal authentification token. You can get the token"
204
- " on the API page inside your Piwik interface. It looks"
205
- " like &quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
206
- msgstr ""
207
- "Per abilitare le statistiche di Piwik devi inserire URL della installazione"
208
- "di Piwik (p.e.. http://miosito.com/piwik) e la chiave personale di "
209
- "autenticazione (Token). La chiave si trova nell'interfaccia di Piwik sulla "
210
- "pagina API. Ha un aspetto simile a: "
211
- "&quot;1234a5cd6789e0a12345b678cd9012ef&quot;."
 
212
 
213
- #: wp-piwik.php:477
214
  msgid ""
215
- "<strong>Important note:</strong> If you do not host this blog on your own, "
216
- "your site admin is able to get your auth token from the database. So he is "
217
- "able to access your statistics. You should never use an auth token with more "
218
- "than simple view access!"
 
 
 
 
 
219
  msgstr ""
220
- "<strong>Nota importante:</strong><strong>Nota importante:</strong> Se non è "
221
- "un hosting personale l'amministratore del sito può passarti il codice di "
222
- "autorizzazione (auth token) dal database. Mai usare un auth token con più "
223
- "diritti che lettura."
224
 
225
- #: wp-piwik.php:485 wp-piwik.php:489
226
- msgid "An error occured"
227
- msgstr "E' successo un errore"
228
 
229
- #: wp-piwik.php:486
230
- msgid ""
231
- "Please check URL and auth token. You need at least view access to one site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  msgstr ""
233
- "Controlla URL e la chiave di autenticazione (token). Come minimo occorrono "
234
- "diritti di lettura per una pagina."
235
 
236
- #: wp-piwik.php:492
237
- msgid "Choose site"
238
- msgstr "Seleziona pagina"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
239
 
240
- #: wp-piwik.php:511 wp-piwik.php:547 wp-piwik.php:584 wp-piwik.php:658
241
- msgid "Save settings"
242
- msgstr "Salva la configurazione"
243
 
244
- #: wp-piwik.php:515 wp-piwik.php:643
245
- msgid "Tracking settings"
246
- msgstr "Impostazioni Tracking"
247
 
248
- #: wp-piwik.php:521
249
- msgid "Add script"
250
- msgstr "Aggiungi script"
251
 
252
- #: wp-piwik.php:525
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
253
  msgid ""
254
- "If your template uses wp_footer(), WP-Piwik can automatically add the Piwik "
255
- "javascript code to your blog."
256
- msgstr ""
257
- "Se il tuo template usa wp_footer() Piwik ci può inserire il codice javascript "
258
- "nel tuo blog automaticamente."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
 
260
- #: wp-piwik.php:528
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
261
  msgid "Track 404"
262
  msgstr "Tracciamento 404"
263
 
264
- #: wp-piwik.php:532
265
- msgid "WP-Piwik can automatically add a 404-category to track 404-page-visits."
 
 
 
 
 
266
  msgstr ""
267
- "WP-Piwik può aggiungere in automatico una categoria per tracciare visite 404."
268
 
269
- #: wp-piwik.php:536 wp-piwik.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
270
  msgid "Tracking filter"
271
  msgstr "Filtro tracciamento"
272
 
 
273
  msgid "Choose users by user role you do <strong>not</strong> want to track."
274
  msgstr "Seleziona utenti per ruolo che <b>non</b> vuoi tracciare."
275
 
276
- msgid ""
277
- "Choose users by user role you do <strong>not</strong> want to track. Requires "
278
- "enabled &quot;Add script&quot;-functionality."
279
- msgstr ""
280
- "Seleziona utenti per ruolo che <b>non</b> vuoi tracciare. "
281
- "La funziona tracciamento deve essere abilita."
282
 
283
- #: wp-piwik.php:551
284
- msgid "Statistic view settings"
285
- msgstr "Impostazioni per le statistiche"
286
 
287
- #: wp-piwik.php:554
288
- msgid "Dashboard"
289
- msgstr "Dashboard"
290
 
291
- #: wp-piwik.php:556
292
- msgid "No"
293
- msgstr "No"
294
 
295
- #: wp-piwik.php:557 wp-piwik.php:558 wp-piwik.php:559
296
- msgid "Yes"
297
- msgstr ""
298
 
299
- #: wp-piwik.php:562
300
- msgid "Display a dashboard widget to your WordPress dashboard."
301
- msgstr "Visualizza un widget per la dashboard di Wordpress."
 
 
 
 
 
 
 
 
302
 
303
- #: wp-piwik.php:567
304
- msgid "Display a shortcut to Piwik itself."
305
- msgstr "Visualizzare una scorciatoia per il Piwik principale."
306
 
307
- #: wp-piwik.php:568
308
- msgid "Display to"
309
- msgstr "visualizzare per"
310
 
311
- #: wp-piwik.php:579
312
- msgid "Choose user roles allowed to see the statistics page."
313
- msgstr "Seleziona il ruolo per poter accedere alla pagina di statistiche."
314
 
315
- #: wp-piwik.php:612
316
- msgid "WPMU-Piwik Settings"
317
- msgstr "Impostazioni WPMU-Piwik"
318
-
319
- #: wp-piwik.php:636
320
- msgid ""
321
- "<strong>Important note:</strong> You have to choose a token which provides "
322
- "administration access. WPMU-Piwik will create new Piwik sites for each blog "
323
- "if it is shown the first time and it is not added yet. All users can access "
324
- "their own statistics only, while site admins can access all statistics. To "
325
- "avoid conflicts, you should use a clean Piwik installation without other "
326
- "sites added. The provided themes should use wp_footer, because it adds the "
327
- "Piwik javascript code to each page."
328
- msgstr ""
329
- "<strong>Nota importante:</strong> Devi scegliere un token che permette "
330
- "accesso come amministratore. WPMU-Piwik creerà nuove pagine Piwik per "
331
- "ciascuno blog nuovo non aggiunto già. Gli utenti possono accedere alle loro "
332
- "statistiche mentre gli amministratori del sito possono accedere a tutte le "
333
- "statistiche. Per evitare conflitti dovresti usare una installazione Piwik "
334
- "fresca e pulita. I temi scelti dovrebbero usare wp_footer per aggiungere il "
335
- "codice ad ogni pagina."
336
-
337
- #: wp-piwik.php:671
338
- msgid "If you like WP-Piwik, you can support its development by a donation:"
339
  msgstr ""
340
- "Se ti piace WP-Piwik e vuoi contribuire al suo sviluppo, considera una "
341
- "donazione."
342
 
343
- #: wp-piwik.php:687
344
- msgid "My Amazon.de wishlist (German)"
345
- msgstr "Mia wishlist Amazon (tedesco)"
 
 
 
 
346
 
347
- #. Plugin URI of the plugin/theme
348
- msgid "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
349
- msgstr "http://www.braekling.de/wp-piwik-wpmu-piwik-wordpress/"
350
 
351
- #. Description of the plugin/theme
352
  msgid ""
353
- "Adds Piwik stats to your dashboard menu and Piwik code to your wordpress "
354
- "footer."
355
- msgstr ""
356
- "Aggiunge le statistiche di Piwik al menu della Dashboard è il codice di "
357
- "Piwik nel piè di pagina di Wordpress."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
 
359
- #. Author of the plugin/theme
360
- msgid "Andr&eacute; Br&auml;kling"
361
- msgstr "Andr&eacute; Br&auml;kling"
362
 
363
- #. Author URI of the plugin/theme
364
- msgid "http://www.braekling.de"
365
- msgstr "http://www.braekling.de"
366
 
367
- msgid "Credits"
368
- msgstr "Ringraziamenti"
 
369
 
370
- msgid "Thank you very much for your donation"
371
- msgstr "Grazie per le vostre donazioni"
 
 
372
 
373
- msgid "and all people flattering this"
374
- msgstr "e a tutti gli utenti che cliccano Flattr"
 
 
375
 
 
376
  msgid ""
377
- "Graphs powered by <a href=\"http://www.jqplot.com/\">jqPlot</a>, an open "
378
- "source project by Chris Leonello. Give it a try! (License: GPL 2.0 and MIT)"
379
  msgstr ""
380
- "I grafici sono generati con <a href=\"http://www.jqplot.com/\">jqPlot</a> "
381
- "un progetto Open-Source di Chris Leonello. Provalo!"
382
- "(Licenza: GPL 2.0 e MIT)"
383
 
384
- msgid "Thank you very much"
385
- msgstr "Mille grazie"
 
386
 
387
- msgid ", and"
388
- msgstr ", e"
 
 
389
 
390
- msgid "for your translation work"
391
- msgstr "per il vostro lavoro di traduzione"
 
 
392
 
393
- msgid ""
394
- "Thank you very much, all users who send me mails containing criticism, "
395
- "commendation, feature requests and bug reports! You help me to make WP-Piwik "
396
- "much better."
397
  msgstr ""
398
- "Un ringraziamento sentito per tutti gli utenti che mi inviano critiche, "
399
- "proposte e bug reports! Mi aiutate di migliorare WP-Piwik."
400
 
401
- msgid ""
402
- "Thank <strong>you</strong> for using my plugin. It is the best commendation "
403
- "if my piece of code is really used!"
404
- msgstr ""
405
- "Grazie <strong> a te</strong> per usare il mio plugin. E' la più grande "
406
- "soddisfazione se il mio codice viene usato realmente!"
407
 
408
- msgid "Changes saved"
409
- msgstr "Cambiamenti salvati"
 
410
 
411
- msgid "installed"
412
- msgstr "installato"
 
413
 
414
- msgid "Next you should connect to Piwik"
415
- msgstr "Adesso crea una connessione a Piwik"
 
416
 
417
- msgid "Please validate your configuration"
418
- msgstr "Per favore controlla la tua configurazione"
 
 
419
 
420
- msgid "Default date"
421
- msgstr "Default data"
 
422
 
423
- msgid "Default date shown on statistics page."
424
- msgstr "Il giorno che verrà mostrato sulla pagina delle statistiche."
 
425
 
426
- msgid "Dashboard data"
427
- msgstr "Dati del dashboard"
 
428
 
429
- msgid "Display an overview widget to your WordPress dashboard."
430
- msgstr "Visualizza un widget per il resoconto sulla dashboard di Wordpress."
 
431
 
432
- msgid "Board chart"
433
- msgstr "Board-Chart"
 
434
 
435
- msgid "Display a visitor graph widget to your WordPress dashboard."
436
- msgstr "Visualizza un grafico con le visite sul Dashboard di Wordpress."
 
437
 
438
- msgid "No data available."
439
- msgstr "Nessun dato disponibile."
 
440
 
441
- msgid ""
442
- "Check this to automatically choose your blog from your Piwik sites by URL. If "
443
- "your blog is not added to Piwik yet, WP-Piwik will add a new site."
 
 
 
 
444
  msgstr ""
445
- "Spunta questo per selezionare automaticamente il tuo blog tra i siti Piwik "
446
- "tramite l'URL. Se il tuo blog non è inserito in Piwik Wp-Piwik lo aggiungerà."
447
 
448
- msgid "If you add the Piwik javascript code by wp_footer(),"
449
- msgstr "Se inserisci il codice di Piwik tramite wp_footer() nel tuo blog,"
 
450
 
451
- msgid "WP-Piwik can automatically use js/index.php instead of piwik.js. See"
 
 
452
  msgstr ""
453
- "WP-Piwik può usare automaticamente js/index.php al posto di piwik.js. Vedi"
454
 
 
455
  msgid ""
456
- "WP-Piwik can automatically force the Tracking Code to sent data in POST. See"
 
457
  msgstr ""
458
- "WP-Piwik può automaticamente forzare l'invio del codice di tracciamento in "
459
- "POST. Vedi"
460
 
461
- msgid "Avoid mod_security"
462
- msgstr "Evita mod_security"
 
463
 
464
- msgid "Determined site"
465
- msgstr "Sito rilevato"
 
466
 
467
- msgid "Auto config"
468
- msgstr "Configurazione automatica"
 
469
 
470
- msgid "Use js/index.php"
471
- msgstr "Usa js/index.php"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
 
473
- msgid "Show overview"
474
- msgstr "Visualizza resoconto"
 
475
 
476
- msgid "Hide overview"
477
- msgstr "Nessun resoconto"
 
478
 
479
- msgid "SEO <em>(slow!)</em>"
480
- msgstr "SEO <em>(lento!)</em>"
 
481
 
482
- msgid "Display SEO ranking data on statistics page. <em>(Slow!)</em>"
 
 
 
 
 
 
 
483
  msgstr ""
484
- "Visualizza dati SEO ranking sulla pagina delle statistiche. <em>(Lento!)</em>"
485
 
 
486
  msgid ""
487
- "Configure WP-Piwik widgets to be shown on your WordPress Home Dashboard."
 
 
 
 
 
 
 
 
488
  msgstr ""
489
- "Configura i widget di WP-Piwik per il resoconto sulla Dashboard di Wordpress."
490
 
491
- msgid "SEO data"
492
- msgstr "Dati SEO"
 
 
 
 
 
 
 
493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  msgid "the Piwik team itself"
495
  msgstr "il team di Piwik stesso"
496
 
497
- msgid "Metabox support inspired by"
498
- msgstr "Supporto Metabox ispirato da"
 
499
 
500
- msgid "WP-Piwik support board"
501
- msgstr "WP-Piwik Support Board"
 
 
 
 
 
502
 
503
- msgid "no registration required, English &amp; German"
504
- msgstr "nessuna registrazione, inglese e tedesco"
 
505
 
506
- msgid "WordPress.org forum about WP-Piwik"
507
- msgstr "WordPress.org Forum di WP-Piwik"
 
508
 
509
- msgid "WordPress.org registration required, English"
510
- msgstr "Registrazione presso Wordpress.org obbligatorio, in inglese"
 
 
 
 
511
 
512
- msgid "Please don't forget to vote the compatibility at the"
513
- msgstr "Non scordarti di dare una valutazione di compatibilità nella "
 
 
 
514
 
515
- msgid "Donate"
516
- msgstr "Donazioni"
 
517
 
518
- msgid "My Amazon.de wishlist"
519
- msgstr "Mia lista di desideri pressom Amazon.de"
 
520
 
521
- msgid "Piwik error"
522
- msgstr "Errore di Piwik"
 
523
 
524
- msgid "Important"
525
- msgstr "Wichtig"
 
 
 
526
 
527
- msgid "Thanks for using WP-Piwik!"
528
- msgstr "Grazie per usare WP-Piwik!"
 
 
 
 
 
 
529
 
530
- msgid "Auto site configuration is"
531
- msgstr "La configurazione automatico è"
 
532
 
533
- msgid "Tracking code insertion is"
534
- msgstr "L'inserimento del codice tracciamento è"
 
535
 
 
536
  msgid "enabled"
537
  msgstr "attivato"
538
 
539
- msgid "disabled"
540
- msgstr "disattivato"
 
541
 
542
- msgid "You are using Piwik"
543
- msgstr "Stai usando Piwik"
 
544
 
545
- msgid "and"
546
- msgstr "e"
 
547
 
548
- msgid ""
549
- "Error: cURL is not enabled and fopen is not allowed to open URLs. WP-Piwik "
550
- "won't be able to connect to Piwik."
551
- msgstr ""
552
- "Errore: cUrl non è attivato e fopen non ha i permessi per aprire Url. "
553
- "Wp-Piwik non può connettersi a Piwik."
554
 
555
- msgid ""
556
- "<strong>Important note:</strong> If you do not host this blog on your own, "
557
- "your site admin is able to get your auth token from the database."
558
- msgstr ""
559
- "<strong>Nota importante:</strong> Se non è un hosting personale "
560
- "l'amministratore del sito può passarti il codice di autorizzazione (auth "
561
- "token) dal database."
562
 
563
- msgid "Add tracking code"
564
- msgstr "Inserisci codice tracciamento"
 
 
 
 
 
 
 
 
 
 
 
 
 
565
 
566
- msgid "Tracking code preview"
567
- msgstr "Previsione codice"
 
568
 
569
- msgid "Piwik Settings"
570
- msgstr "Impostazioni di Piwik"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
572
  msgid "Statistics"
573
  msgstr "Statistiche"
574
 
575
- msgid ""
576
- "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be available:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #
2
+ # Translators:
3
+ # Andr&eacute; Br&auml;kling <webmaster@braekling.de>, 2011
4
+ # André Bräkling, 2015
5
+ # Enzo Ferrara, 2015-2016
6
+ # Stef Binde <ste@vogliaditerra.com>, 2013
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: WP-Piwik\n"
10
+ "POT-Creation-Date: 2017-10-09 20:37+0200\n"
11
+ "PO-Revision-Date: 2017-10-09 20:41+0000\n"
12
+ "Last-Translator: André Bräkling\n"
13
+ "Language-Team: Italian (Italy) (http://www.transifex.com/piwik/wp-piwik/language/it_IT/)\n"
 
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
16
  "Content-Transfer-Encoding: 8bit\n"
17
+ "Language: it_IT\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
 
 
 
 
 
 
 
 
19
 
20
+ #: classes/WP_Piwik.php:203
21
+ #, php-format
22
+ msgid "%s %s installed."
23
+ msgstr "%s %s installato."
 
24
 
25
+ #: classes/WP_Piwik.php:203
26
+ msgid "Next you should connect to Piwik"
27
+ msgstr "Adesso crea una connessione a Piwik"
 
28
 
29
+ #: classes/WP_Piwik.php:237
30
+ #, php-format
31
+ msgid "%s updated to %s."
32
+ msgstr "%s aggiornato a %s."
33
 
34
+ #: classes/WP_Piwik.php:237
35
+ msgid "Please validate your configuration"
36
+ msgstr "Per favore controlla la tua configurazione"
37
 
38
+ #: classes/WP_Piwik.php:269 classes/WP_Piwik.php:527
39
+ msgid "Settings"
40
+ msgstr "Impostazioni"
41
 
42
+ #: classes/WP_Piwik.php:272
43
+ msgid "Important"
44
+ msgstr "Wichtig"
45
 
46
+ #: classes/WP_Piwik.php:387 classes/WP_Piwik.php:409
47
+ msgid "Piwik Statistics"
48
+ msgstr "Statistiche Piwik"
49
 
50
+ #: classes/WP_Piwik.php:499
51
+ msgid "Configure WP-Piwik"
52
+ msgstr "Configura WP-Piwik"
53
 
54
+ #: classes/WP_Piwik.php:992
55
+ msgid "An error occured"
56
+ msgstr "E' successo un errore"
57
 
58
+ #: classes/WP_Piwik.php:992 classes/WP_Piwik/Admin/Settings.php:89
59
+ msgid "Support"
60
+ msgstr "Assistenza"
61
 
62
+ #: classes/WP_Piwik.php:1275
63
+ msgid "Cheatin&#8217; uh?"
64
+ msgstr "Stai &#8217;barando&#8217, vero?"
65
 
66
+ #: classes/WP_Piwik/Admin/Settings.php:24
67
+ msgid "Reload"
68
+ msgstr "Ricarica"
69
 
70
+ #: classes/WP_Piwik/Admin/Settings.php:27
71
+ msgid "Changes saved."
72
+ msgstr "Cambiamenti salvati."
73
 
74
+ #: classes/WP_Piwik/Admin/Settings.php:55
75
+ msgid "Thanks for using WP-Piwik!"
76
+ msgstr "Grazie per usare WP-Piwik!"
77
 
78
+ #: classes/WP_Piwik/Admin/Settings.php:58
79
+ #, php-format
80
+ msgid "WP-Piwik %s is successfully connected to Piwik %s."
81
+ msgstr "WP-Piwik %s si è collegato con successo a Piwik %s."
82
 
83
+ #: classes/WP_Piwik/Admin/Settings.php:58
84
+ #, php-format
85
+ msgid "You are running WordPress %s."
86
+ msgstr "Stai eseguendo WordPress %s."
87
 
88
+ #: classes/WP_Piwik/Admin/Settings.php:58
89
+ #, php-format
90
+ msgid ""
91
+ "You are running a WordPress %s blog network (WPMU). WP-Piwik will handle "
92
+ "your sites as different websites."
93
+ msgstr "Stai eseguendo una rete di blog (WPMU) WordPress %s. WP-Piwik gestirà i tuoi siti come differenti."
94
 
95
+ #: classes/WP_Piwik/Admin/Settings.php:62
96
+ #, php-format
97
+ msgid ""
98
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. Check"
99
+ " the &raquo;Connect to Piwik&laquo; section below."
100
+ msgstr "WP-Piwik %s non ha potuto collegarsi a Piwik utilizzando la tua configurazione. Controlla la sezione qui sotto &raquo;Collegati a Piwik&laquo;."
101
 
102
+ #: classes/WP_Piwik/Admin/Settings.php:64
103
+ #, php-format
104
+ msgid ""
105
+ "WP-Piwik %s was not able to connect to Piwik using your configuration. "
106
+ "During connection the following error occured: <br /><code>%s</code>"
107
+ msgstr "WP-Piwik non ha potuto collegarsi a Piwik utilizzando la tua conigurazione. Durante la connessione si è verificato il seguente errore: <br /><code>%s</code>"
108
 
109
+ #: classes/WP_Piwik/Admin/Settings.php:67
110
+ #, php-format
111
+ msgid ""
112
+ "WP-Piwik %s has to be connected to Piwik first. Check the &raquo;Connect to "
113
+ "Piwik&laquo; section below."
114
+ msgstr "WP-Piwik %s deve prima essere collegato a Piwik. Controlla la sezione qui sotto &raquo;Collegati a Piwik&laquo;."
115
 
116
+ #: classes/WP_Piwik/Admin/Settings.php:71
117
+ msgid "Connect to Piwik"
118
+ msgstr "Collegati a Piwik"
119
 
120
+ #: classes/WP_Piwik/Admin/Settings.php:76
121
+ msgid "Show Statistics"
122
+ msgstr "Mostra Statistiche"
123
 
124
+ #: classes/WP_Piwik/Admin/Settings.php:80
125
+ msgid "Enable Tracking"
126
+ msgstr "Abilita il Tracking"
127
 
128
+ #: classes/WP_Piwik/Admin/Settings.php:85
129
+ msgid "Expert Settings"
130
+ msgstr "Impostazioni per esperti"
131
 
132
+ #: classes/WP_Piwik/Admin/Settings.php:93
133
+ msgid "Credits"
134
+ msgstr "Ringraziamenti"
135
 
136
+ #: classes/WP_Piwik/Admin/Settings.php:106
137
+ msgid ""
138
+ "WP-Piwik is a WordPress plugin to show a selection of Piwik stats in your "
139
+ "WordPress admin dashboard and to add and configure your Piwik tracking code."
140
+ " To use this you will need your own Piwik instance. If you do not already "
141
+ "have a Piwik setup, you have two simple options: use either"
142
+ msgstr "WP-Piwik è un plugin di WordPress per mostrare una selezione di statistiche nella tua dashboard amministrativa di WordPress e per aggiungere e configurare il tuo codice di tracking di Piwik. Per utilizzarlo hai bisogno di una tua istanza di Piwik. Se ancora non hai un'installazione di Piwik, hai due semplici opzioni: utilizzane una"
143
+
144
+ #: classes/WP_Piwik/Admin/Settings.php:106
145
+ msgid "a self-hosted Piwik"
146
+ msgstr ""
147
 
148
+ #: classes/WP_Piwik/Admin/Settings.php:106
149
+ msgid "or"
150
+ msgstr "o"
151
 
152
+ #: classes/WP_Piwik/Admin/Settings.php:106
153
+ msgid "a cloud-hosted Piwik by InnoCraft"
154
+ msgstr ""
 
 
155
 
156
+ #: classes/WP_Piwik/Admin/Settings.php:109
157
+ msgid ""
158
+ "Neither cURL nor fopen are available. So WP-Piwik can not use the HTTP API "
159
+ "and not connect to InnoCraft Cloud."
160
+ msgstr ""
161
 
162
+ #: classes/WP_Piwik/Admin/Settings.php:109
163
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
164
+ msgid "More information"
165
+ msgstr "Maggiori informazioni"
166
 
167
+ #: classes/WP_Piwik/Admin/Settings.php:111
168
+ msgid "You can choose between three connection methods:"
169
+ msgstr "Puoi scegliere tra tre metodi di connessione:"
170
 
171
+ #: classes/WP_Piwik/Admin/Settings.php:111
172
+ #: classes/WP_Piwik/Admin/Settings.php:114
173
+ msgid "Self-hosted (HTTP API, default)"
174
+ msgstr "Installazione autonoma (HTTP API, predefinito)"
175
 
176
+ #: classes/WP_Piwik/Admin/Settings.php:111
177
+ msgid ""
178
+ "This is the default option for a self-hosted Piwik and should work for most "
179
+ "configurations. WP-Piwik will connect to Piwik using http(s)."
180
+ msgstr "Questa è l'opzione predefinita per un'installazione autonoma di Piwik e dovrebbe funzionare per la maggior parte delle configurazioni. WP-Piwik si connette a Piwik utilizzando il protocollo http(s)."
181
 
182
+ #: classes/WP_Piwik/Admin/Settings.php:111
183
+ #: classes/WP_Piwik/Admin/Settings.php:115
184
+ msgid "Self-hosted (PHP API)"
185
+ msgstr "Intallazione autonoma (PHP API)"
186
 
187
+ #: classes/WP_Piwik/Admin/Settings.php:111
188
+ msgid ""
189
+ "Choose this, if your self-hosted Piwik and WordPress are running on the same"
190
+ " machine and you know the full server path to your Piwik instance."
191
+ msgstr "Scegli questo se le tue installazioni autonome di Piwik e WordPress girano sullo stesso server e conosci il percorso completo alla tua istanza di Piwik."
192
 
193
+ #: classes/WP_Piwik/Admin/Settings.php:111
194
+ #: classes/WP_Piwik/Admin/Settings.php:116
195
+ msgid "Cloud-hosted (InnoCraft Cloud)"
196
+ msgstr ""
197
 
198
+ #: classes/WP_Piwik/Admin/Settings.php:111
199
+ msgid ""
200
+ "If you are using a cloud-hosted Piwik by InnoCraft, you can simply use this "
201
+ "option."
202
+ msgstr ""
203
 
204
+ #: classes/WP_Piwik/Admin/Settings.php:112
205
+ msgid "Piwik Mode"
206
+ msgstr "Modalità Piwik"
207
 
208
+ #: classes/WP_Piwik/Admin/Settings.php:113
209
+ msgid "Disabled (WP-Piwik will not connect to Piwik)"
210
+ msgstr "Disabilitato (WP-Piwik non è collegato a Piwik)"
211
 
212
+ #: classes/WP_Piwik/Admin/Settings.php:119
213
  msgid "Piwik URL"
214
  msgstr "URL di Piwik"
215
 
216
+ #: classes/WP_Piwik/Admin/Settings.php:119
217
+ msgid ""
218
+ "Enter your Piwik URL. This is the same URL you use to access your Piwik "
219
+ "instance, e.g. http://www.example.com/piwik/."
220
+ msgstr "Inserisci l'URL del tuo Piwik. È lo stesso URL che utilizzi per accedere alla tua istanza di Piwik, es. http://www.example.com/piwik/."
221
+
222
+ #: classes/WP_Piwik/Admin/Settings.php:120
223
+ msgid "Piwik path"
224
+ msgstr "Percorso di Piwik "
225
+
226
+ #: classes/WP_Piwik/Admin/Settings.php:120
227
+ msgid "Enter the file path to your Piwik instance, e.g. /var/www/piwik/."
228
+ msgstr "Inserisci il percorso alla tua istanza di Piwik, es. /var/www/piwik/."
229
+
230
+ #: classes/WP_Piwik/Admin/Settings.php:121
231
+ msgid "Piwik subdomain"
232
+ msgstr ""
233
+
234
+ #: classes/WP_Piwik/Admin/Settings.php:121
235
+ msgid ""
236
+ "Enter your InnoCraft Cloud subdomain. It is also part of your URL: "
237
+ "https://SUBDOMAIN.innocraft.cloud."
238
+ msgstr ""
239
+
240
+ #: classes/WP_Piwik/Admin/Settings.php:122
241
  msgid "Auth token"
242
  msgstr "Auth Token"
243
 
244
+ #: classes/WP_Piwik/Admin/Settings.php:122
245
  msgid ""
246
+ "Enter your Piwik auth token here. It is an alphanumerical code like "
247
+ "0a1b2c34d56e78901fa2bc3d45678efa."
248
+ msgstr "Inserisci qui il tuo token auth di Piwik. Esso è un codice alfanumerico come 0a1b2c34d56e78901fa2bc3d45678efa."
249
+
250
+ #: classes/WP_Piwik/Admin/Settings.php:122
251
+ #, php-format
252
+ msgid "See %sWP-Piwik FAQ%s."
253
+ msgstr "Vedi le %sFAQ di WP-Piwik%s."
254
+
255
+ #: classes/WP_Piwik/Admin/Settings.php:127
256
+ msgid "Auto config"
257
+ msgstr "Configurazione automatica"
258
 
259
+ #: classes/WP_Piwik/Admin/Settings.php:127
260
  msgid ""
261
+ "Check this to automatically choose your blog from your Piwik sites by URL. "
262
+ "If your blog is not added to Piwik yet, WP-Piwik will add a new site."
263
+ msgstr "Spunta questo per selezionare automaticamente il tuo blog tra i siti Piwik tramite l'URL. Se il tuo blog non è inserito in Piwik Wp-Piwik lo aggiungerà."
264
+
265
+ #: classes/WP_Piwik/Admin/Settings.php:131
266
+ #, php-format
267
+ msgid ""
268
+ "WP-Piwik %s was not able to get sites with at least view access: <br "
269
+ "/><code>%s</code>"
270
  msgstr ""
 
 
 
 
271
 
272
+ #: classes/WP_Piwik/Admin/Settings.php:141
273
+ msgid "Determined site"
274
+ msgstr "Sito rilevato"
275
 
276
+ #: classes/WP_Piwik/Admin/Settings.php:146
277
+ msgid "Select site"
278
+ msgstr "Seleziona sito"
279
+
280
+ #: classes/WP_Piwik/Admin/Settings.php:155
281
+ msgid "Piwik default date"
282
+ msgstr "Data predefinita di Piwik"
283
+
284
+ #: classes/WP_Piwik/Admin/Settings.php:156
285
+ #: classes/WP_Piwik/Admin/Settings.php:170
286
+ msgid "Today"
287
+ msgstr "Oggi"
288
+
289
+ #: classes/WP_Piwik/Admin/Settings.php:157
290
+ #: classes/WP_Piwik/Admin/Settings.php:169
291
+ msgid "Yesterday"
292
+ msgstr "Ieri"
293
+
294
+ #: classes/WP_Piwik/Admin/Settings.php:158
295
+ msgid "Current month"
296
+ msgstr "Mese corrente"
297
+
298
+ #: classes/WP_Piwik/Admin/Settings.php:159
299
+ msgid "Last month"
300
+ msgstr "Mese scorso"
301
+
302
+ #: classes/WP_Piwik/Admin/Settings.php:160
303
+ msgid "Current week"
304
+ msgstr "Settimana corrente"
305
+
306
+ #: classes/WP_Piwik/Admin/Settings.php:161
307
+ msgid "Last week"
308
+ msgstr "Settimana scorsa"
309
+
310
+ #: classes/WP_Piwik/Admin/Settings.php:162
311
+ msgid "Default date shown on statistics page."
312
+ msgstr "Il giorno che verrà mostrato sulla pagina delle statistiche."
313
+
314
+ #: classes/WP_Piwik/Admin/Settings.php:164
315
+ msgid "Show SEO data"
316
+ msgstr "Mostra dati SEO"
317
+
318
+ #: classes/WP_Piwik/Admin/Settings.php:164
319
+ msgid "Display SEO ranking data on statistics page."
320
+ msgstr "Mostra i dati del ranking SEO nella pagina delle statistiche."
321
+
322
+ #: classes/WP_Piwik/Admin/Settings.php:164
323
+ #: classes/WP_Piwik/Admin/Settings.php:176
324
+ msgid "Slow!"
325
+ msgstr "Lento!"
326
+
327
+ #: classes/WP_Piwik/Admin/Settings.php:165
328
+ msgid "Show e-commerce data"
329
+ msgstr ""
330
+
331
+ #: classes/WP_Piwik/Admin/Settings.php:165
332
+ msgid "Display e-commerce data on statistics page."
333
  msgstr ""
 
 
334
 
335
+ #: classes/WP_Piwik/Admin/Settings.php:167
336
+ msgid "Dashboard overview"
337
+ msgstr "Panoramica Dashboard"
338
+
339
+ #: classes/WP_Piwik/Admin/Settings.php:168
340
+ #: classes/WP_Piwik/Admin/Settings.php:208
341
+ #: classes/WP_Piwik/Admin/Settings.php:210
342
+ #: classes/WP_Piwik/Admin/Settings.php:231
343
+ #: classes/WP_Piwik/Admin/Settings.php:285
344
+ #: classes/WP_Piwik/Admin/Settings.php:340
345
+ msgid "Disabled"
346
+ msgstr "Disabilitato"
347
+
348
+ #: classes/WP_Piwik/Admin/Settings.php:171
349
+ msgid "Last 30 days"
350
+ msgstr "Ultimi 30 giorni"
351
+
352
+ #: classes/WP_Piwik/Admin/Settings.php:172
353
+ msgid "Enable WP-Piwik dashboard widget &quot;Overview&quot;."
354
+ msgstr "Abilita un widget della dashboard di WP-Piwik &quot;Panoramica&quot;."
355
+
356
+ #: classes/WP_Piwik/Admin/Settings.php:174
357
+ msgid "Dashboard graph"
358
+ msgstr "Grafico dashboard"
359
+
360
+ #: classes/WP_Piwik/Admin/Settings.php:174
361
+ msgid "Enable WP-Piwik dashboard widget &quot;Graph&quot;."
362
+ msgstr "Abilita un widget della dashboard di WP-Piwik &quot;Grafico&quot;."
363
+
364
+ #: classes/WP_Piwik/Admin/Settings.php:176
365
+ msgid "Dashboard SEO"
366
+ msgstr "Dashboard SEO"
367
+
368
+ #: classes/WP_Piwik/Admin/Settings.php:176
369
+ msgid "Enable WP-Piwik dashboard widget &quot;SEO&quot;."
370
+ msgstr "Abilita un widget della dashboard di WP-Piwik &quot;SEO&quot;."
371
+
372
+ #: classes/WP_Piwik/Admin/Settings.php:178
373
+ msgid "Dashboard e-commerce"
374
+ msgstr ""
375
+
376
+ #: classes/WP_Piwik/Admin/Settings.php:178
377
+ msgid "Enable WP-Piwik dashboard widget &quot;E-commerce&quot;."
378
+ msgstr ""
379
+
380
+ #: classes/WP_Piwik/Admin/Settings.php:180
381
+ msgid "Show graph on WordPress Toolbar"
382
+ msgstr "Visualizza un grafico nella barra degli strumenti di Wordpress"
383
 
384
+ #: classes/WP_Piwik/Admin/Settings.php:180
385
+ msgid "Display a last 30 days visitor graph on WordPress' toolbar."
386
+ msgstr "Mostra un grafico dei visitatori degli ultimi 30 giorni nella barra degli strumenti di WordPress."
387
 
388
+ #: classes/WP_Piwik/Admin/Settings.php:182
389
+ msgid "Display stats to"
390
+ msgstr "Mostra statistiche per"
391
 
392
+ #: classes/WP_Piwik/Admin/Settings.php:189
393
+ msgid "Choose user roles allowed to see the statistics page."
394
+ msgstr "Seleziona il ruolo per poter accedere alla pagina di statistiche."
395
 
396
+ #: classes/WP_Piwik/Admin/Settings.php:191
397
+ msgid "Show per post stats"
398
+ msgstr "Mostra statistiche per post"
399
+
400
+ #: classes/WP_Piwik/Admin/Settings.php:191
401
+ msgid "Show stats about single posts at the post edit admin page."
402
+ msgstr "Mostra statistiche sui singoli post nella pagina amministrativa di modifica post."
403
+
404
+ #: classes/WP_Piwik/Admin/Settings.php:193
405
+ msgid "Piwik shortcut"
406
+ msgstr "Scorciatoia di Piwik"
407
+
408
+ #: classes/WP_Piwik/Admin/Settings.php:193
409
+ msgid "Display a shortcut to Piwik itself."
410
+ msgstr "Visualizzare una scorciatoia per il Piwik principale."
411
+
412
+ #: classes/WP_Piwik/Admin/Settings.php:195
413
+ msgid "WP-Piwik display name"
414
+ msgstr "Nome visualizzato in WP-Piwik"
415
+
416
+ #: classes/WP_Piwik/Admin/Settings.php:195
417
+ msgid "Plugin name shown in WordPress."
418
+ msgstr "Nome del plugin mostrato in WordPress."
419
+
420
+ #: classes/WP_Piwik/Admin/Settings.php:197
421
+ msgid "Enable shortcodes"
422
+ msgstr "Abilita gli shortcode"
423
+
424
+ #: classes/WP_Piwik/Admin/Settings.php:197
425
+ msgid "Enable shortcodes in post or page content."
426
+ msgstr "Attiva scorciatoie nel contenuto di articoli e pagine. "
427
+
428
+ #: classes/WP_Piwik/Admin/Settings.php:208
429
+ msgid "You can choose between four tracking code modes:"
430
+ msgstr "Puoi scegliere tra quattro modalità per il codice di tracking:"
431
+
432
+ #: classes/WP_Piwik/Admin/Settings.php:208
433
  msgid ""
434
+ "WP-Piwik will not add the tracking code. Use this, if you want to add the "
435
+ "tracking code to your template files or you use another plugin to add the "
436
+ "tracking code."
437
+ msgstr "WP-Piwik non aggiunge il codice di tracciamento. Usa questo se vuoi aggiungere il codice alla tua template o usa un altro plugin per aggiungerlo."
438
+
439
+ #: classes/WP_Piwik/Admin/Settings.php:208
440
+ #: classes/WP_Piwik/Admin/Settings.php:211
441
+ msgid "Default tracking"
442
+ msgstr "Tracking predefinito"
443
+
444
+ #: classes/WP_Piwik/Admin/Settings.php:208
445
+ msgid "WP-Piwik will use Piwik's standard tracking code."
446
+ msgstr "WP-Piwik utilizzerà il tracking standard di Piwik."
447
+
448
+ #: classes/WP_Piwik/Admin/Settings.php:208
449
+ #: classes/WP_Piwik/Admin/Settings.php:212
450
+ msgid "Use js/index.php"
451
+ msgstr "Usa js/index.php"
452
+
453
+ #: classes/WP_Piwik/Admin/Settings.php:208
454
+ msgid ""
455
+ "You can choose this tracking code, to deliver a minified proxy code and to "
456
+ "avoid using the files called piwik.js or piwik.php."
457
+ msgstr "Puoi scegliere questo codice di traking per fornire un codice proxy leggero e per evitare l'utilizzo dei files piwik.js e piwik.php."
458
+
459
+ #: classes/WP_Piwik/Admin/Settings.php:208
460
+ #, php-format
461
+ msgid "See %sreadme file%s."
462
+ msgstr "Vedi %sil file readme%s."
463
+
464
+ #: classes/WP_Piwik/Admin/Settings.php:208
465
+ #: classes/WP_Piwik/Admin/Settings.php:213
466
+ msgid "Use proxy script"
467
+ msgstr "Utilizza script proxy"
468
+
469
+ #: classes/WP_Piwik/Admin/Settings.php:208
470
+ msgid "Use this tracking code to not reveal the Piwik server URL."
471
+ msgstr "Usa questo codice di tracking per non rivelare l'URL del server di Piwik."
472
+
473
+ #: classes/WP_Piwik/Admin/Settings.php:208
474
+ #: classes/WP_Piwik/Admin/Settings.php:228
475
+ #: classes/WP_Piwik/Admin/Settings.php:238
476
+ #, php-format
477
+ msgid "See %sPiwik FAQ%s."
478
+ msgstr "Vedi %sPiwik FAQ%s."
479
+
480
+ #: classes/WP_Piwik/Admin/Settings.php:208
481
+ #: classes/WP_Piwik/Admin/Settings.php:214
482
+ msgid "Enter manually"
483
+ msgstr "Inserisci manualmente"
484
+
485
+ #: classes/WP_Piwik/Admin/Settings.php:208
486
+ msgid ""
487
+ "Enter your own tracking code manually. You can choose one of the prior "
488
+ "options, pre-configure your tracking code and switch to manually editing at "
489
+ "last."
490
+ msgstr "Inserisci manualmente un tuo codice tracking. Puoi scegliere una delle opzioni precedenti, preconfigurare il tuo codice e alla fine passare alla modifica manuale."
491
+
492
+ #: classes/WP_Piwik/Admin/Settings.php:208
493
+ msgid "Use the placeholder {ID} to add the Piwik site ID."
494
+ msgstr "Usa il segnaposto {ID} per aggiungere l'ID sito di Piwik."
495
+
496
+ #: classes/WP_Piwik/Admin/Settings.php:209
497
+ msgid "Add tracking code"
498
+ msgstr "Inserisci codice tracciamento"
499
+
500
+ #: classes/WP_Piwik/Admin/Settings.php:217
501
+ msgid "Tracking code"
502
+ msgstr "Codice tracking"
503
+
504
+ #: classes/WP_Piwik/Admin/Settings.php:219
505
+ msgid "JavaScript code position"
506
+ msgstr "Posizione codice JavaScript"
507
+
508
+ #: classes/WP_Piwik/Admin/Settings.php:220
509
+ msgid "Footer"
510
+ msgstr "Footer"
511
+
512
+ #: classes/WP_Piwik/Admin/Settings.php:221
513
+ msgid "Header"
514
+ msgstr "Header"
515
+
516
+ #: classes/WP_Piwik/Admin/Settings.php:222
517
+ msgid ""
518
+ "Choose whether the JavaScript code is added to the footer or the header."
519
+ msgstr "Scegli se il codice JavaScript è nel footer o nell'header."
520
+
521
+ #: classes/WP_Piwik/Admin/Settings.php:224
522
+ msgid "Noscript code"
523
+ msgstr "Codice noscript"
524
 
525
+ #: classes/WP_Piwik/Admin/Settings.php:226
526
+ msgid "Add &lt;noscript&gt;"
527
+ msgstr "Aggiungi &lt;noscript&gt;"
528
+
529
+ #: classes/WP_Piwik/Admin/Settings.php:226
530
+ msgid "Adds the &lt;noscript&gt; code to your footer."
531
+ msgstr "Aggiunge il codice &lt;noscript&gt; al footer."
532
+
533
+ #: classes/WP_Piwik/Admin/Settings.php:226
534
+ #: classes/WP_Piwik/Admin/Settings.php:228
535
+ msgid "Disabled in proxy mode."
536
+ msgstr "Disabilitato in modalità proxy."
537
+
538
+ #: classes/WP_Piwik/Admin/Settings.php:228
539
+ msgid "Add rec parameter to noscript code"
540
+ msgstr "Aggiungi il parametro rec al codice noscript"
541
+
542
+ #: classes/WP_Piwik/Admin/Settings.php:228
543
+ msgid "Enable tracking for visitors without JavaScript (not recommended)."
544
+ msgstr "Abilita il tracciamento dei visitatori senza JavaScript (non raccomandato)."
545
+
546
+ #: classes/WP_Piwik/Admin/Settings.php:230
547
+ msgid "Enable content tracking"
548
+ msgstr "Abilita il content tracking"
549
+
550
+ #: classes/WP_Piwik/Admin/Settings.php:232
551
+ msgid "Track all content blocks"
552
+ msgstr "Traccia tutti i blocchi di contenuto"
553
+
554
+ #: classes/WP_Piwik/Admin/Settings.php:233
555
+ msgid "Track only visible content blocks"
556
+ msgstr "Traccia solo i blocchi di contenuto visibili"
557
+
558
+ #: classes/WP_Piwik/Admin/Settings.php:234
559
+ msgid ""
560
+ "Content tracking allows you to track interaction with the content of a web "
561
+ "page or application."
562
+ msgstr "Il content tracking ti permette di tracciare le interazioni con il contenuto di una pagina web o di un'applicazione."
563
+
564
+ #: classes/WP_Piwik/Admin/Settings.php:234
565
+ #: classes/WP_Piwik/Admin/Settings.php:236
566
+ #: classes/WP_Piwik/Admin/Settings.php:245
567
+ #: classes/WP_Piwik/Admin/Settings.php:247
568
+ #: classes/WP_Piwik/Admin/Settings.php:249
569
+ #: classes/WP_Piwik/Admin/Settings.php:270
570
+ #: classes/WP_Piwik/Admin/Settings.php:272
571
+ #: classes/WP_Piwik/Admin/Settings.php:278
572
+ #: classes/WP_Piwik/Admin/Settings.php:343
573
+ #, php-format
574
+ msgid "See %sPiwik documentation%s."
575
+ msgstr "Leggi la %sDocumentazione di Piwik%s."
576
+
577
+ #: classes/WP_Piwik/Admin/Settings.php:236
578
+ msgid "Track search"
579
+ msgstr "Traccia le ricerche"
580
+
581
+ #: classes/WP_Piwik/Admin/Settings.php:236
582
+ msgid "Use Piwik's advanced Site Search Analytics feature."
583
+ msgstr "Utilizza la funzionalità avanzata di Piwik Statistiche Ricerche nel Sito."
584
+
585
+ #: classes/WP_Piwik/Admin/Settings.php:238
586
  msgid "Track 404"
587
  msgstr "Tracciamento 404"
588
 
589
+ #: classes/WP_Piwik/Admin/Settings.php:238
590
+ msgid ""
591
+ "WP-Piwik can automatically add a 404-category to track 404-page-visits."
592
+ msgstr "WP-Piwik può aggiungere in automatico una categoria per tracciare visite 404."
593
+
594
+ #: classes/WP_Piwik/Admin/Settings.php:241
595
+ msgid "Add annotation on new post of type"
596
  msgstr ""
 
597
 
598
+ #: classes/WP_Piwik/Admin/Settings.php:247
599
+ msgid "Show custom variables box"
600
+ msgstr "Mostra la casella variabili personalizzate"
601
+
602
+ #: classes/WP_Piwik/Admin/Settings.php:247
603
+ msgid " Show a &quot;custom variables&quot; edit box on post edit page."
604
+ msgstr "Mostra il box di modifica &quot;variabili personalizzate&quot; nella pagina di modifica post."
605
+
606
+ #: classes/WP_Piwik/Admin/Settings.php:249
607
+ msgid "Add new file types for download tracking"
608
+ msgstr "Aggiungi nuovi tipi di file per il tracciamento dei download"
609
+
610
+ #: classes/WP_Piwik/Admin/Settings.php:249
611
+ msgid ""
612
+ "Add file extensions for download tracking, divided by a vertical bar "
613
+ "(&#124;)."
614
+ msgstr "Aggiungi delle estensioni di file per il tracciamento dei download divisi da una barra verticale (&#124;)."
615
+
616
+ #: classes/WP_Piwik/Admin/Settings.php:251
617
+ msgid "Disable cookies"
618
+ msgstr "Disattivare cookies"
619
+
620
+ #: classes/WP_Piwik/Admin/Settings.php:251
621
+ msgid "Disable all tracking cookies for a visitor."
622
+ msgstr "Disattiva tutti cookie per i visitatori."
623
+
624
+ #: classes/WP_Piwik/Admin/Settings.php:253
625
+ msgid "Limit cookie lifetime"
626
+ msgstr "Limita la durata del cookie"
627
+
628
+ #: classes/WP_Piwik/Admin/Settings.php:253
629
+ msgid ""
630
+ "You can limit the cookie lifetime to avoid tracking your users over a longer"
631
+ " period as necessary."
632
+ msgstr "È possibile limitare la durata del cookie per evitare di monitorare i tuoi utenti per un periodo più lungo, se necessario."
633
+
634
+ #: classes/WP_Piwik/Admin/Settings.php:255
635
+ msgid "Visitor timeout (seconds)"
636
+ msgstr "Timeout visitatori (secondi)"
637
+
638
+ #: classes/WP_Piwik/Admin/Settings.php:257
639
+ msgid "Session timeout (seconds)"
640
+ msgstr "Timeout sessione (secondi)"
641
+
642
+ #: classes/WP_Piwik/Admin/Settings.php:259
643
+ msgid "Referral timeout (seconds)"
644
+ msgstr "Timeout referral (secondi)"
645
+
646
+ #: classes/WP_Piwik/Admin/Settings.php:261
647
+ msgid "Track admin pages"
648
+ msgstr "Traccia le pagine di amministrazione"
649
+
650
+ #: classes/WP_Piwik/Admin/Settings.php:261
651
+ msgid ""
652
+ "Enable to track users on admin pages (remember to configure the tracking "
653
+ "filter appropriately)."
654
+ msgstr "Abilita il tracciamento degli utenti sulle pagine di amministrazione (ricorda di configurare in modo opportuno il filtro di tracciamento)."
655
+
656
+ #: classes/WP_Piwik/Admin/Settings.php:264
657
  msgid "Tracking filter"
658
  msgstr "Filtro tracciamento"
659
 
660
+ #: classes/WP_Piwik/Admin/Settings.php:268
661
  msgid "Choose users by user role you do <strong>not</strong> want to track."
662
  msgstr "Seleziona utenti per ruolo che <b>non</b> vuoi tracciare."
663
 
664
+ #: classes/WP_Piwik/Admin/Settings.php:270
665
+ msgid "Track subdomains in the same website"
666
+ msgstr "Traccia i sotto-domini nello stesso sito web"
 
 
 
667
 
668
+ #: classes/WP_Piwik/Admin/Settings.php:270
669
+ msgid "Adds *.-prefix to cookie domain."
670
+ msgstr "Aggiunge il prefisso *.- al cookie di dominio."
671
 
672
+ #: classes/WP_Piwik/Admin/Settings.php:272
673
+ msgid "Do not count subdomains as outlink"
674
+ msgstr "Non contare i sotto-domini come link di uscita"
675
 
676
+ #: classes/WP_Piwik/Admin/Settings.php:272
677
+ msgid "Adds *.-prefix to tracked domain."
678
+ msgstr "Aggiunge il prefisso *.- al dominio tracciato."
679
 
680
+ #: classes/WP_Piwik/Admin/Settings.php:274
681
+ msgid "Enable cross domain linking"
682
+ msgstr ""
683
 
684
+ #: classes/WP_Piwik/Admin/Settings.php:274
685
+ msgid ""
686
+ "When enabled, it will make sure to use the same visitor ID for the same "
687
+ "visitor across several domains. This works only when this feature is enabled"
688
+ " because the visitor ID is stored in a cookie and cannot be read on the "
689
+ "other domain by default. When this feature is enabled, it will append a URL "
690
+ "parameter \"pk_vid\" that contains the visitor ID when a user clicks on a "
691
+ "URL that belongs to one of your domains. For this feature to work, you also "
692
+ "have to configure which domains should be treated as local in your Piwik "
693
+ "website settings. This feature requires Piwik 3.0.2."
694
+ msgstr ""
695
 
696
+ #: classes/WP_Piwik/Admin/Settings.php:276
697
+ msgid "Track RSS feeds"
698
+ msgstr "Traccia i feed RSS"
699
 
700
+ #: classes/WP_Piwik/Admin/Settings.php:276
701
+ msgid "Enable to track posts in feeds via tracking pixel."
702
+ msgstr "Abilita la possibilità di tracciare i post nei feed tramite un tracking pixel."
703
 
704
+ #: classes/WP_Piwik/Admin/Settings.php:278
705
+ msgid "Track RSS feed links as campaign"
706
+ msgstr "Traccia i link dei feed RSS come campagna"
707
 
708
+ #: classes/WP_Piwik/Admin/Settings.php:278
709
+ msgid "This will add Piwik campaign parameters to the RSS feed links. "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  msgstr ""
 
 
711
 
712
+ #: classes/WP_Piwik/Admin/Settings.php:280
713
+ msgid "RSS feed campaign"
714
+ msgstr "Campagna RSS feed"
715
+
716
+ #: classes/WP_Piwik/Admin/Settings.php:280
717
+ msgid "Keyword: post name."
718
+ msgstr "Keyword: nome post."
719
 
720
+ #: classes/WP_Piwik/Admin/Settings.php:282
721
+ msgid "Enable heartbeat timer"
722
+ msgstr "Abilita un timer heartbeat"
723
 
724
+ #: classes/WP_Piwik/Admin/Settings.php:282
725
  msgid ""
726
+ "Enable a heartbeat timer to get more accurate visit lengths by sending "
727
+ "periodical HTTP ping requests as long as the site is opened. Enter the time "
728
+ "between the pings in seconds (Piwik default: 15) to enable or 0 to disable "
729
+ "this feature. <strong>Note:</strong> This will cause a lot of additional "
730
+ "HTTP requests on your site."
731
+ msgstr "Abilita un timer heartbeat per ottenere durate delle visite più precise inviando un ping HTTP periodico per tutto il tempo in cui il sito resta aperto. Inserisci il tempo, in secondi, tra i ping (predefinito: 15) per abilitare, oppure 0 per disabilitare questa funzione. <strong>Nota:</strong> Questo provocherà molte richieste HTTP supplementari al tuo sito."
732
+
733
+ #: classes/WP_Piwik/Admin/Settings.php:284
734
+ msgid "User ID Tracking"
735
+ msgstr "Tracciamento ID Utente"
736
+
737
+ #: classes/WP_Piwik/Admin/Settings.php:286
738
+ msgid "WP User ID"
739
+ msgstr "ID Utente WP"
740
+
741
+ #: classes/WP_Piwik/Admin/Settings.php:287
742
+ msgid "Email Address"
743
+ msgstr "Indirizzo Email"
744
+
745
+ #: classes/WP_Piwik/Admin/Settings.php:288
746
+ msgid "Username"
747
+ msgstr "Nome utente"
748
+
749
+ #: classes/WP_Piwik/Admin/Settings.php:289
750
+ msgid "Display Name (Not Recommended!)"
751
+ msgstr "Mostra Nome (Non Raccomandato!)"
752
+
753
+ #: classes/WP_Piwik/Admin/Settings.php:290
754
+ msgid ""
755
+ "When a user is logged in to WordPress, track their &quot;User ID&quot;. You "
756
+ "can select which field from the User's profile is tracked as the &quot;User "
757
+ "ID&quot;. When enabled, Tracking based on Email Address is recommended."
758
+ msgstr "Quando un utente ha effettuato l'accesso a WordPress, traccia il suo &quot;ID Utente&quot;. Puoi selezionare quale campo del profilo utente verrà tracciato come &quot;ID Utente&quot;. Quando abilitato, si raccomanda il tracciamento basato sull'Indirizzo Email."
759
+
760
+ #: classes/WP_Piwik/Admin/Settings.php:295
761
+ msgid ""
762
+ "Usually, you do not need to change these settings. If you want to do so, you"
763
+ " should know what you do or you got an expert's advice."
764
+ msgstr "Di solito non hai la necessità di cambiare queste impostazioni. Se desideri farlo, devi sapere cosa fai o avere l'aiuto di un esperto."
765
 
766
+ #: classes/WP_Piwik/Admin/Settings.php:297
767
+ msgid "Enable cache"
768
+ msgstr "Abilita cache"
769
 
770
+ #: classes/WP_Piwik/Admin/Settings.php:297
771
+ msgid "Cache API calls, which not contain today's values, for a week."
772
+ msgstr "Cache settimanale delle chiamate API che non contiene i dati di oggi."
773
 
774
+ #: classes/WP_Piwik/Admin/Settings.php:300
775
+ msgid "HTTP connection via"
776
+ msgstr "Connessione HTTP tramite"
777
 
778
+ #: classes/WP_Piwik/Admin/Settings.php:301
779
+ #: classes/WP_Piwik/Admin/Settings.php:590
780
+ msgid "cURL"
781
+ msgstr "cURL"
782
 
783
+ #: classes/WP_Piwik/Admin/Settings.php:302
784
+ #: classes/WP_Piwik/Admin/Settings.php:590
785
+ msgid "fopen"
786
+ msgstr "fopen"
787
 
788
+ #: classes/WP_Piwik/Admin/Settings.php:303
789
  msgid ""
790
+ "Choose whether WP-Piwik should use cURL or fopen to connect to Piwik in HTTP"
791
+ " or Cloud mode."
792
  msgstr ""
 
 
 
793
 
794
+ #: classes/WP_Piwik/Admin/Settings.php:305
795
+ msgid "HTTP method"
796
+ msgstr "Metodo HTTP"
797
 
798
+ #: classes/WP_Piwik/Admin/Settings.php:306
799
+ #: classes/WP_Piwik/Admin/Settings.php:590
800
+ msgid "POST"
801
+ msgstr "POST"
802
 
803
+ #: classes/WP_Piwik/Admin/Settings.php:307
804
+ #: classes/WP_Piwik/Admin/Settings.php:590
805
+ msgid "GET"
806
+ msgstr "GET"
807
 
808
+ #: classes/WP_Piwik/Admin/Settings.php:308
809
+ msgid "Choose whether WP-Piwik should use POST or GET in HTTP or Cloud mode."
 
 
810
  msgstr ""
 
 
811
 
812
+ #: classes/WP_Piwik/Admin/Settings.php:310
813
+ msgid "Disable time limit"
814
+ msgstr "Disattivare limite del tempo"
 
 
 
815
 
816
+ #: classes/WP_Piwik/Admin/Settings.php:310
817
+ msgid "Use set_time_limit(0) if stats page causes a time out."
818
+ msgstr "Usa set_time_limit(0) nel caso che la pagina delle statistiche genera un timeout."
819
 
820
+ #: classes/WP_Piwik/Admin/Settings.php:312
821
+ msgid "Connection timeout"
822
+ msgstr "Timeout connessione"
823
 
824
+ #: classes/WP_Piwik/Admin/Settings.php:314
825
+ msgid "Disable SSL peer verification"
826
+ msgstr "Disattivare verificazione Peer SSL"
827
 
828
+ #: classes/WP_Piwik/Admin/Settings.php:314
829
+ #: classes/WP_Piwik/Admin/Settings.php:315
830
+ msgid "not recommended"
831
+ msgstr "sconsigliato"
832
 
833
+ #: classes/WP_Piwik/Admin/Settings.php:315
834
+ msgid "Disable SSL host verification"
835
+ msgstr "Disabilita la verifica host SSl"
836
 
837
+ #: classes/WP_Piwik/Admin/Settings.php:317
838
+ msgid "User agent"
839
+ msgstr "User agent"
840
 
841
+ #: classes/WP_Piwik/Admin/Settings.php:318
842
+ msgid "Use the PHP default user agent"
843
+ msgstr "Utilizza user agent PHP predefinito"
844
 
845
+ #: classes/WP_Piwik/Admin/Settings.php:318
846
+ msgid "empty"
847
+ msgstr "vuoto"
848
 
849
+ #: classes/WP_Piwik/Admin/Settings.php:319
850
+ msgid "Define a specific user agent"
851
+ msgstr "Definisci uno specifico user agent"
852
 
853
+ #: classes/WP_Piwik/Admin/Settings.php:321
854
+ msgid "Specific user agent"
855
+ msgstr "User agent specifico"
856
 
857
+ #: classes/WP_Piwik/Admin/Settings.php:323
858
+ msgid "Enable DNS prefetch"
859
+ msgstr ""
860
 
861
+ #: classes/WP_Piwik/Admin/Settings.php:323
862
+ #, php-format
863
+ msgid "See %sPiwik Blog%s."
864
+ msgstr ""
865
+
866
+ #: classes/WP_Piwik/Admin/Settings.php:323
867
+ msgid "Add a DNS prefetch tag. "
868
  msgstr ""
 
 
869
 
870
+ #: classes/WP_Piwik/Admin/Settings.php:325
871
+ msgid "Add data-cfasync=false"
872
+ msgstr "Aggiungi attributo data-cfasync=false"
873
 
874
+ #: classes/WP_Piwik/Admin/Settings.php:325
875
+ #, php-format
876
+ msgid "See %sCloudFlare Knowledge Base%s."
877
  msgstr ""
 
878
 
879
+ #: classes/WP_Piwik/Admin/Settings.php:325
880
  msgid ""
881
+ "Adds data-cfasync=false to the script tag, e.g., to ask Rocket Loader to "
882
+ "ignore the script. "
883
  msgstr ""
 
 
884
 
885
+ #: classes/WP_Piwik/Admin/Settings.php:327
886
+ msgid "CDN URL"
887
+ msgstr "URL CDN"
888
 
889
+ #: classes/WP_Piwik/Admin/Settings.php:329
890
+ msgid "CDN URL (SSL)"
891
+ msgstr "URL CDN (SSL)"
892
 
893
+ #: classes/WP_Piwik/Admin/Settings.php:331
894
+ msgid "Force Piwik to use a specific protocol"
895
+ msgstr "Forza Piwik a utilizzare un protocollo specifico"
896
 
897
+ #: classes/WP_Piwik/Admin/Settings.php:332
898
+ msgid "Disabled (default)"
899
+ msgstr "Disabilitato (default)"
900
+
901
+ #: classes/WP_Piwik/Admin/Settings.php:333
902
+ msgid "http"
903
+ msgstr "http"
904
+
905
+ #: classes/WP_Piwik/Admin/Settings.php:334
906
+ msgid "https (SSL)"
907
+ msgstr "https (SSL)"
908
+
909
+ #: classes/WP_Piwik/Admin/Settings.php:335
910
+ msgid ""
911
+ "Choose if you want to explicitly force Piwik to use HTTP or HTTPS. Does not "
912
+ "work with a CDN URL."
913
+ msgstr "Scegli se vuoi esplicitamente forzare Piwik a utilizzare HTTP o HTTPS. Non funziona con URL CDN."
914
+
915
+ #: classes/WP_Piwik/Admin/Settings.php:337
916
+ msgid "Update notice"
917
+ msgstr "Notifica aggiornamento"
918
+
919
+ #: classes/WP_Piwik/Admin/Settings.php:338
920
+ msgid "Show always if WP-Piwik is updated"
921
+ msgstr "Mostra sempre se WP-Piwik è aggiornato"
922
 
923
+ #: classes/WP_Piwik/Admin/Settings.php:339
924
+ msgid "Show only if WP-Piwik is updated and settings were changed"
925
+ msgstr "Mostra solo se WP-Piwik è aggiornato e le impostazioni sono state cambiate"
926
 
927
+ #: classes/WP_Piwik/Admin/Settings.php:341
928
+ msgid "Choose if you want to get an update notice if WP-Piwik is updated."
929
+ msgstr "Scegli se vuoi ricevere una notifica di aggiornamento se WP-Piwik è aggiornato."
930
 
931
+ #: classes/WP_Piwik/Admin/Settings.php:343
932
+ msgid "Define all file types for download tracking"
933
+ msgstr "Definisci tutti i tipi di file per il tracciamento dei download"
934
 
935
+ #: classes/WP_Piwik/Admin/Settings.php:343
936
+ msgid ""
937
+ "Replace Piwik's default file extensions for download tracking, divided by a "
938
+ "vertical bar (&#124;). Leave blank to keep Piwik's default settings."
939
+ msgstr "Sostituisci le estensione predefinite dei file per il tracciamento dei download, divise da una barra verticale (&#124;). Lascia vuoto per mantenere le impostazioni predefinite di Piwik."
940
+
941
+ #: classes/WP_Piwik/Admin/Settings.php:345
942
+ msgid "Set classes to be treated as downloads"
943
  msgstr ""
 
944
 
945
+ #: classes/WP_Piwik/Admin/Settings.php:345
946
  msgid ""
947
+ "Set classes to be treated as downloads (in addition to piwik_download), "
948
+ "divided by a vertical bar (&#124;). Leave blank to keep Piwik's default "
949
+ "settings."
950
+ msgstr ""
951
+
952
+ #: classes/WP_Piwik/Admin/Settings.php:345
953
+ #: classes/WP_Piwik/Admin/Settings.php:347
954
+ #, php-format
955
+ msgid "See %sPiwik JavaScript Tracking Client reference%s."
956
  msgstr ""
 
957
 
958
+ #: classes/WP_Piwik/Admin/Settings.php:347
959
+ msgid "Set classes to be treated as outlinks"
960
+ msgstr ""
961
+
962
+ #: classes/WP_Piwik/Admin/Settings.php:347
963
+ msgid ""
964
+ "Set classes to be treated as outlinks (in addition to piwik_link), divided "
965
+ "by a vertical bar (&#124;). Leave blank to keep Piwik's default settings."
966
+ msgstr ""
967
 
968
+ #: classes/WP_Piwik/Admin/Settings.php:508
969
+ msgid "Donate"
970
+ msgstr "Donazioni"
971
+
972
+ #: classes/WP_Piwik/Admin/Settings.php:511
973
+ msgid "If you like WP-Piwik, you can support its development by a donation:"
974
+ msgstr "Se ti piace WP-Piwik e vuoi contribuire al suo sviluppo, considera una donazione."
975
+
976
+ #: classes/WP_Piwik/Admin/Settings.php:530
977
+ msgid "My Amazon.de wishlist"
978
+ msgstr "Mia lista di desideri pressom Amazon.de"
979
+
980
+ #: classes/WP_Piwik/Admin/Settings.php:533
981
+ #: classes/WP_Piwik/Admin/Settings.php:575
982
+ msgid "Please don't forget to vote the compatibility at the"
983
+ msgstr "Non scordarti di dare una valutazione di compatibilità nella "
984
+
985
+ #: classes/WP_Piwik/Admin/Settings.php:561
986
+ msgid "Thank you very much for your donation"
987
+ msgstr "Grazie per le vostre donazioni"
988
+
989
+ #: classes/WP_Piwik/Admin/Settings.php:561
990
  msgid "the Piwik team itself"
991
  msgstr "il team di Piwik stesso"
992
 
993
+ #: classes/WP_Piwik/Admin/Settings.php:561
994
+ msgid ", and all people flattering this"
995
+ msgstr ", è tutti che usano Flattr per donazioni a WP-Piwik"
996
 
997
+ #: classes/WP_Piwik/Admin/Settings.php:562
998
+ msgid ""
999
+ "Graphs powered by <a href=\"http://www.jqplot.com/\" "
1000
+ "target=\"_BLANK\">jqPlot</a> (License: GPL 2.0 and MIT) and <a "
1001
+ "href=\"http://omnipotent.net/jquery.sparkline/\" target=\"_BLANK\">jQuery "
1002
+ "Sparklines</a> (License: New BSD License)."
1003
+ msgstr ""
1004
 
1005
+ #: classes/WP_Piwik/Admin/Settings.php:563
1006
+ msgid "Thank you very much"
1007
+ msgstr "Mille grazie"
1008
 
1009
+ #: classes/WP_Piwik/Admin/Settings.php:563
1010
+ msgid "for your translation work"
1011
+ msgstr "per il vostro lavoro di traduzione"
1012
 
1013
+ #: classes/WP_Piwik/Admin/Settings.php:564
1014
+ msgid ""
1015
+ "Thank you very much, all users who send me mails containing criticism, "
1016
+ "commendation, feature requests and bug reports! You help me to make WP-Piwik"
1017
+ " much better."
1018
+ msgstr "Un ringraziamento sentito per tutti gli utenti che mi inviano critiche, proposte e bug reports! Mi aiutate di migliorare WP-Piwik."
1019
 
1020
+ #: classes/WP_Piwik/Admin/Settings.php:565
1021
+ msgid ""
1022
+ "Thank <strong>you</strong> for using my plugin. It is the best commendation "
1023
+ "if my piece of code is really used!"
1024
+ msgstr "Grazie <strong> a te</strong> per usare il mio plugin. E' la più grande soddisfazione se il mio codice viene usato realmente!"
1025
 
1026
+ #: classes/WP_Piwik/Admin/Settings.php:574
1027
+ msgid "The best place to get help:"
1028
+ msgstr "Il posto migliore dove trovare aiuto:"
1029
 
1030
+ #: classes/WP_Piwik/Admin/Settings.php:574
1031
+ msgid "WP-Piwik support forum"
1032
+ msgstr "Forum di assistenza WP-Piwik"
1033
 
1034
+ #: classes/WP_Piwik/Admin/Settings.php:577
1035
+ msgid "Debugging"
1036
+ msgstr "Debugging"
1037
 
1038
+ #: classes/WP_Piwik/Admin/Settings.php:578
1039
+ msgid ""
1040
+ "Either allow_url_fopen has to be enabled <em>or</em> cURL has to be "
1041
+ "available:"
1042
+ msgstr "O allow_url_fopen deve essere attivato <em>o</em> cURL deve essere disponibile:"
1043
 
1044
+ #: classes/WP_Piwik/Admin/Settings.php:581
1045
+ msgid "cURL is"
1046
+ msgstr "cURL è"
1047
+
1048
+ #: classes/WP_Piwik/Admin/Settings.php:582
1049
+ #: classes/WP_Piwik/Admin/Settings.php:587
1050
+ msgid "not"
1051
+ msgstr "non"
1052
 
1053
+ #: classes/WP_Piwik/Admin/Settings.php:583
1054
+ msgid "available"
1055
+ msgstr "disponibile"
1056
 
1057
+ #: classes/WP_Piwik/Admin/Settings.php:586
1058
+ msgid "allow_url_fopen is"
1059
+ msgstr "allow_url_fopen è"
1060
 
1061
+ #: classes/WP_Piwik/Admin/Settings.php:588
1062
  msgid "enabled"
1063
  msgstr "attivato"
1064
 
1065
+ #: classes/WP_Piwik/Admin/Settings.php:590
1066
+ msgid "is used."
1067
+ msgstr "è utilizzato."
1068
 
1069
+ #: classes/WP_Piwik/Admin/Settings.php:592
1070
+ msgid "Determined Piwik base URL is"
1071
+ msgstr "L'URL base di Piwik è stata individuata in"
1072
 
1073
+ #: classes/WP_Piwik/Admin/Settings.php:596
1074
+ msgid "Tools"
1075
+ msgstr "Strumenti"
1076
 
1077
+ #: classes/WP_Piwik/Admin/Settings.php:598
1078
+ msgid "Run testscript"
1079
+ msgstr "Esegui script di prova"
 
 
 
1080
 
1081
+ #: classes/WP_Piwik/Admin/Settings.php:599
1082
+ msgid "Sitebrowser"
1083
+ msgstr "Sitebrowser"
 
 
 
 
1084
 
1085
+ #: classes/WP_Piwik/Admin/Settings.php:600
1086
+ msgid "Clear cache"
1087
+ msgstr "Svuota cache"
1088
+
1089
+ #: classes/WP_Piwik/Admin/Settings.php:601
1090
+ msgid "Are you sure you want to clear all settings?"
1091
+ msgstr "Sei sicuro di voler azzerare tutte le impostazioni?"
1092
+
1093
+ #: classes/WP_Piwik/Admin/Settings.php:601
1094
+ msgid "Reset WP-Piwik"
1095
+ msgstr "Reimposta WP-Piwik"
1096
+
1097
+ #: classes/WP_Piwik/Admin/Settings.php:603
1098
+ msgid "Latest support threads on WordPress.org"
1099
+ msgstr "Gli ultimi thread di supporto su WordPress.org"
1100
 
1101
+ #: classes/WP_Piwik/Admin/Settings.php:654
1102
+ msgid "Settings cleared (except connection settings)."
1103
+ msgstr "Impostazioni azzerate (eccetto le impostazioni di connessione)"
1104
 
1105
+ #: classes/WP_Piwik/Admin/Settings.php:670
1106
+ msgid "Cache cleared."
1107
+ msgstr "Cache svuotata."
1108
+
1109
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:22
1110
+ msgid "site"
1111
+ msgstr "sito"
1112
+
1113
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:23
1114
+ msgid "sites"
1115
+ msgstr "siti"
1116
+
1117
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:29
1118
+ msgid "No site configured yet."
1119
+ msgstr "Non è ancora stato configurato alcun sito"
1120
+
1121
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:34
1122
+ msgid "Blog ID"
1123
+ msgstr "ID blog"
1124
+
1125
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:35
1126
+ msgid "Title"
1127
+ msgstr "Titolo"
1128
 
1129
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:36
1130
+ msgid "URL"
1131
+ msgstr "URL"
1132
+
1133
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:37
1134
+ msgid "Site ID (Piwik)"
1135
+ msgstr "ID Pagina (Piwik)"
1136
+
1137
+ #: classes/WP_Piwik/Admin/Sitebrowser.php:84
1138
+ msgid "Site not created yet."
1139
+ msgstr "Non è ancora stato creato alcun sito"
1140
+
1141
+ #: classes/WP_Piwik/Admin/Statistics.php:12
1142
  msgid "Statistics"
1143
  msgstr "Statistiche"
1144
 
1145
+ #: classes/WP_Piwik/Admin/Statistics.php:21
1146
+ msgid "Currently shown stats:"
1147
+ msgstr "Statistiche mostrate attualmente:"
1148
+
1149
+ #: classes/WP_Piwik/Request/Php.php:27
1150
+ msgid "Could not resolve"
1151
+ msgstr "Impossibile risolvere"
1152
+
1153
+ #: classes/WP_Piwik/Request/Php.php:27
1154
+ msgid "realpath() returns false"
1155
+ msgstr "realpath() restituisce false"
1156
+
1157
+ #: classes/WP_Piwik/Request/Php.php:39
1158
+ msgid "Class Piwik\\FrontController does not exists."
1159
+ msgstr "La classe Piwik\\FrontController non esiste."
1160
+
1161
+ #: classes/WP_Piwik/Request/Php.php:42
1162
+ msgid "Class Piwik\\API\\Request does not exists."
1163
+ msgstr "La classe Piwik\\API\\Request non esiste."
1164
+
1165
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:10
1166
+ msgid "Piwik Custom Variables"
1167
+ msgstr "Variabili Personalizzate di Piwik"
1168
+
1169
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1170
+ msgid "Name"
1171
+ msgstr "Nome"
1172
+
1173
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:21
1174
+ msgid "Value"
1175
+ msgstr "Valore"
1176
+
1177
+ #: classes/WP_Piwik/Template/MetaBoxCustomVars.php:30
1178
+ msgid "Set custom variables for a page view"
1179
+ msgstr "Imposta le variabili personalizzate per una visualizzazione di pagina"
1180
+
1181
+ #: classes/WP_Piwik/Widget.php:91
1182
+ #: classes/WP_Piwik/Widget/BrowserDetails.php:37
1183
+ #: classes/WP_Piwik/Widget/Browsers.php:37
1184
+ #: classes/WP_Piwik/Widget/Chart.php:43 classes/WP_Piwik/Widget/Country.php:37
1185
+ #: classes/WP_Piwik/Widget/Ecommerce.php:23
1186
+ #: classes/WP_Piwik/Widget/Items.php:23
1187
+ #: classes/WP_Piwik/Widget/ItemsCategory.php:23
1188
+ #: classes/WP_Piwik/Widget/Noresult.php:23
1189
+ #: classes/WP_Piwik/Widget/Overview.php:24
1190
+ #: classes/WP_Piwik/Widget/Plugins.php:23 classes/WP_Piwik/Widget/Post.php:25
1191
+ #: classes/WP_Piwik/Wid