Version Description
- [Fix] New user agents were not being recorded correctly in some cases (thank you, fberzau)
- [Fix] Bug affecting the plugin in MU environments (thank you, 27pchrisl)
- [Fix] Filters have a more consistent behavior and are now easier to extend via third party add-ons
- [Fix] Date filters were being set to January 1, 1970 under certain circumstances (thank you, Russell and uewinfo_frm)
- [Fix] Our premium Export to Excel add-on was only returning the first 20 records of each report
Download this release
Release Info
Developer | coolmann |
Plugin | Slimstat Analytics |
Version | 3.5.9 |
Comparing to | |
See all releases |
Code changes from version 3.5.8 to 3.5.9
- admin/js/slimstat.admin.js +84 -95
- admin/lang/wp-slimstat-es_ES.mo +0 -0
- admin/lang/wp-slimstat-es_ES.po +148 -146
- admin/lang/wp-slimstat-fr_CA.mo +0 -0
- admin/lang/wp-slimstat-fr_CA.po +135 -142
- admin/lang/wp-slimstat-fr_FR.mo +0 -0
- admin/lang/wp-slimstat-fr_FR.po +143 -143
- admin/view/index.php +2 -2
- admin/view/wp-slimstat-db.php +2 -2
- admin/wp-slimstat-admin.php +41 -17
- readme.txt +11 -43
- wp-slimstat.php +3 -4
admin/js/slimstat.admin.js
CHANGED
@@ -31,30 +31,6 @@ var SlimStatAdmin = {
|
|
31 |
_refresh_timer: [0, 0],
|
32 |
_tooltip: {},
|
33 |
|
34 |
-
add_post_filters: function(report_id, href){
|
35 |
-
filters_parsed = [];
|
36 |
-
filters_to_add = href.split('&');
|
37 |
-
jQuery('#slimstat-filters-form-hidden').attr('action', filters_to_add[0]);
|
38 |
-
|
39 |
-
for (i in filters_to_add){
|
40 |
-
if (filters_to_add[i].indexOf('fs\%5B') != 0) continue;
|
41 |
-
|
42 |
-
filter_components = filters_to_add[i].split('=');
|
43 |
-
|
44 |
-
filter_components[0] = decodeURIComponent(filter_components[0]);
|
45 |
-
jQuery('input[name="'+filter_components[0]+'"]').remove();
|
46 |
-
|
47 |
-
if (filter_components[0].indexOf('[day]') > 0) jQuery('#slimstat-filter-day').val(0);
|
48 |
-
if (filter_components[0].indexOf('[month]') > 0) jQuery('#slimstat-filter-month').val(0);
|
49 |
-
if (filter_components[0].indexOf('[year]') > 0) jQuery('#slimstat-filter-year').val('');
|
50 |
-
if (filter_components[0].indexOf('[interval]') > 0) jQuery('#slimstat-filter-interval').val('');
|
51 |
-
|
52 |
-
jQuery('<input>').attr('type', 'hidden').attr('name', filter_components[0]).attr('class', 'slimstat-post-filter slimstat-new-filter '+report_id).val(filter_components[1].replace('+', ' ')).appendTo('#slimstat-filters-form-hidden');
|
53 |
-
filters_parsed[filter_components[0]] = filter_components[1];
|
54 |
-
}
|
55 |
-
return filters_parsed;
|
56 |
-
},
|
57 |
-
|
58 |
chart_color_weekends: function(){
|
59 |
if (!SlimStatAdmin.chart_info.daily_chart){
|
60 |
return true;
|
@@ -179,27 +155,41 @@ var SlimStatAdmin = {
|
|
179 |
SlimStatAdmin._placeholder.bind('plotpan', SlimStatAdmin.chart_color_weekends);
|
180 |
},
|
181 |
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
});
|
187 |
-
jQuery('#'+report_id+' .inside').html('<p class="loading"><i class="slimstat-font-spin1 animate-spin"></i></p>');
|
188 |
|
189 |
-
|
190 |
-
if (
|
191 |
-
|
192 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
193 |
}
|
194 |
else{
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
}
|
199 |
-
}
|
200 |
-
|
201 |
-
|
202 |
-
|
|
|
|
|
|
|
203 |
},
|
204 |
|
205 |
refresh_countdown: function(){
|
@@ -216,13 +206,38 @@ var SlimStatAdmin = {
|
|
216 |
report_id = 'slim_p7_02';
|
217 |
data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()};
|
218 |
jQuery('#'+report_id+' .inside').html('<p class="loading"></p>');
|
219 |
-
SlimStatAdmin.
|
220 |
|
221 |
window.clearTimeout(refresh_handle);
|
222 |
SlimStatAdmin._refresh_timer[0] = parseInt(SlimStatAdminParams.refresh_interval/60);
|
223 |
SlimStatAdmin._refresh_timer[1] = SlimStatAdminParams.refresh_interval%60;
|
224 |
refresh_handle = window.setTimeout("SlimStatAdmin.refresh_countdown();", 1000);
|
225 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
}
|
227 |
}
|
228 |
|
@@ -234,60 +249,20 @@ jQuery(function(){
|
|
234 |
refresh_handle = window.setTimeout("SlimStatAdmin.refresh_countdown();", 1000);
|
235 |
}
|
236 |
|
|
|
237 |
jQuery('input.hide-postbox-tog[id^=slim_]').bind('click.postboxes', function (){
|
238 |
var report_id = jQuery(this).val();
|
239 |
var data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()}
|
240 |
jQuery('#'+report_id+' .inside').html('<p class="loading"></p>');
|
241 |
|
242 |
if (jQuery(this).prop("checked") && jQuery('#'+jQuery(this).val()).length){
|
243 |
-
SlimStatAdmin.
|
244 |
}
|
245 |
});
|
246 |
|
247 |
-
|
248 |
-
jQuery('
|
249 |
-
|
250 |
-
|
251 |
-
filters_to_remove = decodeURIComponent(jQuery(this).attr('href')).split('&');
|
252 |
-
jQuery('#slimstat-filters-form-hidden').attr('action', filters_to_remove[0]);
|
253 |
-
jQuery('.slimstat-new-filter').remove();
|
254 |
-
|
255 |
-
for (i in filters_to_remove){
|
256 |
-
filter_components = filters_to_remove[i].split('=');
|
257 |
-
jQuery('input[name="'+filter_components[0].replace('[', '\\[').replace(']', '\\]')+'"]').remove();
|
258 |
-
|
259 |
-
// Reset dropdowns, if needed
|
260 |
-
if (filter_components[0].indexOf('[day]') > 0) jQuery('#slimstat-filter-day').val(0);
|
261 |
-
if (filter_components[0].indexOf('[month]') > 0) jQuery('#slimstat-filter-month').val(0);
|
262 |
-
if (filter_components[0].indexOf('[year]') > 0) jQuery('#slimstat-filter-year').val('');
|
263 |
-
if (filter_components[0].indexOf('[interval]') > 0) jQuery('#slimstat-filter-interval').val('');
|
264 |
-
}
|
265 |
-
|
266 |
-
jQuery('#slimstat-filters-form-hidden').submit();
|
267 |
-
return false;
|
268 |
-
});
|
269 |
-
|
270 |
-
|
271 |
-
});
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
// New stuff
|
284 |
-
jQuery(function(){
|
285 |
-
// Filters: add hidden form
|
286 |
-
if (!jQuery('#slimstat-filters-form-hidden').length){
|
287 |
-
jQuery('<form id="slimstat-filters-form-hidden" method="post"/>').appendTo('body');
|
288 |
-
jQuery('.slimstat-post-filter').each(function(){
|
289 |
-
jQuery(this).clone().appendTo('#slimstat-filters-form-hidden');
|
290 |
-
});
|
291 |
}
|
292 |
|
293 |
// Filters: Lock value input field based on operator drop down selection
|
@@ -339,18 +314,31 @@ jQuery(function(){
|
|
339 |
});
|
340 |
}
|
341 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
342 |
// Send filters as post requests
|
343 |
jQuery(document).on('click', '.slimstat-filter-link, #toplevel_page_wp-slim-view-1 li a, #wp-admin-bar-slimstat-header li a', function(e){
|
344 |
e.preventDefault();
|
345 |
-
|
|
|
346 |
return true;
|
347 |
}
|
348 |
|
349 |
-
|
350 |
-
|
351 |
|
352 |
-
|
353 |
-
jQuery('
|
354 |
return false;
|
355 |
});
|
356 |
|
@@ -360,7 +348,8 @@ jQuery(function(){
|
|
360 |
report_id = jQuery(this).parents('.postbox').attr('id');
|
361 |
|
362 |
if (typeof jQuery(this).attr('href') != 'undefined'){
|
363 |
-
filters_parsed = SlimStatAdmin.
|
|
|
364 |
|
365 |
// Remember the new filter for when the report is refreshed
|
366 |
if (typeof filters_parsed['fs[start_from]'] != 'undefined' && jQuery('#'+report_id+' .refresh').length){
|
@@ -372,7 +361,7 @@ jQuery(function(){
|
|
372 |
}
|
373 |
|
374 |
data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()};
|
375 |
-
SlimStatAdmin.
|
376 |
|
377 |
jQuery('#'+report_id+' .inside').slimScroll({scrollTo : '0px'});
|
378 |
|
@@ -389,7 +378,7 @@ jQuery(function(){
|
|
389 |
jQuery('div[id^=slim_]').each(function(){
|
390 |
report_id = jQuery(this).attr('id');
|
391 |
data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()}
|
392 |
-
SlimStatAdmin.
|
393 |
});
|
394 |
}
|
395 |
|
31 |
_refresh_timer: [0, 0],
|
32 |
_tooltip: {},
|
33 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
chart_color_weekends: function(){
|
35 |
if (!SlimStatAdmin.chart_info.daily_chart){
|
36 |
return true;
|
155 |
SlimStatAdmin._placeholder.bind('plotpan', SlimStatAdmin.chart_color_weekends);
|
156 |
},
|
157 |
|
158 |
+
parse_url_filters: function(report_id, href){
|
159 |
+
filters_parsed = [];
|
160 |
+
filters_to_add = href.split('&');
|
161 |
+
jQuery('#slimstat-filters-form').attr('action', filters_to_add[0]);
|
|
|
|
|
162 |
|
163 |
+
for (i in filters_to_add){
|
164 |
+
if (filters_to_add[i].indexOf('fs\%5B') != 0) continue;
|
165 |
+
|
166 |
+
filter_components = filters_to_add[i].split('=');
|
167 |
+
|
168 |
+
filter_components[0] = decodeURIComponent(filter_components[0]);
|
169 |
+
jQuery('input[name="'+filter_components[0]+'"]').remove();
|
170 |
+
|
171 |
+
filters_parsed[filter_components[0]] = [report_id, filter_components[1].replace('+', ' ')];
|
172 |
+
}
|
173 |
+
return filters_parsed;
|
174 |
+
},
|
175 |
+
|
176 |
+
add_filters_to_form: function(filters_parsed){
|
177 |
+
for (i in filters_parsed){
|
178 |
+
if (jQuery.inArray(i, ['fs[day]','fs[month]','fs[year]','fs[interval]']) == -1){
|
179 |
+
jQuery('<input>').attr('type', 'hidden').attr('name', i).attr('class', 'slimstat-post-filter slimstat-temp-filter '+filters_parsed[i][0]).val(filters_parsed[i][1]).appendTo('#slimstat-filters-form');
|
180 |
}
|
181 |
else{
|
182 |
+
field_id = i.replace('fs[', '#slimstat-filter-').replace(']', '');
|
183 |
+
field_val = filters_parsed[i][1].split(' ');
|
184 |
+
jQuery(field_id).val(field_val[1]);
|
185 |
}
|
186 |
+
}
|
187 |
+
},
|
188 |
+
|
189 |
+
remove_filters_from_form: function(filters_parsed){
|
190 |
+
for (i in filters_parsed){
|
191 |
+
jQuery('input[name="'+i.replace('[', '\\[').replace(']', '\\]')+'"]').remove();
|
192 |
+
}
|
193 |
},
|
194 |
|
195 |
refresh_countdown: function(){
|
206 |
report_id = 'slim_p7_02';
|
207 |
data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()};
|
208 |
jQuery('#'+report_id+' .inside').html('<p class="loading"></p>');
|
209 |
+
SlimStatAdmin.refresh_report(report_id, data);
|
210 |
|
211 |
window.clearTimeout(refresh_handle);
|
212 |
SlimStatAdmin._refresh_timer[0] = parseInt(SlimStatAdminParams.refresh_interval/60);
|
213 |
SlimStatAdmin._refresh_timer[1] = SlimStatAdminParams.refresh_interval%60;
|
214 |
refresh_handle = window.setTimeout("SlimStatAdmin.refresh_countdown();", 1000);
|
215 |
}
|
216 |
+
},
|
217 |
+
|
218 |
+
refresh_report: function(report_id, data){
|
219 |
+
// Get the data from the hidden form
|
220 |
+
filters_input = jQuery('#slimstat-filters-form .slimstat-post-filter').toArray();
|
221 |
+
for (i in filters_input){
|
222 |
+
data[filters_input[i]['name']] = filters_input[i]['value'];
|
223 |
+
}
|
224 |
+
|
225 |
+
jQuery('#'+report_id+' .inside').html('<p class="loading"><i class="slimstat-font-spin1 animate-spin"></i></p>');
|
226 |
+
|
227 |
+
jQuery.post(ajaxurl, data, function(response){
|
228 |
+
if (report_id.indexOf('_01') > 0){
|
229 |
+
jQuery('#'+report_id + ' .inside').html(response);
|
230 |
+
SlimStatAdmin.chart_init();
|
231 |
+
}
|
232 |
+
else{
|
233 |
+
jQuery('#'+report_id + ' .inside').fadeOut(700, function(){
|
234 |
+
jQuery(this).html(response).fadeIn(700);
|
235 |
+
});
|
236 |
+
}
|
237 |
+
});
|
238 |
+
|
239 |
+
// Remove filters set by other Ajax buttons
|
240 |
+
jQuery('.slimstat-temp-filter').remove();
|
241 |
}
|
242 |
}
|
243 |
|
249 |
refresh_handle = window.setTimeout("SlimStatAdmin.refresh_countdown();", 1000);
|
250 |
}
|
251 |
|
252 |
+
// Refresh report if (re)activated via the checkbox under Screen Options
|
253 |
jQuery('input.hide-postbox-tog[id^=slim_]').bind('click.postboxes', function (){
|
254 |
var report_id = jQuery(this).val();
|
255 |
var data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()}
|
256 |
jQuery('#'+report_id+' .inside').html('<p class="loading"></p>');
|
257 |
|
258 |
if (jQuery(this).prop("checked") && jQuery('#'+jQuery(this).val()).length){
|
259 |
+
SlimStatAdmin.refresh_report(report_id, data);
|
260 |
}
|
261 |
});
|
262 |
|
263 |
+
// Filters: add form if not available (Dashboard)
|
264 |
+
if (!jQuery('#slimstat-filters-form').length){
|
265 |
+
jQuery('<form id="slimstat-filters-form" method="post"/>').appendTo('body');
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
}
|
267 |
|
268 |
// Filters: Lock value input field based on operator drop down selection
|
314 |
});
|
315 |
}
|
316 |
|
317 |
+
// Filters: Remove selected when X is clicked
|
318 |
+
jQuery('a.slimstat-remove-filter').click(function(e){
|
319 |
+
e.preventDefault();
|
320 |
+
|
321 |
+
filters_to_remove = SlimStatAdmin.parse_url_filters('p0', jQuery(this).attr('href'));
|
322 |
+
SlimStatAdmin.remove_filters_from_form(filters_to_remove);
|
323 |
+
|
324 |
+
jQuery('#slimstat-filters-form').submit();
|
325 |
+
jQuery('.slimstat-temp-filter').remove();
|
326 |
+
return false;
|
327 |
+
});
|
328 |
+
|
329 |
// Send filters as post requests
|
330 |
jQuery(document).on('click', '.slimstat-filter-link, #toplevel_page_wp-slim-view-1 li a, #wp-admin-bar-slimstat-header li a', function(e){
|
331 |
e.preventDefault();
|
332 |
+
|
333 |
+
if (!jQuery('#slimstat-filters-form').length){
|
334 |
return true;
|
335 |
}
|
336 |
|
337 |
+
filters_parsed = SlimStatAdmin.parse_url_filters('p0', jQuery(this).attr('href'));
|
338 |
+
SlimStatAdmin.add_filters_to_form(filters_parsed);
|
339 |
|
340 |
+
jQuery('#slimstat-filters-form').submit();
|
341 |
+
jQuery('.slimstat-temp-filter').remove();
|
342 |
return false;
|
343 |
});
|
344 |
|
348 |
report_id = jQuery(this).parents('.postbox').attr('id');
|
349 |
|
350 |
if (typeof jQuery(this).attr('href') != 'undefined'){
|
351 |
+
filters_parsed = SlimStatAdmin.parse_url_filters(report_id, jQuery(this).attr('href'));
|
352 |
+
SlimStatAdmin.add_filters_to_form(filters_parsed);
|
353 |
|
354 |
// Remember the new filter for when the report is refreshed
|
355 |
if (typeof filters_parsed['fs[start_from]'] != 'undefined' && jQuery('#'+report_id+' .refresh').length){
|
361 |
}
|
362 |
|
363 |
data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()};
|
364 |
+
SlimStatAdmin.refresh_report(report_id, data);
|
365 |
|
366 |
jQuery('#'+report_id+' .inside').slimScroll({scrollTo : '0px'});
|
367 |
|
378 |
jQuery('div[id^=slim_]').each(function(){
|
379 |
report_id = jQuery(this).attr('id');
|
380 |
data = {action: 'slimstat_load_report', report_id: report_id, security: jQuery('#meta-box-order-nonce').val()}
|
381 |
+
SlimStatAdmin.refresh_report(report_id, data);
|
382 |
});
|
383 |
}
|
384 |
|
admin/lang/wp-slimstat-es_ES.mo
CHANGED
Binary file
|
admin/lang/wp-slimstat-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP SlimStat\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2014-
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Get Used To IT <support@getused.to.it>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
@@ -16,103 +16,103 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.6.3\n"
|
17 |
"X-Poedit-SearchPath-0: ../..\n"
|
18 |
|
19 |
-
#: ../../wp-slimstat.php:
|
20 |
#: ../../admin/config/index.php:58 ../../admin/view/wp-slimstat-reports.php:28
|
21 |
msgid "Activity Log"
|
22 |
msgstr "Bitácora de actividades"
|
23 |
|
24 |
-
#: ../../wp-slimstat.php:
|
25 |
-
#: ../../admin/wp-slimstat-admin.php:
|
26 |
#: ../../admin/view/wp-slimstat-reports.php:29
|
27 |
msgid "Overview"
|
28 |
msgstr "Visión general"
|
29 |
|
30 |
-
#: ../../wp-slimstat.php:
|
31 |
-
#: ../../admin/wp-slimstat-admin.php:
|
32 |
#: ../../admin/view/wp-slimstat-reports.php:30
|
33 |
msgid "Visitors"
|
34 |
msgstr "Visitantes"
|
35 |
|
36 |
-
#: ../../wp-slimstat.php:
|
37 |
-
#: ../../admin/wp-slimstat-admin.php:
|
38 |
#: ../../admin/view/wp-slimstat-reports.php:31
|
39 |
msgid "Content"
|
40 |
msgstr "Contenido"
|
41 |
|
42 |
-
#: ../../wp-slimstat.php:
|
43 |
-
#: ../../admin/wp-slimstat-admin.php:
|
44 |
#: ../../admin/view/wp-slimstat-reports.php:32
|
45 |
msgid "Traffic Sources"
|
46 |
msgstr "Origen del Tráfico"
|
47 |
|
48 |
-
#: ../../wp-slimstat.php:
|
49 |
-
#: ../../admin/wp-slimstat-admin.php:
|
50 |
#: ../../admin/view/wp-slimstat-reports.php:33
|
51 |
#: ../../admin/view/wp-slimstat-reports.php:101
|
52 |
msgid "World Map"
|
53 |
msgstr "Mapa del Mundo"
|
54 |
|
55 |
-
#: ../../wp-slimstat.php:
|
56 |
-
#: ../../admin/wp-slimstat-admin.php:
|
57 |
#: ../../admin/view/wp-slimstat-reports.php:34
|
58 |
msgid "Custom Reports"
|
59 |
msgstr "Informes Personalizados"
|
60 |
|
61 |
-
#: ../../wp-slimstat.php:
|
62 |
-
#: ../../admin/wp-slimstat-admin.php:
|
63 |
#: ../../admin/config/index.php:9 ../../admin/config/index.php:229
|
64 |
msgid "Add-ons"
|
65 |
msgstr "Añadidos"
|
66 |
|
67 |
-
#: ../../wp-slimstat.php:
|
68 |
-
#: ../../admin/wp-slimstat-admin.php:
|
69 |
-
#: ../../admin/wp-slimstat-admin.php:
|
70 |
#: ../../admin/config/index.php:135
|
71 |
#, fuzzy
|
72 |
msgid "Settings"
|
73 |
msgstr "Seleccionar orden"
|
74 |
|
75 |
-
#: ../../admin/wp-slimstat-admin.php:
|
76 |
-
#: ../../admin/wp-slimstat-admin.php:
|
77 |
#, fuzzy
|
78 |
msgid "SlimStat"
|
79 |
msgstr "Acerca de WP-SlimStat"
|
80 |
|
81 |
-
#: ../../admin/wp-slimstat-admin.php:
|
82 |
msgid "Pageviews in the last 365 days"
|
83 |
msgstr "Visitas a la página en los últimos 365 días"
|
84 |
|
85 |
-
#: ../../admin/wp-slimstat-admin.php:
|
86 |
msgid "Show on screen"
|
87 |
msgstr "Mostrar en pantalla"
|
88 |
|
89 |
-
#: ../../admin/wp-slimstat-admin.php:
|
90 |
msgid "Hide this notice"
|
91 |
msgstr "Esconder esta notificación"
|
92 |
|
93 |
-
#: ../../admin/wp-slimstat-admin.php:
|
94 |
msgid "There was an error updating the following options:"
|
95 |
msgstr "Hubo un error al actualizar las siguientes opciones:"
|
96 |
|
97 |
-
#: ../../admin/wp-slimstat-admin.php:
|
98 |
#, fuzzy
|
99 |
msgid "Your changes have been saved."
|
100 |
msgstr "Sus ajustes se han actualizado correctamente."
|
101 |
|
102 |
-
#: ../../admin/wp-slimstat-admin.php:
|
103 |
msgid "Save Changes"
|
104 |
msgstr "Guardar los cambios"
|
105 |
|
106 |
-
#: ../../admin/wp-slimstat-admin.php:
|
107 |
msgid "Yes"
|
108 |
msgstr "Si"
|
109 |
|
110 |
-
#: ../../admin/wp-slimstat-admin.php:
|
111 |
#: ../../admin/view/wp-slimstat-reports.php:762
|
112 |
msgid "No"
|
113 |
msgstr "No"
|
114 |
|
115 |
-
#: ../../admin/wp-slimstat-admin.php:
|
116 |
msgid ""
|
117 |
"WARNING: a misconfigured setting and/or server environment is preventing WP "
|
118 |
"SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
|
@@ -124,16 +124,16 @@ msgstr ""
|
|
124 |
"Por favor, <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/"
|
125 |
"wp-slimstat/faq/\">revise las FAQs</a> para obtener más información."
|
126 |
|
127 |
-
#: ../../admin/wp-slimstat-admin.php:
|
128 |
msgid "Definitions"
|
129 |
msgstr "Definiciones"
|
130 |
|
131 |
-
#: ../../admin/wp-slimstat-admin.php:
|
132 |
#, fuzzy
|
133 |
msgid "Pageview"
|
134 |
msgstr "Paginas visitadas"
|
135 |
|
136 |
-
#: ../../admin/wp-slimstat-admin.php:
|
137 |
msgid ""
|
138 |
"A request to load a single HTML file (\"page\"). This should be contrasted "
|
139 |
"with a \"hit\", which refers to a request for any file from a web server. WP "
|
@@ -144,12 +144,12 @@ msgstr ""
|
|
144 |
"archivo desde un servidor web. WP SLIMStat registra una visita de página "
|
145 |
"cada vez que el código de seguimiento se ejecuta"
|
146 |
|
147 |
-
#: ../../admin/wp-slimstat-admin.php:
|
148 |
#, fuzzy
|
149 |
msgid "(Human) Visit"
|
150 |
msgstr "Visitas humanas"
|
151 |
|
152 |
-
#: ../../admin/wp-slimstat-admin.php:
|
153 |
msgid ""
|
154 |
"A period of interaction between a visitor's browser and your website, ending "
|
155 |
"when the browser is closed or when the user has been inactive on that site "
|
@@ -159,13 +159,13 @@ msgstr ""
|
|
159 |
"termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
|
160 |
"en ese sitio durante 30 minutos"
|
161 |
|
162 |
-
#: ../../admin/wp-slimstat-admin.php:
|
163 |
#: ../../admin/view/right-now.php:151
|
164 |
#, fuzzy
|
165 |
msgid "Known Visitor"
|
166 |
msgstr "Palabras clave recientes"
|
167 |
|
168 |
-
#: ../../admin/wp-slimstat-admin.php:
|
169 |
msgid ""
|
170 |
"Any user who has left a comment on your blog, and is thus identified by "
|
171 |
"Wordpress as a returning visitor"
|
@@ -173,12 +173,12 @@ msgstr ""
|
|
173 |
"Todo usuario que haya dejado un comentario en su blog, por lo que es "
|
174 |
"identificado por Wordpress como un visitante que regresó"
|
175 |
|
176 |
-
#: ../../admin/wp-slimstat-admin.php:
|
177 |
#, fuzzy
|
178 |
msgid "Unique IP"
|
179 |
msgstr "IPs Unicas"
|
180 |
|
181 |
-
#: ../../admin/wp-slimstat-admin.php:
|
182 |
msgid ""
|
183 |
"Used to differentiate between multiple requests to download a file from one "
|
184 |
"internet address (IP) and requests originating from many distinct addresses; "
|
@@ -191,12 +191,12 @@ msgstr ""
|
|
191 |
"dirección de Internet de donde vino una visita de página, es útil, pero no "
|
192 |
"es perfecta"
|
193 |
|
194 |
-
#: ../../admin/wp-slimstat-admin.php:
|
195 |
#: ../../admin/view/right-now.php:101 ../../admin/view/wp-slimstat-db.php:64
|
196 |
msgid "Originating IP"
|
197 |
msgstr "IP de Origen"
|
198 |
|
199 |
-
#: ../../admin/wp-slimstat-admin.php:
|
200 |
msgid ""
|
201 |
"the originating IP address of a client connecting to a web server through an "
|
202 |
"HTTP proxy or load balancer"
|
@@ -204,12 +204,12 @@ msgstr ""
|
|
204 |
"dirección IP de origen de un cliente que se conecta a un servidor web a "
|
205 |
"través de un proxy HTTP o equilibrador de carga"
|
206 |
|
207 |
-
#: ../../admin/wp-slimstat-admin.php:
|
208 |
#, fuzzy
|
209 |
msgid "Direct Traffic"
|
210 |
msgstr "Visita Directa"
|
211 |
|
212 |
-
#: ../../admin/wp-slimstat-admin.php:
|
213 |
msgid ""
|
214 |
"All those people showing up to your Web site by typing in the URL of your "
|
215 |
"Web site coming or from a bookmark; some people also call this \"default "
|
@@ -219,12 +219,12 @@ msgstr ""
|
|
219 |
"URL de su sitio web o que vienen de un favorito, algunas personas también "
|
220 |
"llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
|
221 |
|
222 |
-
#: ../../admin/wp-slimstat-admin.php:
|
223 |
#, fuzzy
|
224 |
msgid "Search Engine"
|
225 |
msgstr "Motores de Búsqueda"
|
226 |
|
227 |
-
#: ../../admin/wp-slimstat-admin.php:
|
228 |
msgid ""
|
229 |
"Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
|
230 |
"as well as your paid (PPC/SEM) traffic, so be aware of that"
|
@@ -232,23 +232,23 @@ msgstr ""
|
|
232 |
"Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
|
233 |
"orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
|
234 |
|
235 |
-
#: ../../admin/wp-slimstat-admin.php:
|
236 |
#: ../../admin/view/right-now.php:130 ../../admin/view/wp-slimstat-db.php:45
|
237 |
#, fuzzy
|
238 |
msgid "Search Terms"
|
239 |
msgstr "Principales Recursos"
|
240 |
|
241 |
-
#: ../../admin/wp-slimstat-admin.php:
|
242 |
msgid "Keywords used by your visitors to find your website on a search engine"
|
243 |
msgstr ""
|
244 |
"Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
|
245 |
"en un buscador"
|
246 |
|
247 |
-
#: ../../admin/wp-slimstat-admin.php:
|
248 |
msgid "SERP"
|
249 |
msgstr "SERP"
|
250 |
|
251 |
-
#: ../../admin/wp-slimstat-admin.php:
|
252 |
msgid ""
|
253 |
"Short for search engine results page, the Web page that a search engine "
|
254 |
"returns with the results of its search. The value shown represents your rank "
|
@@ -259,13 +259,13 @@ msgstr ""
|
|
259 |
"que se muestra representa su rango (o posición) dentro de esa lista de los "
|
260 |
"resultados"
|
261 |
|
262 |
-
#: ../../admin/wp-slimstat-admin.php:
|
263 |
#: ../../admin/view/wp-slimstat-db.php:57
|
264 |
#, fuzzy
|
265 |
msgid "User Agent"
|
266 |
msgstr "Buscadores"
|
267 |
|
268 |
-
#: ../../admin/wp-slimstat-admin.php:
|
269 |
msgid ""
|
270 |
"Any program used for accessing a website; this includes browsers, robots, "
|
271 |
"spiders and any other program that was used to retrieve information from the "
|
@@ -275,13 +275,13 @@ msgstr ""
|
|
275 |
"navegadores, robots, arañas y cualquier otro programa que se utiliza para "
|
276 |
"recuperar información del sitio"
|
277 |
|
278 |
-
#: ../../admin/wp-slimstat-admin.php:
|
279 |
#: ../../admin/view/wp-slimstat-db.php:61
|
280 |
#, fuzzy
|
281 |
msgid "Outbound Link"
|
282 |
msgstr "Enlaces Salientes Recientes"
|
283 |
|
284 |
-
#: ../../admin/wp-slimstat-admin.php:
|
285 |
msgid ""
|
286 |
"A link from one domain to another is said to be outbound from its source "
|
287 |
"anchor and inbound to its target. This report lists all the links to other "
|
@@ -291,44 +291,44 @@ msgstr ""
|
|
291 |
"de anclaje y de entrada a su objetivo. Este informe muestra todos los "
|
292 |
"enlaces a otros sitios web, seguidos por sus visitantes."
|
293 |
|
294 |
-
#: ../../admin/wp-slimstat-admin.php:
|
295 |
msgid "Basic Filters"
|
296 |
msgstr "Filtros básicos"
|
297 |
|
298 |
-
#: ../../admin/wp-slimstat-admin.php:
|
299 |
#: ../../admin/view/wp-slimstat-db.php:42
|
300 |
msgid "Browser"
|
301 |
msgstr "Navegador"
|
302 |
|
303 |
-
#: ../../admin/wp-slimstat-admin.php:
|
304 |
msgid "User agent (Firefox, Chrome, ...)"
|
305 |
msgstr "Agente usuario(Firefox, Chrome, ...)"
|
306 |
|
307 |
-
#: ../../admin/wp-slimstat-admin.php:
|
308 |
#: ../../admin/view/wp-slimstat-db.php:43
|
309 |
#: ../../admin/view/wp-slimstat-reports.php:483
|
310 |
msgid "Country Code"
|
311 |
msgstr "Código de Pais"
|
312 |
|
313 |
-
#: ../../admin/wp-slimstat-admin.php:
|
314 |
msgid "2-letter code (us, ru, de, it, ...)"
|
315 |
msgstr "código de 2 letras (eu, ru, de, it, ...)"
|
316 |
|
317 |
-
#: ../../admin/wp-slimstat-admin.php:
|
318 |
msgid "IP"
|
319 |
msgstr "IP"
|
320 |
|
321 |
-
#: ../../admin/wp-slimstat-admin.php:
|
322 |
msgid "Visitor's public IP address"
|
323 |
msgstr "Dirección IP pública del visitante"
|
324 |
|
325 |
-
#: ../../admin/wp-slimstat-admin.php:
|
326 |
#: ../../admin/view/wp-slimstat-db.php:46
|
327 |
#: ../../admin/view/wp-slimstat-reports.php:495
|
328 |
msgid "Language Code"
|
329 |
msgstr "Código de Idioma"
|
330 |
|
331 |
-
#: ../../admin/wp-slimstat-admin.php:
|
332 |
msgid ""
|
333 |
"Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
|
334 |
"en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
|
@@ -338,12 +338,12 @@ msgstr ""
|
|
338 |
"en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
|
339 |
"(primera columna) para más información"
|
340 |
|
341 |
-
#: ../../admin/wp-slimstat-admin.php:
|
342 |
#: ../../admin/view/wp-slimstat-db.php:47
|
343 |
msgid "Operating System"
|
344 |
msgstr "Sistema Operativo"
|
345 |
|
346 |
-
#: ../../admin/wp-slimstat-admin.php:
|
347 |
msgid ""
|
348 |
"Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
|
349 |
"\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
|
@@ -353,31 +353,31 @@ msgstr ""
|
|
353 |
"target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
|
354 |
"\">esta página del manual</a> para obtener más información"
|
355 |
|
356 |
-
#: ../../admin/wp-slimstat-admin.php:
|
357 |
#: ../../admin/view/wp-slimstat-db.php:48
|
358 |
msgid "Permalink"
|
359 |
msgstr "Enlace Permanente"
|
360 |
|
361 |
-
#: ../../admin/wp-slimstat-admin.php:
|
362 |
msgid "URL accessed on your site"
|
363 |
msgstr "URL visitada en su sitio"
|
364 |
|
365 |
-
#: ../../admin/wp-slimstat-admin.php:
|
366 |
#: ../../admin/view/wp-slimstat-db.php:50
|
367 |
msgid "Referer"
|
368 |
msgstr "Referido"
|
369 |
|
370 |
-
#: ../../admin/wp-slimstat-admin.php:
|
371 |
msgid "Complete address of the referrer page"
|
372 |
msgstr "Dirección completa de la página que refiere"
|
373 |
|
374 |
-
#: ../../admin/wp-slimstat-admin.php:
|
375 |
#: ../../admin/view/wp-slimstat-db.php:51
|
376 |
#, fuzzy
|
377 |
msgid "Visitor's Name"
|
378 |
msgstr "Visitantes"
|
379 |
|
380 |
-
#: ../../admin/wp-slimstat-admin.php:
|
381 |
msgid ""
|
382 |
"Visitors' names according to the cookie set by Wordpress after they leave a "
|
383 |
"comment"
|
@@ -385,27 +385,27 @@ msgstr ""
|
|
385 |
"Nombres de visitantes según la cookie establecida por Wordpress después de "
|
386 |
"dejar un comentario"
|
387 |
|
388 |
-
#: ../../admin/wp-slimstat-admin.php:
|
389 |
msgid "Advanced Filters"
|
390 |
msgstr "Filtros avanzados"
|
391 |
|
392 |
-
#: ../../admin/wp-slimstat-admin.php:
|
393 |
#: ../../admin/view/wp-slimstat-db.php:55
|
394 |
#, fuzzy
|
395 |
msgid "Browser Version"
|
396 |
msgstr "Versión del Navegador"
|
397 |
|
398 |
-
#: ../../admin/wp-slimstat-admin.php:
|
399 |
msgid "user agent version (9.0, 11, ...)"
|
400 |
msgstr "versión del agente de usuario (9,0, 11, ...)"
|
401 |
|
402 |
-
#: ../../admin/wp-slimstat-admin.php:
|
403 |
#: ../../admin/view/wp-slimstat-db.php:56
|
404 |
#, fuzzy
|
405 |
msgid "Browser Type"
|
406 |
msgstr "Navegador"
|
407 |
|
408 |
-
#: ../../admin/wp-slimstat-admin.php:
|
409 |
msgid ""
|
410 |
"1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
|
411 |
"all others"
|
@@ -413,22 +413,22 @@ msgstr ""
|
|
413 |
"1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
|
414 |
"sindicación, 0 =a todos los demás"
|
415 |
|
416 |
-
#: ../../admin/wp-slimstat-admin.php:
|
417 |
#: ../../admin/view/wp-slimstat-db.php:58
|
418 |
msgid "Color Depth"
|
419 |
msgstr "Profundidad de color"
|
420 |
|
421 |
-
#: ../../admin/wp-slimstat-admin.php:
|
422 |
msgid "visitor's screen's color depth (8, 16, 24, ...)"
|
423 |
msgstr "profundidad de colorde pantalla de visitante (8, 16, 24, ...)"
|
424 |
|
425 |
-
#: ../../admin/wp-slimstat-admin.php:
|
426 |
#: ../../admin/view/wp-slimstat-db.php:59
|
427 |
#, fuzzy
|
428 |
msgid "CSS Version"
|
429 |
msgstr "Versión de CSS"
|
430 |
|
431 |
-
#: ../../admin/wp-slimstat-admin.php:
|
432 |
msgid ""
|
433 |
"what CSS standard was supported by that browser (1, 2, 3 and other integer "
|
434 |
"values)"
|
@@ -436,13 +436,13 @@ msgstr ""
|
|
436 |
"cuál estándar CSS era soportado por ese navegador (1, 2, 3 y otros valores "
|
437 |
"enteros)"
|
438 |
|
439 |
-
#: ../../admin/wp-slimstat-admin.php:
|
440 |
#: ../../admin/view/wp-slimstat-db.php:60
|
441 |
#, fuzzy
|
442 |
msgid "Pageview Attributes"
|
443 |
msgstr "Paginas visitadas"
|
444 |
|
445 |
-
#: ../../admin/wp-slimstat-admin.php:
|
446 |
msgid ""
|
447 |
"this field is set to <em>[pre]</em> if the resource has been accessed "
|
448 |
"through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
|
@@ -452,36 +452,36 @@ msgstr ""
|
|
452 |
"través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
|
453 |
"Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
|
454 |
|
455 |
-
#: ../../admin/wp-slimstat-admin.php:
|
456 |
#: ../../admin/view/wp-slimstat-db.php:62
|
457 |
msgid "Post Author"
|
458 |
msgstr "Autor de la entrada(sección)"
|
459 |
|
460 |
-
#: ../../admin/wp-slimstat-admin.php:
|
461 |
msgid "author associated to that post/page when the resource was accessed"
|
462 |
msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
|
463 |
|
464 |
-
#: ../../admin/wp-slimstat-admin.php:
|
465 |
#: ../../admin/view/wp-slimstat-db.php:63
|
466 |
msgid "Post Category ID"
|
467 |
msgstr "ID de la entrada(sección) de la Categoria"
|
468 |
|
469 |
-
#: ../../admin/wp-slimstat-admin.php:
|
470 |
msgid "ID of the category/term associated to the resource, when available"
|
471 |
msgstr ""
|
472 |
"ID de la categoría / término asociado al recurso, cuando esté disponible"
|
473 |
|
474 |
-
#: ../../admin/wp-slimstat-admin.php:
|
475 |
msgid "visitor's originating IP address, if available"
|
476 |
msgstr "dirección IP de origen del visitante, si está disponible"
|
477 |
|
478 |
-
#: ../../admin/wp-slimstat-admin.php:
|
479 |
#: ../../admin/view/wp-slimstat-db.php:65
|
480 |
#, fuzzy
|
481 |
msgid "Resource Content Type"
|
482 |
msgstr "Contenidos Recientes"
|
483 |
|
484 |
-
#: ../../admin/wp-slimstat-admin.php:
|
485 |
msgid ""
|
486 |
"post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
|
487 |
"post_type_archive, tag, taxonomy, category, date, author, archive, search, "
|
@@ -495,22 +495,22 @@ msgstr ""
|
|
495 |
"wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
|
496 |
"manual para más información"
|
497 |
|
498 |
-
#: ../../admin/wp-slimstat-admin.php:
|
499 |
#: ../../admin/view/wp-slimstat-db.php:67
|
500 |
msgid "Screen Resolution"
|
501 |
msgstr "Resolución de Pantalla"
|
502 |
|
503 |
-
#: ../../admin/wp-slimstat-admin.php:
|
504 |
msgid "viewport width and height (1024x768, 800x600, ...)"
|
505 |
msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
|
506 |
|
507 |
-
#: ../../admin/wp-slimstat-admin.php:
|
508 |
#: ../../admin/view/wp-slimstat-db.php:68
|
509 |
#, fuzzy
|
510 |
msgid "Visit ID"
|
511 |
msgstr "Visitas"
|
512 |
|
513 |
-
#: ../../admin/wp-slimstat-admin.php:
|
514 |
msgid ""
|
515 |
"generally used in conjunction with <em>is not empty</em>, identifies human "
|
516 |
"visitors"
|
@@ -518,11 +518,11 @@ msgstr ""
|
|
518 |
"se utiliza generalmente en conjunción con <em> no está vacío </em>, "
|
519 |
"identifica los visitantes humanos"
|
520 |
|
521 |
-
#: ../../admin/wp-slimstat-admin.php:
|
522 |
msgid "Date Filters"
|
523 |
msgstr "Filtros de fecha"
|
524 |
|
525 |
-
#: ../../admin/wp-slimstat-admin.php:
|
526 |
msgid ""
|
527 |
"you can specify the timeframe by entering a number in the <em>interval</em> "
|
528 |
"field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
|
@@ -533,11 +533,11 @@ msgstr ""
|
|
533 |
"(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
|
534 |
"año a la fecha)"
|
535 |
|
536 |
-
#: ../../admin/wp-slimstat-admin.php:
|
537 |
msgid "SERP Position"
|
538 |
msgstr "Posición SERP"
|
539 |
|
540 |
-
#: ../../admin/wp-slimstat-admin.php:
|
541 |
msgid ""
|
542 |
"set the filter to Referer contains cd=N&, where N is the position you are "
|
543 |
"looking for"
|
@@ -545,9 +545,10 @@ msgstr ""
|
|
545 |
"configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
|
546 |
"usted está buscando"
|
547 |
|
548 |
-
#: ../../admin/wp-slimstat-admin.php:
|
|
|
549 |
msgid ""
|
550 |
-
"
|
551 |
"getused.to.it/\">WP SlimStat</a>."
|
552 |
msgstr ""
|
553 |
"Y para mantener un ojo en sus visitantes con <a href=\"http://slimstat."
|
@@ -628,9 +629,8 @@ msgid "Enable Tracking"
|
|
628 |
msgstr "Activar Seguimiento"
|
629 |
|
630 |
#: ../../admin/config/index.php:21
|
631 |
-
|
632 |
-
"Turn the tracker on or off, but keep the reports accessible
|
633 |
-
"not have, if you just disabled the plugin)."
|
634 |
msgstr ""
|
635 |
"Activar el rastreador de encendido o apagado, pero conserve los informes "
|
636 |
"accesibles (que no tendría, si desactivó el plugin)."
|
@@ -928,12 +928,13 @@ msgid "Blacklist by IP Address"
|
|
928 |
msgstr "Direcciones IP Blacklist"
|
929 |
|
930 |
#: ../../admin/config/index.php:69
|
|
|
931 |
msgid ""
|
932 |
"List all the IP addresses you don't want to track, separated by commas. Each "
|
933 |
"network <strong>must</strong> be defined using the <a href='http://en."
|
934 |
"wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
|
935 |
-
"notation</a> (i.e. <em>192.168.0.0/24</em>).
|
936 |
-
"
|
937 |
msgstr ""
|
938 |
"Enlistar todas las direcciones IP que no desea seguir, separadas por comas. "
|
939 |
"Cada red <strong> debe </strong> ser definida usando el <a href='http://en."
|
@@ -1338,17 +1339,17 @@ msgstr "Sus tablas WP SLIMStat han sido convertidas correctamente a. InnoDB"
|
|
1338 |
msgid "records deleted from your database."
|
1339 |
msgstr "Registros eliminados de la base de datos."
|
1340 |
|
1341 |
-
#: ../../admin/config/maintenance.php:
|
1342 |
msgid "All the records were successfully deleted."
|
1343 |
msgstr "Todos los registros se han eliminado con éxito."
|
1344 |
|
1345 |
-
#: ../../admin/config/maintenance.php:
|
1346 |
msgid "Your reports were successfully restored to their default arrangement."
|
1347 |
msgstr ""
|
1348 |
"Sus informes fueron restaurados con éxito a su disposición de forma "
|
1349 |
"predeterminada."
|
1350 |
|
1351 |
-
#: ../../admin/config/maintenance.php:
|
1352 |
msgid ""
|
1353 |
"Congrats! WP SlimStat is now optimized for <a href=\"http://www.youtube.com/"
|
1354 |
"watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
|
@@ -1356,7 +1357,7 @@ msgstr ""
|
|
1356 |
"¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
|
1357 |
"youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
|
1358 |
|
1359 |
-
#: ../../admin/config/maintenance.php:
|
1360 |
msgid ""
|
1361 |
"Indexing has been successfully disabled. Enjoy the extra database space you "
|
1362 |
"just gained!"
|
@@ -1364,107 +1365,107 @@ msgstr ""
|
|
1364 |
"Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
|
1365 |
"datos adicional ¡que acaba de ganar!"
|
1366 |
|
1367 |
-
#: ../../admin/config/maintenance.php:
|
1368 |
msgid "Database Information"
|
1369 |
msgstr "Información Base de datos"
|
1370 |
|
1371 |
-
#: ../../admin/config/maintenance.php:
|
1372 |
#, fuzzy
|
1373 |
msgid "Engine"
|
1374 |
msgstr "Motores de Búsqueda"
|
1375 |
|
1376 |
-
#: ../../admin/config/maintenance.php:
|
1377 |
msgid "switch to InnoDB"
|
1378 |
msgstr "cambiar a InnoDB"
|
1379 |
|
1380 |
-
#: ../../admin/config/maintenance.php:
|
1381 |
#, fuzzy
|
1382 |
msgid "records"
|
1383 |
msgstr "Palabras clave"
|
1384 |
|
1385 |
-
#: ../../admin/config/maintenance.php:
|
1386 |
msgid "Data Maintenance"
|
1387 |
msgstr "Mantenimiento de Datos"
|
1388 |
|
1389 |
-
#: ../../admin/config/maintenance.php:
|
1390 |
#, fuzzy
|
1391 |
msgid "Delete pageviews where"
|
1392 |
msgstr "Filtrar páginas visitadas dondé:"
|
1393 |
|
1394 |
-
#: ../../admin/config/maintenance.php:
|
1395 |
msgid "equals"
|
1396 |
msgstr "es igual a"
|
1397 |
|
1398 |
-
#: ../../admin/config/maintenance.php:
|
1399 |
msgid "is not equal to"
|
1400 |
msgstr "no es igual a"
|
1401 |
|
1402 |
-
#: ../../admin/config/maintenance.php:
|
1403 |
#, fuzzy
|
1404 |
msgid "contains"
|
1405 |
msgstr "Contiene"
|
1406 |
|
1407 |
-
#: ../../admin/config/maintenance.php:
|
1408 |
#, fuzzy
|
1409 |
msgid "does not contain"
|
1410 |
msgstr "No contiene"
|
1411 |
|
1412 |
-
#: ../../admin/config/maintenance.php:
|
1413 |
#, fuzzy
|
1414 |
msgid "starts with"
|
1415 |
msgstr "Empieza por"
|
1416 |
|
1417 |
-
#: ../../admin/config/maintenance.php:
|
1418 |
#, fuzzy
|
1419 |
msgid "ends with"
|
1420 |
msgstr "Acaba en"
|
1421 |
|
1422 |
-
#: ../../admin/config/maintenance.php:
|
1423 |
msgid "sounds like"
|
1424 |
msgstr "suena como"
|
1425 |
|
1426 |
-
#: ../../admin/config/maintenance.php:
|
1427 |
msgid "is greater than"
|
1428 |
msgstr "es mayor que"
|
1429 |
|
1430 |
-
#: ../../admin/config/maintenance.php:
|
1431 |
msgid "is less than"
|
1432 |
msgstr "es menor que"
|
1433 |
|
1434 |
-
#: ../../admin/config/maintenance.php:
|
1435 |
msgid "matches"
|
1436 |
msgstr "coincide"
|
1437 |
|
1438 |
-
#: ../../admin/config/maintenance.php:
|
1439 |
#, fuzzy
|
1440 |
msgid "does not match"
|
1441 |
msgstr "No contiene"
|
1442 |
|
1443 |
-
#: ../../admin/config/maintenance.php:
|
1444 |
msgid "is empty"
|
1445 |
msgstr "está vacío"
|
1446 |
|
1447 |
-
#: ../../admin/config/maintenance.php:
|
1448 |
msgid "is not empty"
|
1449 |
msgstr "no está vacío"
|
1450 |
|
1451 |
-
#: ../../admin/config/maintenance.php:
|
1452 |
#: ../../admin/view/index.php:78
|
1453 |
msgid "Apply"
|
1454 |
msgstr "Aplicar"
|
1455 |
|
1456 |
-
#: ../../admin/config/maintenance.php:
|
1457 |
msgid ""
|
1458 |
"Are you sure you want to PERMANENTLY delete these records from your database?"
|
1459 |
msgstr ""
|
1460 |
"¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
|
1461 |
"de datos?"
|
1462 |
|
1463 |
-
#: ../../admin/config/maintenance.php:
|
1464 |
msgid "Empty Database"
|
1465 |
msgstr "Base de datos vacía"
|
1466 |
|
1467 |
-
#: ../../admin/config/maintenance.php:
|
1468 |
msgid ""
|
1469 |
"Are you sure you want to PERMANENTLY DELETE ALL the records from your "
|
1470 |
"database?"
|
@@ -1472,12 +1473,12 @@ msgstr ""
|
|
1472 |
"¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
|
1473 |
"base de datos?"
|
1474 |
|
1475 |
-
#: ../../admin/config/maintenance.php:
|
1476 |
#, fuzzy
|
1477 |
msgid "Delete All Pageviews"
|
1478 |
msgstr "Paginas visitadas"
|
1479 |
|
1480 |
-
#: ../../admin/config/maintenance.php:
|
1481 |
msgid ""
|
1482 |
"Erase all the information collected so far by WP SlimStat. This operation "
|
1483 |
"<strong>does not</strong> reset your settings."
|
@@ -1485,23 +1486,23 @@ msgstr ""
|
|
1485 |
"Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
|
1486 |
"<strong> operación no </strong> restablece la configuración."
|
1487 |
|
1488 |
-
#: ../../admin/config/maintenance.php:
|
1489 |
#, fuzzy
|
1490 |
msgid "Reset Reports"
|
1491 |
msgstr "Informes Personalizados"
|
1492 |
|
1493 |
-
#: ../../admin/config/maintenance.php:
|
1494 |
msgid ""
|
1495 |
"Are you sure you want to restore the default arrangement of your reports?"
|
1496 |
msgstr ""
|
1497 |
"¿Está seguro de que desea restaurar la disposición por defecto de sus "
|
1498 |
"informes?"
|
1499 |
|
1500 |
-
#: ../../admin/config/maintenance.php:
|
1501 |
msgid "No Panic Button"
|
1502 |
msgstr "Botón No Pánico"
|
1503 |
|
1504 |
-
#: ../../admin/config/maintenance.php:
|
1505 |
msgid ""
|
1506 |
"Reset the default arrangement of your reports. Helpful when, for some "
|
1507 |
"reason, reports disappear from your panels."
|
@@ -1509,15 +1510,15 @@ msgstr ""
|
|
1509 |
"Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
|
1510 |
"razón, los informes desaparecen de sus paneles."
|
1511 |
|
1512 |
-
#: ../../admin/config/maintenance.php:
|
1513 |
msgid "Performance"
|
1514 |
msgstr "Rendimiento"
|
1515 |
|
1516 |
-
#: ../../admin/config/maintenance.php:
|
1517 |
msgid "Improve Performance"
|
1518 |
msgstr "Mejorar el rendimiento"
|
1519 |
|
1520 |
-
#: ../../admin/config/maintenance.php:
|
1521 |
msgid ""
|
1522 |
"Please note that you will need about 30% more DB space to store the extra "
|
1523 |
"information required."
|
@@ -1525,11 +1526,11 @@ msgstr ""
|
|
1525 |
"Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
|
1526 |
"almacenar la información adicional que se requiere."
|
1527 |
|
1528 |
-
#: ../../admin/config/maintenance.php:
|
1529 |
msgid "Save DB Space"
|
1530 |
msgstr "Guardar Espacio BD"
|
1531 |
|
1532 |
-
#: ../../admin/config/maintenance.php:
|
1533 |
msgid ""
|
1534 |
"Please note that by removing table indexes, WP SlimStat's performance will "
|
1535 |
"be affected."
|
@@ -1537,11 +1538,11 @@ msgstr ""
|
|
1537 |
"Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
|
1538 |
"SLIMStat se verá afectado."
|
1539 |
|
1540 |
-
#: ../../admin/config/maintenance.php:
|
1541 |
msgid "Import and Export"
|
1542 |
msgstr "Importar y Exportar"
|
1543 |
|
1544 |
-
#: ../../admin/config/maintenance.php:
|
1545 |
msgid ""
|
1546 |
"Here below you can find the current configuration string for WP SlimStat. "
|
1547 |
"You can update your settings by pasting a new string here below and clicking "
|
@@ -1551,11 +1552,11 @@ msgstr ""
|
|
1551 |
"SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
|
1552 |
"abajo y haciendo clic en Importar."
|
1553 |
|
1554 |
-
#: ../../admin/config/maintenance.php:
|
1555 |
msgid "Import"
|
1556 |
msgstr "Importar"
|
1557 |
|
1558 |
-
#: ../../admin/config/maintenance.php:
|
1559 |
msgid "Are you sure you want to OVERWRITE your current settings?"
|
1560 |
msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
|
1561 |
|
@@ -5264,6 +5265,7 @@ msgid "Trackbacks"
|
|
5264 |
msgstr "Trackbacks"
|
5265 |
|
5266 |
#: ../../admin/view/wp-slimstat-reports.php:1073
|
|
|
5267 |
msgid "Longest Post (ID)"
|
5268 |
msgstr "Visita más larga"
|
5269 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: WP SlimStat\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2014-04-07 21:32-0500\n"
|
6 |
+
"PO-Revision-Date: 2014-04-07 21:32-0500\n"
|
7 |
"Last-Translator: Get Used To IT <support@getused.to.it>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: es_ES\n"
|
16 |
"X-Generator: Poedit 1.6.3\n"
|
17 |
"X-Poedit-SearchPath-0: ../..\n"
|
18 |
|
19 |
+
#: ../../wp-slimstat.php:1276 ../../admin/wp-slimstat-admin.php:438
|
20 |
#: ../../admin/config/index.php:58 ../../admin/view/wp-slimstat-reports.php:28
|
21 |
msgid "Activity Log"
|
22 |
msgstr "Bitácora de actividades"
|
23 |
|
24 |
+
#: ../../wp-slimstat.php:1277 ../../admin/wp-slimstat-admin.php:439
|
25 |
+
#: ../../admin/wp-slimstat-admin.php:456
|
26 |
#: ../../admin/view/wp-slimstat-reports.php:29
|
27 |
msgid "Overview"
|
28 |
msgstr "Visión general"
|
29 |
|
30 |
+
#: ../../wp-slimstat.php:1278 ../../admin/wp-slimstat-admin.php:440
|
31 |
+
#: ../../admin/wp-slimstat-admin.php:457
|
32 |
#: ../../admin/view/wp-slimstat-reports.php:30
|
33 |
msgid "Visitors"
|
34 |
msgstr "Visitantes"
|
35 |
|
36 |
+
#: ../../wp-slimstat.php:1279 ../../admin/wp-slimstat-admin.php:441
|
37 |
+
#: ../../admin/wp-slimstat-admin.php:458
|
38 |
#: ../../admin/view/wp-slimstat-reports.php:31
|
39 |
msgid "Content"
|
40 |
msgstr "Contenido"
|
41 |
|
42 |
+
#: ../../wp-slimstat.php:1280 ../../admin/wp-slimstat-admin.php:442
|
43 |
+
#: ../../admin/wp-slimstat-admin.php:459 ../../admin/view/index.php:169
|
44 |
#: ../../admin/view/wp-slimstat-reports.php:32
|
45 |
msgid "Traffic Sources"
|
46 |
msgstr "Origen del Tráfico"
|
47 |
|
48 |
+
#: ../../wp-slimstat.php:1281 ../../admin/wp-slimstat-admin.php:443
|
49 |
+
#: ../../admin/wp-slimstat-admin.php:460
|
50 |
#: ../../admin/view/wp-slimstat-reports.php:33
|
51 |
#: ../../admin/view/wp-slimstat-reports.php:101
|
52 |
msgid "World Map"
|
53 |
msgstr "Mapa del Mundo"
|
54 |
|
55 |
+
#: ../../wp-slimstat.php:1282 ../../admin/wp-slimstat-admin.php:444
|
56 |
+
#: ../../admin/wp-slimstat-admin.php:461
|
57 |
#: ../../admin/view/wp-slimstat-reports.php:34
|
58 |
msgid "Custom Reports"
|
59 |
msgstr "Informes Personalizados"
|
60 |
|
61 |
+
#: ../../wp-slimstat.php:1283 ../../admin/wp-slimstat-admin.php:445
|
62 |
+
#: ../../admin/wp-slimstat-admin.php:462 ../../admin/config/addons.php:29
|
63 |
#: ../../admin/config/index.php:9 ../../admin/config/index.php:229
|
64 |
msgid "Add-ons"
|
65 |
msgstr "Añadidos"
|
66 |
|
67 |
+
#: ../../wp-slimstat.php:1286 ../../admin/wp-slimstat-admin.php:491
|
68 |
+
#: ../../admin/wp-slimstat-admin.php:494 ../../admin/wp-slimstat-admin.php:538
|
69 |
+
#: ../../admin/wp-slimstat-admin.php:541 ../../admin/config/index.php:14
|
70 |
#: ../../admin/config/index.php:135
|
71 |
#, fuzzy
|
72 |
msgid "Settings"
|
73 |
msgstr "Seleccionar orden"
|
74 |
|
75 |
+
#: ../../admin/wp-slimstat-admin.php:437 ../../admin/wp-slimstat-admin.php:449
|
76 |
+
#: ../../admin/wp-slimstat-admin.php:452
|
77 |
#, fuzzy
|
78 |
msgid "SlimStat"
|
79 |
msgstr "Acerca de WP-SlimStat"
|
80 |
|
81 |
+
#: ../../admin/wp-slimstat-admin.php:555
|
82 |
msgid "Pageviews in the last 365 days"
|
83 |
msgstr "Visitas a la página en los últimos 365 días"
|
84 |
|
85 |
+
#: ../../admin/wp-slimstat-admin.php:579
|
86 |
msgid "Show on screen"
|
87 |
msgstr "Mostrar en pantalla"
|
88 |
|
89 |
+
#: ../../admin/wp-slimstat-admin.php:607
|
90 |
msgid "Hide this notice"
|
91 |
msgstr "Esconder esta notificación"
|
92 |
|
93 |
+
#: ../../admin/wp-slimstat-admin.php:634
|
94 |
msgid "There was an error updating the following options:"
|
95 |
msgstr "Hubo un error al actualizar las siguientes opciones:"
|
96 |
|
97 |
+
#: ../../admin/wp-slimstat-admin.php:637
|
98 |
#, fuzzy
|
99 |
msgid "Your changes have been saved."
|
100 |
msgstr "Sus ajustes se han actualizado correctamente."
|
101 |
|
102 |
+
#: ../../admin/wp-slimstat-admin.php:660
|
103 |
msgid "Save Changes"
|
104 |
msgstr "Guardar los cambios"
|
105 |
|
106 |
+
#: ../../admin/wp-slimstat-admin.php:681
|
107 |
msgid "Yes"
|
108 |
msgstr "Si"
|
109 |
|
110 |
+
#: ../../admin/wp-slimstat-admin.php:682
|
111 |
#: ../../admin/view/wp-slimstat-reports.php:762
|
112 |
msgid "No"
|
113 |
msgstr "No"
|
114 |
|
115 |
+
#: ../../admin/wp-slimstat-admin.php:722
|
116 |
msgid ""
|
117 |
"WARNING: a misconfigured setting and/or server environment is preventing WP "
|
118 |
"SlimStat from properly tracking your visitors. Please <a target=\"_blank\" "
|
124 |
"Por favor, <a target=\"_blank\" href=\"http://wordpress.org/extend/plugins/"
|
125 |
"wp-slimstat/faq/\">revise las FAQs</a> para obtener más información."
|
126 |
|
127 |
+
#: ../../admin/wp-slimstat-admin.php:742
|
128 |
msgid "Definitions"
|
129 |
msgstr "Definiciones"
|
130 |
|
131 |
+
#: ../../admin/wp-slimstat-admin.php:745
|
132 |
#, fuzzy
|
133 |
msgid "Pageview"
|
134 |
msgstr "Paginas visitadas"
|
135 |
|
136 |
+
#: ../../admin/wp-slimstat-admin.php:745
|
137 |
msgid ""
|
138 |
"A request to load a single HTML file (\"page\"). This should be contrasted "
|
139 |
"with a \"hit\", which refers to a request for any file from a web server. WP "
|
144 |
"archivo desde un servidor web. WP SLIMStat registra una visita de página "
|
145 |
"cada vez que el código de seguimiento se ejecuta"
|
146 |
|
147 |
+
#: ../../admin/wp-slimstat-admin.php:746
|
148 |
#, fuzzy
|
149 |
msgid "(Human) Visit"
|
150 |
msgstr "Visitas humanas"
|
151 |
|
152 |
+
#: ../../admin/wp-slimstat-admin.php:746
|
153 |
msgid ""
|
154 |
"A period of interaction between a visitor's browser and your website, ending "
|
155 |
"when the browser is closed or when the user has been inactive on that site "
|
159 |
"termina cuando se cierra el navegador o cuando el usuario ha estado inactivo "
|
160 |
"en ese sitio durante 30 minutos"
|
161 |
|
162 |
+
#: ../../admin/wp-slimstat-admin.php:747 ../../admin/view/index.php:144
|
163 |
#: ../../admin/view/right-now.php:151
|
164 |
#, fuzzy
|
165 |
msgid "Known Visitor"
|
166 |
msgstr "Palabras clave recientes"
|
167 |
|
168 |
+
#: ../../admin/wp-slimstat-admin.php:747
|
169 |
msgid ""
|
170 |
"Any user who has left a comment on your blog, and is thus identified by "
|
171 |
"Wordpress as a returning visitor"
|
173 |
"Todo usuario que haya dejado un comentario en su blog, por lo que es "
|
174 |
"identificado por Wordpress como un visitante que regresó"
|
175 |
|
176 |
+
#: ../../admin/wp-slimstat-admin.php:748
|
177 |
#, fuzzy
|
178 |
msgid "Unique IP"
|
179 |
msgstr "IPs Unicas"
|
180 |
|
181 |
+
#: ../../admin/wp-slimstat-admin.php:748
|
182 |
msgid ""
|
183 |
"Used to differentiate between multiple requests to download a file from one "
|
184 |
"internet address (IP) and requests originating from many distinct addresses; "
|
191 |
"dirección de Internet de donde vino una visita de página, es útil, pero no "
|
192 |
"es perfecta"
|
193 |
|
194 |
+
#: ../../admin/wp-slimstat-admin.php:749 ../../admin/wp-slimstat-admin.php:791
|
195 |
#: ../../admin/view/right-now.php:101 ../../admin/view/wp-slimstat-db.php:64
|
196 |
msgid "Originating IP"
|
197 |
msgstr "IP de Origen"
|
198 |
|
199 |
+
#: ../../admin/wp-slimstat-admin.php:749
|
200 |
msgid ""
|
201 |
"the originating IP address of a client connecting to a web server through an "
|
202 |
"HTTP proxy or load balancer"
|
204 |
"dirección IP de origen de un cliente que se conecta a un servidor web a "
|
205 |
"través de un proxy HTTP o equilibrador de carga"
|
206 |
|
207 |
+
#: ../../admin/wp-slimstat-admin.php:750
|
208 |
#, fuzzy
|
209 |
msgid "Direct Traffic"
|
210 |
msgstr "Visita Directa"
|
211 |
|
212 |
+
#: ../../admin/wp-slimstat-admin.php:750
|
213 |
msgid ""
|
214 |
"All those people showing up to your Web site by typing in the URL of your "
|
215 |
"Web site coming or from a bookmark; some people also call this \"default "
|
219 |
"URL de su sitio web o que vienen de un favorito, algunas personas también "
|
220 |
"llaman a esto \"tráfico por defecto\" o \"tráfico ambiente\""
|
221 |
|
222 |
+
#: ../../admin/wp-slimstat-admin.php:751
|
223 |
#, fuzzy
|
224 |
msgid "Search Engine"
|
225 |
msgstr "Motores de Búsqueda"
|
226 |
|
227 |
+
#: ../../admin/wp-slimstat-admin.php:751
|
228 |
msgid ""
|
229 |
"Google, Yahoo, MSN, Ask, others; this bucket will include both your organic "
|
230 |
"as well as your paid (PPC/SEM) traffic, so be aware of that"
|
232 |
"Google, Yahoo, MSN, Ask, otros; este cubo incluirá tanto su tráfico "
|
233 |
"orgánico, así como por pago (PPC / SEM), así que tenga cuidado de que"
|
234 |
|
235 |
+
#: ../../admin/wp-slimstat-admin.php:752 ../../admin/wp-slimstat-admin.php:768
|
236 |
#: ../../admin/view/right-now.php:130 ../../admin/view/wp-slimstat-db.php:45
|
237 |
#, fuzzy
|
238 |
msgid "Search Terms"
|
239 |
msgstr "Principales Recursos"
|
240 |
|
241 |
+
#: ../../admin/wp-slimstat-admin.php:752 ../../admin/wp-slimstat-admin.php:768
|
242 |
msgid "Keywords used by your visitors to find your website on a search engine"
|
243 |
msgstr ""
|
244 |
"Las palabras clave utilizadas por los visitantes para encontrar su sitio web "
|
245 |
"en un buscador"
|
246 |
|
247 |
+
#: ../../admin/wp-slimstat-admin.php:753
|
248 |
msgid "SERP"
|
249 |
msgstr "SERP"
|
250 |
|
251 |
+
#: ../../admin/wp-slimstat-admin.php:753
|
252 |
msgid ""
|
253 |
"Short for search engine results page, the Web page that a search engine "
|
254 |
"returns with the results of its search. The value shown represents your rank "
|
259 |
"que se muestra representa su rango (o posición) dentro de esa lista de los "
|
260 |
"resultados"
|
261 |
|
262 |
+
#: ../../admin/wp-slimstat-admin.php:754
|
263 |
#: ../../admin/view/wp-slimstat-db.php:57
|
264 |
#, fuzzy
|
265 |
msgid "User Agent"
|
266 |
msgstr "Buscadores"
|
267 |
|
268 |
+
#: ../../admin/wp-slimstat-admin.php:754
|
269 |
msgid ""
|
270 |
"Any program used for accessing a website; this includes browsers, robots, "
|
271 |
"spiders and any other program that was used to retrieve information from the "
|
275 |
"navegadores, robots, arañas y cualquier otro programa que se utiliza para "
|
276 |
"recuperar información del sitio"
|
277 |
|
278 |
+
#: ../../admin/wp-slimstat-admin.php:755
|
279 |
#: ../../admin/view/wp-slimstat-db.php:61
|
280 |
#, fuzzy
|
281 |
msgid "Outbound Link"
|
282 |
msgstr "Enlaces Salientes Recientes"
|
283 |
|
284 |
+
#: ../../admin/wp-slimstat-admin.php:755
|
285 |
msgid ""
|
286 |
"A link from one domain to another is said to be outbound from its source "
|
287 |
"anchor and inbound to its target. This report lists all the links to other "
|
291 |
"de anclaje y de entrada a su objetivo. Este informe muestra todos los "
|
292 |
"enlaces a otros sitios web, seguidos por sus visitantes."
|
293 |
|
294 |
+
#: ../../admin/wp-slimstat-admin.php:762
|
295 |
msgid "Basic Filters"
|
296 |
msgstr "Filtros básicos"
|
297 |
|
298 |
+
#: ../../admin/wp-slimstat-admin.php:765
|
299 |
#: ../../admin/view/wp-slimstat-db.php:42
|
300 |
msgid "Browser"
|
301 |
msgstr "Navegador"
|
302 |
|
303 |
+
#: ../../admin/wp-slimstat-admin.php:765
|
304 |
msgid "User agent (Firefox, Chrome, ...)"
|
305 |
msgstr "Agente usuario(Firefox, Chrome, ...)"
|
306 |
|
307 |
+
#: ../../admin/wp-slimstat-admin.php:766
|
308 |
#: ../../admin/view/wp-slimstat-db.php:43
|
309 |
#: ../../admin/view/wp-slimstat-reports.php:483
|
310 |
msgid "Country Code"
|
311 |
msgstr "Código de Pais"
|
312 |
|
313 |
+
#: ../../admin/wp-slimstat-admin.php:766
|
314 |
msgid "2-letter code (us, ru, de, it, ...)"
|
315 |
msgstr "código de 2 letras (eu, ru, de, it, ...)"
|
316 |
|
317 |
+
#: ../../admin/wp-slimstat-admin.php:767
|
318 |
msgid "IP"
|
319 |
msgstr "IP"
|
320 |
|
321 |
+
#: ../../admin/wp-slimstat-admin.php:767
|
322 |
msgid "Visitor's public IP address"
|
323 |
msgstr "Dirección IP pública del visitante"
|
324 |
|
325 |
+
#: ../../admin/wp-slimstat-admin.php:769
|
326 |
#: ../../admin/view/wp-slimstat-db.php:46
|
327 |
#: ../../admin/view/wp-slimstat-reports.php:495
|
328 |
msgid "Language Code"
|
329 |
msgstr "Código de Idioma"
|
330 |
|
331 |
+
#: ../../admin/wp-slimstat-admin.php:769
|
332 |
msgid ""
|
333 |
"Please refer to this <a target=\"_blank\" href=\"http://msdn.microsoft.com/"
|
334 |
"en-us/library/ee825488(v=cs.20).aspx\">language culture page</a> (first "
|
338 |
"en-us/library/ee825488(v=cs.20).aspx\">págna de cultura del lenguaje</a> "
|
339 |
"(primera columna) para más información"
|
340 |
|
341 |
+
#: ../../admin/wp-slimstat-admin.php:770
|
342 |
#: ../../admin/view/wp-slimstat-db.php:47
|
343 |
msgid "Operating System"
|
344 |
msgstr "Sistema Operativo"
|
345 |
|
346 |
+
#: ../../admin/wp-slimstat-admin.php:770
|
347 |
msgid ""
|
348 |
"Accepts identifiers like win7, win98, macosx, ...; please refer to <a target="
|
349 |
"\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php\">this "
|
353 |
"target=\"_blank\" href=\"http://php.net/manual/en/function.get-browser.php"
|
354 |
"\">esta página del manual</a> para obtener más información"
|
355 |
|
356 |
+
#: ../../admin/wp-slimstat-admin.php:771
|
357 |
#: ../../admin/view/wp-slimstat-db.php:48
|
358 |
msgid "Permalink"
|
359 |
msgstr "Enlace Permanente"
|
360 |
|
361 |
+
#: ../../admin/wp-slimstat-admin.php:771
|
362 |
msgid "URL accessed on your site"
|
363 |
msgstr "URL visitada en su sitio"
|
364 |
|
365 |
+
#: ../../admin/wp-slimstat-admin.php:772
|
366 |
#: ../../admin/view/wp-slimstat-db.php:50
|
367 |
msgid "Referer"
|
368 |
msgstr "Referido"
|
369 |
|
370 |
+
#: ../../admin/wp-slimstat-admin.php:772
|
371 |
msgid "Complete address of the referrer page"
|
372 |
msgstr "Dirección completa de la página que refiere"
|
373 |
|
374 |
+
#: ../../admin/wp-slimstat-admin.php:773
|
375 |
#: ../../admin/view/wp-slimstat-db.php:51
|
376 |
#, fuzzy
|
377 |
msgid "Visitor's Name"
|
378 |
msgstr "Visitantes"
|
379 |
|
380 |
+
#: ../../admin/wp-slimstat-admin.php:773
|
381 |
msgid ""
|
382 |
"Visitors' names according to the cookie set by Wordpress after they leave a "
|
383 |
"comment"
|
385 |
"Nombres de visitantes según la cookie establecida por Wordpress después de "
|
386 |
"dejar un comentario"
|
387 |
|
388 |
+
#: ../../admin/wp-slimstat-admin.php:781
|
389 |
msgid "Advanced Filters"
|
390 |
msgstr "Filtros avanzados"
|
391 |
|
392 |
+
#: ../../admin/wp-slimstat-admin.php:784
|
393 |
#: ../../admin/view/wp-slimstat-db.php:55
|
394 |
#, fuzzy
|
395 |
msgid "Browser Version"
|
396 |
msgstr "Versión del Navegador"
|
397 |
|
398 |
+
#: ../../admin/wp-slimstat-admin.php:784
|
399 |
msgid "user agent version (9.0, 11, ...)"
|
400 |
msgstr "versión del agente de usuario (9,0, 11, ...)"
|
401 |
|
402 |
+
#: ../../admin/wp-slimstat-admin.php:785
|
403 |
#: ../../admin/view/wp-slimstat-db.php:56
|
404 |
#, fuzzy
|
405 |
msgid "Browser Type"
|
406 |
msgstr "Navegador"
|
407 |
|
408 |
+
#: ../../admin/wp-slimstat-admin.php:785
|
409 |
msgid ""
|
410 |
"1 = search engine crawler, 2 = mobile device, 3 = syndication reader, 0 = "
|
411 |
"all others"
|
413 |
"1 = oruga del motor de búsqueda, 2 = dispositivo móvil, 3 = lector de "
|
414 |
"sindicación, 0 =a todos los demás"
|
415 |
|
416 |
+
#: ../../admin/wp-slimstat-admin.php:786
|
417 |
#: ../../admin/view/wp-slimstat-db.php:58
|
418 |
msgid "Color Depth"
|
419 |
msgstr "Profundidad de color"
|
420 |
|
421 |
+
#: ../../admin/wp-slimstat-admin.php:786
|
422 |
msgid "visitor's screen's color depth (8, 16, 24, ...)"
|
423 |
msgstr "profundidad de colorde pantalla de visitante (8, 16, 24, ...)"
|
424 |
|
425 |
+
#: ../../admin/wp-slimstat-admin.php:787
|
426 |
#: ../../admin/view/wp-slimstat-db.php:59
|
427 |
#, fuzzy
|
428 |
msgid "CSS Version"
|
429 |
msgstr "Versión de CSS"
|
430 |
|
431 |
+
#: ../../admin/wp-slimstat-admin.php:787
|
432 |
msgid ""
|
433 |
"what CSS standard was supported by that browser (1, 2, 3 and other integer "
|
434 |
"values)"
|
436 |
"cuál estándar CSS era soportado por ese navegador (1, 2, 3 y otros valores "
|
437 |
"enteros)"
|
438 |
|
439 |
+
#: ../../admin/wp-slimstat-admin.php:788
|
440 |
#: ../../admin/view/wp-slimstat-db.php:60
|
441 |
#, fuzzy
|
442 |
msgid "Pageview Attributes"
|
443 |
msgstr "Paginas visitadas"
|
444 |
|
445 |
+
#: ../../admin/wp-slimstat-admin.php:788
|
446 |
msgid ""
|
447 |
"this field is set to <em>[pre]</em> if the resource has been accessed "
|
448 |
"through <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
|
452 |
"través de <a target=\"_blank\" href=\"https://developer.mozilla.org/en/"
|
453 |
"Link_prefetching_FAQ\">Preecaptura de Enlaces</a> o técnicas similares"
|
454 |
|
455 |
+
#: ../../admin/wp-slimstat-admin.php:789
|
456 |
#: ../../admin/view/wp-slimstat-db.php:62
|
457 |
msgid "Post Author"
|
458 |
msgstr "Autor de la entrada(sección)"
|
459 |
|
460 |
+
#: ../../admin/wp-slimstat-admin.php:789
|
461 |
msgid "author associated to that post/page when the resource was accessed"
|
462 |
msgstr "autor asociado a esa publicación/página cuando se accedió al recurso"
|
463 |
|
464 |
+
#: ../../admin/wp-slimstat-admin.php:790
|
465 |
#: ../../admin/view/wp-slimstat-db.php:63
|
466 |
msgid "Post Category ID"
|
467 |
msgstr "ID de la entrada(sección) de la Categoria"
|
468 |
|
469 |
+
#: ../../admin/wp-slimstat-admin.php:790
|
470 |
msgid "ID of the category/term associated to the resource, when available"
|
471 |
msgstr ""
|
472 |
"ID de la categoría / término asociado al recurso, cuando esté disponible"
|
473 |
|
474 |
+
#: ../../admin/wp-slimstat-admin.php:791
|
475 |
msgid "visitor's originating IP address, if available"
|
476 |
msgstr "dirección IP de origen del visitante, si está disponible"
|
477 |
|
478 |
+
#: ../../admin/wp-slimstat-admin.php:792
|
479 |
#: ../../admin/view/wp-slimstat-db.php:65
|
480 |
#, fuzzy
|
481 |
msgid "Resource Content Type"
|
482 |
msgstr "Contenidos Recientes"
|
483 |
|
484 |
+
#: ../../admin/wp-slimstat-admin.php:792
|
485 |
msgid ""
|
486 |
"post, page, cpt:<em>custom-post-type</em>, attachment, singular, "
|
487 |
"post_type_archive, tag, taxonomy, category, date, author, archive, search, "
|
495 |
"wordpress.org/Conditional_Tags\">Etiquetas condicionales</a> página del "
|
496 |
"manual para más información"
|
497 |
|
498 |
+
#: ../../admin/wp-slimstat-admin.php:793
|
499 |
#: ../../admin/view/wp-slimstat-db.php:67
|
500 |
msgid "Screen Resolution"
|
501 |
msgstr "Resolución de Pantalla"
|
502 |
|
503 |
+
#: ../../admin/wp-slimstat-admin.php:793
|
504 |
msgid "viewport width and height (1024x768, 800x600, ...)"
|
505 |
msgstr "ancho de vista y altura (1024x768, 800x600 , ...)"
|
506 |
|
507 |
+
#: ../../admin/wp-slimstat-admin.php:794
|
508 |
#: ../../admin/view/wp-slimstat-db.php:68
|
509 |
#, fuzzy
|
510 |
msgid "Visit ID"
|
511 |
msgstr "Visitas"
|
512 |
|
513 |
+
#: ../../admin/wp-slimstat-admin.php:794
|
514 |
msgid ""
|
515 |
"generally used in conjunction with <em>is not empty</em>, identifies human "
|
516 |
"visitors"
|
518 |
"se utiliza generalmente en conjunción con <em> no está vacío </em>, "
|
519 |
"identifica los visitantes humanos"
|
520 |
|
521 |
+
#: ../../admin/wp-slimstat-admin.php:795
|
522 |
msgid "Date Filters"
|
523 |
msgstr "Filtros de fecha"
|
524 |
|
525 |
+
#: ../../admin/wp-slimstat-admin.php:795
|
526 |
msgid ""
|
527 |
"you can specify the timeframe by entering a number in the <em>interval</em> "
|
528 |
"field; use -1 to indicate <em>to date</em> (i.e., day=1, month=1, "
|
533 |
"(es decir, día=1, mes=1, año=blank, intervalo=-1 establecerá un filtro de "
|
534 |
"año a la fecha)"
|
535 |
|
536 |
+
#: ../../admin/wp-slimstat-admin.php:796
|
537 |
msgid "SERP Position"
|
538 |
msgstr "Posición SERP"
|
539 |
|
540 |
+
#: ../../admin/wp-slimstat-admin.php:796
|
541 |
msgid ""
|
542 |
"set the filter to Referer contains cd=N&, where N is the position you are "
|
543 |
"looking for"
|
545 |
"configurar el filtro para Referer contiene cd=N&, donde N es la posición que "
|
546 |
"usted está buscando"
|
547 |
|
548 |
+
#: ../../admin/wp-slimstat-admin.php:805
|
549 |
+
#, fuzzy
|
550 |
msgid ""
|
551 |
+
"And for keeping an eye on your visitors with <a href=\"http://slimstat."
|
552 |
"getused.to.it/\">WP SlimStat</a>."
|
553 |
msgstr ""
|
554 |
"Y para mantener un ojo en sus visitantes con <a href=\"http://slimstat."
|
629 |
msgstr "Activar Seguimiento"
|
630 |
|
631 |
#: ../../admin/config/index.php:21
|
632 |
+
#, fuzzy
|
633 |
+
msgid "Turn the tracker on or off, but keep the reports accessible."
|
|
|
634 |
msgstr ""
|
635 |
"Activar el rastreador de encendido o apagado, pero conserve los informes "
|
636 |
"accesibles (que no tendría, si desactivó el plugin)."
|
928 |
msgstr "Direcciones IP Blacklist"
|
929 |
|
930 |
#: ../../admin/config/index.php:69
|
931 |
+
#, fuzzy
|
932 |
msgid ""
|
933 |
"List all the IP addresses you don't want to track, separated by commas. Each "
|
934 |
"network <strong>must</strong> be defined using the <a href='http://en."
|
935 |
"wikipedia.org/wiki/Classless_Inter-Domain_Routing' target='_blank'>CIDR "
|
936 |
+
"notation</a> (i.e. <em>192.168.0.0/24</em>). This filter applies both to the "
|
937 |
+
"public IP and the originating IP, if available."
|
938 |
msgstr ""
|
939 |
"Enlistar todas las direcciones IP que no desea seguir, separadas por comas. "
|
940 |
"Cada red <strong> debe </strong> ser definida usando el <a href='http://en."
|
1339 |
msgid "records deleted from your database."
|
1340 |
msgstr "Registros eliminados de la base de datos."
|
1341 |
|
1342 |
+
#: ../../admin/config/maintenance.php:35
|
1343 |
msgid "All the records were successfully deleted."
|
1344 |
msgstr "Todos los registros se han eliminado con éxito."
|
1345 |
|
1346 |
+
#: ../../admin/config/maintenance.php:39
|
1347 |
msgid "Your reports were successfully restored to their default arrangement."
|
1348 |
msgstr ""
|
1349 |
"Sus informes fueron restaurados con éxito a su disposición de forma "
|
1350 |
"predeterminada."
|
1351 |
|
1352 |
+
#: ../../admin/config/maintenance.php:46
|
1353 |
msgid ""
|
1354 |
"Congrats! WP SlimStat is now optimized for <a href=\"http://www.youtube.com/"
|
1355 |
"watch?v=ygE01sOhzz0\" target=\"_blank\">ludicrous speed</a>."
|
1357 |
"¡Felicidades! WP SLIMStat está ahora optimizado para <a href=\"http://www."
|
1358 |
"youtube.com/watch?v=ygE01sOhzz0\" target=\"_blank\"> velocidad ridícula </a>."
|
1359 |
|
1360 |
+
#: ../../admin/config/maintenance.php:53
|
1361 |
msgid ""
|
1362 |
"Indexing has been successfully disabled. Enjoy the extra database space you "
|
1363 |
"just gained!"
|
1365 |
"Indexación se ha desactivado con éxito. Disfrute del espacio de base de "
|
1366 |
"datos adicional ¡que acaba de ganar!"
|
1367 |
|
1368 |
+
#: ../../admin/config/maintenance.php:84
|
1369 |
msgid "Database Information"
|
1370 |
msgstr "Información Base de datos"
|
1371 |
|
1372 |
+
#: ../../admin/config/maintenance.php:87
|
1373 |
#, fuzzy
|
1374 |
msgid "Engine"
|
1375 |
msgstr "Motores de Búsqueda"
|
1376 |
|
1377 |
+
#: ../../admin/config/maintenance.php:91
|
1378 |
msgid "switch to InnoDB"
|
1379 |
msgstr "cambiar a InnoDB"
|
1380 |
|
1381 |
+
#: ../../admin/config/maintenance.php:102
|
1382 |
#, fuzzy
|
1383 |
msgid "records"
|
1384 |
msgstr "Palabras clave"
|
1385 |
|
1386 |
+
#: ../../admin/config/maintenance.php:107
|
1387 |
msgid "Data Maintenance"
|
1388 |
msgstr "Mantenimiento de Datos"
|
1389 |
|
1390 |
+
#: ../../admin/config/maintenance.php:110
|
1391 |
#, fuzzy
|
1392 |
msgid "Delete pageviews where"
|
1393 |
msgstr "Filtrar páginas visitadas dondé:"
|
1394 |
|
1395 |
+
#: ../../admin/config/maintenance.php:124 ../../admin/view/index.php:17
|
1396 |
msgid "equals"
|
1397 |
msgstr "es igual a"
|
1398 |
|
1399 |
+
#: ../../admin/config/maintenance.php:125 ../../admin/view/index.php:18
|
1400 |
msgid "is not equal to"
|
1401 |
msgstr "no es igual a"
|
1402 |
|
1403 |
+
#: ../../admin/config/maintenance.php:126 ../../admin/view/index.php:19
|
1404 |
#, fuzzy
|
1405 |
msgid "contains"
|
1406 |
msgstr "Contiene"
|
1407 |
|
1408 |
+
#: ../../admin/config/maintenance.php:127 ../../admin/view/index.php:20
|
1409 |
#, fuzzy
|
1410 |
msgid "does not contain"
|
1411 |
msgstr "No contiene"
|
1412 |
|
1413 |
+
#: ../../admin/config/maintenance.php:128 ../../admin/view/index.php:21
|
1414 |
#, fuzzy
|
1415 |
msgid "starts with"
|
1416 |
msgstr "Empieza por"
|
1417 |
|
1418 |
+
#: ../../admin/config/maintenance.php:129 ../../admin/view/index.php:22
|
1419 |
#, fuzzy
|
1420 |
msgid "ends with"
|
1421 |
msgstr "Acaba en"
|
1422 |
|
1423 |
+
#: ../../admin/config/maintenance.php:130 ../../admin/view/index.php:23
|
1424 |
msgid "sounds like"
|
1425 |
msgstr "suena como"
|
1426 |
|
1427 |
+
#: ../../admin/config/maintenance.php:131 ../../admin/view/index.php:24
|
1428 |
msgid "is greater than"
|
1429 |
msgstr "es mayor que"
|
1430 |
|
1431 |
+
#: ../../admin/config/maintenance.php:132 ../../admin/view/index.php:25
|
1432 |
msgid "is less than"
|
1433 |
msgstr "es menor que"
|
1434 |
|
1435 |
+
#: ../../admin/config/maintenance.php:133 ../../admin/view/index.php:26
|
1436 |
msgid "matches"
|
1437 |
msgstr "coincide"
|
1438 |
|
1439 |
+
#: ../../admin/config/maintenance.php:134 ../../admin/view/index.php:27
|
1440 |
#, fuzzy
|
1441 |
msgid "does not match"
|
1442 |
msgstr "No contiene"
|
1443 |
|
1444 |
+
#: ../../admin/config/maintenance.php:135 ../../admin/view/index.php:28
|
1445 |
msgid "is empty"
|
1446 |
msgstr "está vacío"
|
1447 |
|
1448 |
+
#: ../../admin/config/maintenance.php:136 ../../admin/view/index.php:29
|
1449 |
msgid "is not empty"
|
1450 |
msgstr "no está vacío"
|
1451 |
|
1452 |
+
#: ../../admin/config/maintenance.php:139 ../../admin/view/index.php:32
|
1453 |
#: ../../admin/view/index.php:78
|
1454 |
msgid "Apply"
|
1455 |
msgstr "Aplicar"
|
1456 |
|
1457 |
+
#: ../../admin/config/maintenance.php:140
|
1458 |
msgid ""
|
1459 |
"Are you sure you want to PERMANENTLY delete these records from your database?"
|
1460 |
msgstr ""
|
1461 |
"¿Está seguro que desea eliminar PERMANENTEMENTE estos registros de su base "
|
1462 |
"de datos?"
|
1463 |
|
1464 |
+
#: ../../admin/config/maintenance.php:145
|
1465 |
msgid "Empty Database"
|
1466 |
msgstr "Base de datos vacía"
|
1467 |
|
1468 |
+
#: ../../admin/config/maintenance.php:148
|
1469 |
msgid ""
|
1470 |
"Are you sure you want to PERMANENTLY DELETE ALL the records from your "
|
1471 |
"database?"
|
1473 |
"¿Está seguro que quiere BORRAR PERMANENTEMENTE TODOS los registros de su "
|
1474 |
"base de datos?"
|
1475 |
|
1476 |
+
#: ../../admin/config/maintenance.php:148
|
1477 |
#, fuzzy
|
1478 |
msgid "Delete All Pageviews"
|
1479 |
msgstr "Paginas visitadas"
|
1480 |
|
1481 |
+
#: ../../admin/config/maintenance.php:149
|
1482 |
msgid ""
|
1483 |
"Erase all the information collected so far by WP SlimStat. This operation "
|
1484 |
"<strong>does not</strong> reset your settings."
|
1486 |
"Borrar toda la información recopilada hasta el momento por WP SLIMStat. Esta "
|
1487 |
"<strong> operación no </strong> restablece la configuración."
|
1488 |
|
1489 |
+
#: ../../admin/config/maintenance.php:153
|
1490 |
#, fuzzy
|
1491 |
msgid "Reset Reports"
|
1492 |
msgstr "Informes Personalizados"
|
1493 |
|
1494 |
+
#: ../../admin/config/maintenance.php:156
|
1495 |
msgid ""
|
1496 |
"Are you sure you want to restore the default arrangement of your reports?"
|
1497 |
msgstr ""
|
1498 |
"¿Está seguro de que desea restaurar la disposición por defecto de sus "
|
1499 |
"informes?"
|
1500 |
|
1501 |
+
#: ../../admin/config/maintenance.php:156
|
1502 |
msgid "No Panic Button"
|
1503 |
msgstr "Botón No Pánico"
|
1504 |
|
1505 |
+
#: ../../admin/config/maintenance.php:157
|
1506 |
msgid ""
|
1507 |
"Reset the default arrangement of your reports. Helpful when, for some "
|
1508 |
"reason, reports disappear from your panels."
|
1510 |
"Cambiar la disposición por defecto de sus informes. Útil cuando, por alguna "
|
1511 |
"razón, los informes desaparecen de sus paneles."
|
1512 |
|
1513 |
+
#: ../../admin/config/maintenance.php:161
|
1514 |
msgid "Performance"
|
1515 |
msgstr "Rendimiento"
|
1516 |
|
1517 |
+
#: ../../admin/config/maintenance.php:164
|
1518 |
msgid "Improve Performance"
|
1519 |
msgstr "Mejorar el rendimiento"
|
1520 |
|
1521 |
+
#: ../../admin/config/maintenance.php:165
|
1522 |
msgid ""
|
1523 |
"Please note that you will need about 30% more DB space to store the extra "
|
1524 |
"information required."
|
1526 |
"Por favor, tenga en cuenta que necesitará un 30% más de espacio BD para "
|
1527 |
"almacenar la información adicional que se requiere."
|
1528 |
|
1529 |
+
#: ../../admin/config/maintenance.php:169
|
1530 |
msgid "Save DB Space"
|
1531 |
msgstr "Guardar Espacio BD"
|
1532 |
|
1533 |
+
#: ../../admin/config/maintenance.php:170
|
1534 |
msgid ""
|
1535 |
"Please note that by removing table indexes, WP SlimStat's performance will "
|
1536 |
"be affected."
|
1538 |
"Tenga en cuenta que al eliminar los índices de tabla, el rendimiento de WP "
|
1539 |
"SLIMStat se verá afectado."
|
1540 |
|
1541 |
+
#: ../../admin/config/maintenance.php:175
|
1542 |
msgid "Import and Export"
|
1543 |
msgstr "Importar y Exportar"
|
1544 |
|
1545 |
+
#: ../../admin/config/maintenance.php:179
|
1546 |
msgid ""
|
1547 |
"Here below you can find the current configuration string for WP SlimStat. "
|
1548 |
"You can update your settings by pasting a new string here below and clicking "
|
1552 |
"SlimStat. Puede actualizar su configuración pegando una nueva cadena aquí "
|
1553 |
"abajo y haciendo clic en Importar."
|
1554 |
|
1555 |
+
#: ../../admin/config/maintenance.php:184
|
1556 |
msgid "Import"
|
1557 |
msgstr "Importar"
|
1558 |
|
1559 |
+
#: ../../admin/config/maintenance.php:185
|
1560 |
msgid "Are you sure you want to OVERWRITE your current settings?"
|
1561 |
msgstr "¿Seguro de que desea sobrescribir la configuración actual?"
|
1562 |
|
5265 |
msgstr "Trackbacks"
|
5266 |
|
5267 |
#: ../../admin/view/wp-slimstat-reports.php:1073
|
5268 |
+
#, fuzzy
|
5269 |
msgid "Longest Post (ID)"
|
5270 |
msgstr "Visita más larga"
|
5271 |
|
admin/lang/wp-slimstat-fr_CA.mo
CHANGED
Binary file
|
admin/lang/wp-slimstat-fr_CA.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: WP SlimStat\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-03-02 22:44-0500\n"
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Get Used To IT <support@getused.to.it>\n"
|
8 |
"Language-Team: Michael Bastin\n"
|
9 |
"Language: fr_FR\n"
|
@@ -139,7 +139,7 @@ msgid ""
|
|
139 |
"SlimStat logs a pageview each time the tracking code is executed"
|
140 |
msgstr ""
|
141 |
"Une demande de chargement d'un simple fichier HTML (\"une page\"). À "
|
142 |
-
"distinguer d'un \"hit\", qui se réfère à une requête d'un
|
143 |
"d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
|
144 |
"code de traçage est exécuté"
|
145 |
|
@@ -359,7 +359,7 @@ msgstr "Référent"
|
|
359 |
|
360 |
#: ../../admin/wp-slimstat-admin.php:743
|
361 |
msgid "Complete address of the referrer page"
|
362 |
-
msgstr "Adresse complète
|
363 |
|
364 |
#: ../../admin/wp-slimstat-admin.php:744
|
365 |
#: ../../admin/view/wp-slimstat-db.php:51
|
@@ -607,7 +607,7 @@ msgstr "Traçage"
|
|
607 |
#: ../../admin/config/index.php:21
|
608 |
#, fuzzy
|
609 |
msgid "Enable Tracking"
|
610 |
-
msgstr "
|
611 |
|
612 |
#: ../../admin/config/index.php:21
|
613 |
msgid ""
|
@@ -620,39 +620,33 @@ msgstr ""
|
|
620 |
#: ../../admin/config/index.php:22
|
621 |
#, fuzzy
|
622 |
msgid "Monitor Admin Pages"
|
623 |
-
msgstr "Tracer
|
624 |
|
625 |
#: ../../admin/config/index.php:22
|
626 |
-
#, fuzzy
|
627 |
msgid "Enable this option to track your users' activity within the admin."
|
628 |
msgstr ""
|
629 |
-
"Activez cette option
|
630 |
-
"dans l'admin."
|
631 |
|
632 |
#: ../../admin/config/index.php:23
|
633 |
msgid "Enable Spy Mode"
|
634 |
msgstr "Activer le mode espion"
|
635 |
|
636 |
#: ../../admin/config/index.php:23
|
637 |
-
#, fuzzy
|
638 |
msgid ""
|
639 |
"Collect information about screen resolutions, outbound links, downloads, "
|
640 |
"etc. If Tracking Mode is set to Javascript, this data will be tracked "
|
641 |
"regardless of which value you set for this option."
|
642 |
msgstr ""
|
643 |
-
"
|
644 |
-
"
|
645 |
-
"
|
646 |
-
"
|
647 |
-
"définissez pour cette option."
|
648 |
|
649 |
#: ../../admin/config/index.php:24
|
650 |
-
#, fuzzy
|
651 |
msgid "Tracking Mode"
|
652 |
-
msgstr "
|
653 |
|
654 |
#: ../../admin/config/index.php:24
|
655 |
-
#, fuzzy
|
656 |
msgid ""
|
657 |
"Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
|
658 |
"Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
|
@@ -663,8 +657,8 @@ msgstr ""
|
|
663 |
"Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
|
664 |
"Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
|
665 |
"et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
|
666 |
-
"ignorés.
|
667 |
-
"
|
668 |
|
669 |
#: ../../admin/config/index.php:24
|
670 |
#, fuzzy
|
@@ -689,9 +683,8 @@ msgid ""
|
|
689 |
"Choose between a standalone admin menu for WP SlimStat or a drop down in the "
|
690 |
"admin bar (if visible)."
|
691 |
msgstr ""
|
692 |
-
"
|
693 |
-
"
|
694 |
-
"d'administrateur."
|
695 |
|
696 |
#: ../../admin/config/index.php:27
|
697 |
msgid "Side Menu"
|
@@ -704,15 +697,15 @@ msgstr "Barre d'Administration"
|
|
704 |
#: ../../admin/config/index.php:28
|
705 |
#, fuzzy
|
706 |
msgid "Add Stats to Posts"
|
707 |
-
msgstr "
|
708 |
|
709 |
#: ../../admin/config/index.php:28
|
710 |
#, fuzzy
|
711 |
msgid ""
|
712 |
"Add a new column to the Edit Posts screen, with the number of hits per post."
|
713 |
msgstr ""
|
714 |
-
"Ajoute une
|
715 |
-
"
|
716 |
|
717 |
#: ../../admin/config/index.php:30
|
718 |
msgid "Database"
|
@@ -737,10 +730,10 @@ msgid "Next clean-up on"
|
|
737 |
msgstr "Prochain nettoyage le"
|
738 |
|
739 |
#: ../../admin/config/index.php:31
|
740 |
-
#,
|
741 |
msgid "Entries logged on or before %s will be permanently deleted."
|
742 |
msgstr ""
|
743 |
-
"Les données enregistrées le ou avant le %s seront
|
744 |
|
745 |
#: ../../admin/config/index.php:31 ../../admin/view/index.php:77
|
746 |
#: ../../admin/view/wp-slimstat-db.php:75
|
@@ -751,7 +744,7 @@ msgstr "jours"
|
|
751 |
#: ../../admin/config/index.php:46
|
752 |
#, fuzzy
|
753 |
msgid "Data and Formats"
|
754 |
-
msgstr "
|
755 |
|
756 |
#: ../../admin/config/index.php:47
|
757 |
msgid "Convert IP Addresses"
|
@@ -771,7 +764,7 @@ msgid ""
|
|
771 |
"Choose the number format you want to use for your reports, European or "
|
772 |
"American."
|
773 |
msgstr ""
|
774 |
-
"Choisissez
|
775 |
"américain."
|
776 |
|
777 |
#: ../../admin/config/index.php:49
|
@@ -826,8 +819,8 @@ msgid ""
|
|
826 |
"Load all the reports dynamically. It makes the reports render faster, but it "
|
827 |
"increases the load on your server."
|
828 |
msgstr ""
|
829 |
-
"Utiliser Ajax pour charger
|
830 |
-
"
|
831 |
"serveur."
|
832 |
|
833 |
#: ../../admin/config/index.php:55
|
@@ -843,7 +836,7 @@ msgstr ""
|
|
843 |
#: ../../admin/config/index.php:56 ../../admin/config/index.php:60
|
844 |
#, fuzzy
|
845 |
msgid "Rows to Display"
|
846 |
-
msgstr "
|
847 |
|
848 |
#: ../../admin/config/index.php:56
|
849 |
msgid "Specify the number of items in each report."
|
@@ -1185,7 +1178,7 @@ msgstr ""
|
|
1185 |
|
1186 |
#: ../../admin/config/index.php:153
|
1187 |
msgid "Read access: username not found"
|
1188 |
-
msgstr "Accès lecture : username
|
1189 |
|
1190 |
#: ../../admin/config/index.php:166 ../../admin/config/index.php:197
|
1191 |
msgid ""
|
@@ -1199,7 +1192,7 @@ msgstr ""
|
|
1199 |
|
1200 |
#: ../../admin/config/index.php:184
|
1201 |
msgid "Config access: username not found"
|
1202 |
-
msgstr "Accès configuration : username
|
1203 |
|
1204 |
#: ../../admin/config/index.php:208
|
1205 |
msgid "Detect Smoothing"
|
@@ -1897,22 +1890,22 @@ msgstr "Arabe"
|
|
1897 |
# Arabic (United Arab Emirates)
|
1898 |
#: ../../admin/lang/dynamic_strings.php:75
|
1899 |
msgid "l-ar-ae"
|
1900 |
-
msgstr "Arabe (
|
1901 |
|
1902 |
# Arabic (Bahrain)
|
1903 |
#: ../../admin/lang/dynamic_strings.php:76
|
1904 |
msgid "l-ar-bh"
|
1905 |
-
msgstr "Arabe (
|
1906 |
|
1907 |
# Arabic (Algeria)
|
1908 |
#: ../../admin/lang/dynamic_strings.php:77
|
1909 |
msgid "l-ar-dz"
|
1910 |
-
msgstr "Arabe (
|
1911 |
|
1912 |
# Arabic (Egypt)
|
1913 |
#: ../../admin/lang/dynamic_strings.php:78
|
1914 |
msgid "l-ar-eg"
|
1915 |
-
msgstr "Arabe (
|
1916 |
|
1917 |
# Arabic (Iraq)
|
1918 |
#: ../../admin/lang/dynamic_strings.php:79
|
@@ -1927,7 +1920,7 @@ msgstr "Arabe (Jordanie)"
|
|
1927 |
# Arabic (Kuwait)
|
1928 |
#: ../../admin/lang/dynamic_strings.php:81
|
1929 |
msgid "l-ar-kw"
|
1930 |
-
msgstr "Arabe (
|
1931 |
|
1932 |
# Arabic (Lebanon)
|
1933 |
#: ../../admin/lang/dynamic_strings.php:82
|
@@ -1972,12 +1965,12 @@ msgstr "Arabe (Tunisie)"
|
|
1972 |
# Arabic (Yemen)
|
1973 |
#: ../../admin/lang/dynamic_strings.php:90
|
1974 |
msgid "l-ar-ye"
|
1975 |
-
msgstr "Arabe (
|
1976 |
|
1977 |
# Azerbaijani
|
1978 |
#: ../../admin/lang/dynamic_strings.php:91
|
1979 |
msgid "l-az"
|
1980 |
-
msgstr "
|
1981 |
|
1982 |
# Azerbaijani
|
1983 |
#: ../../admin/lang/dynamic_strings.php:92
|
@@ -1987,7 +1980,7 @@ msgstr "Azeri"
|
|
1987 |
# Belarusian
|
1988 |
#: ../../admin/lang/dynamic_strings.php:93
|
1989 |
msgid "l-be"
|
1990 |
-
msgstr "
|
1991 |
|
1992 |
# Belarusian
|
1993 |
#: ../../admin/lang/dynamic_strings.php:94
|
@@ -2023,7 +2016,7 @@ msgstr "Catalan; Valencien"
|
|
2023 |
# Czech
|
2024 |
#: ../../admin/lang/dynamic_strings.php:100
|
2025 |
msgid "l-cs"
|
2026 |
-
msgstr "
|
2027 |
|
2028 |
# Czech
|
2029 |
#: ../../admin/lang/dynamic_strings.php:101
|
@@ -2098,7 +2091,7 @@ msgstr "Grec moderne"
|
|
2098 |
# Greek (Greece)
|
2099 |
#: ../../admin/lang/dynamic_strings.php:115
|
2100 |
msgid "l-el-gr"
|
2101 |
-
msgstr "Grec moderne (
|
2102 |
|
2103 |
# English
|
2104 |
#: ../../admin/lang/dynamic_strings.php:116
|
@@ -2139,12 +2132,12 @@ msgstr "Anglais (Irlande)"
|
|
2139 |
# English (Jamaica)
|
2140 |
#: ../../admin/lang/dynamic_strings.php:123
|
2141 |
msgid "l-en-jm"
|
2142 |
-
msgstr "Anglais (
|
2143 |
|
2144 |
# English (New Zealand)
|
2145 |
#: ../../admin/lang/dynamic_strings.php:124
|
2146 |
msgid "l-en-nz"
|
2147 |
-
msgstr "Anglais (Nouvelle-
|
2148 |
|
2149 |
# English
|
2150 |
#: ../../admin/lang/dynamic_strings.php:125
|
@@ -2155,12 +2148,12 @@ msgstr "Anglais"
|
|
2155 |
# English (Trinidad)
|
2156 |
#: ../../admin/lang/dynamic_strings.php:126
|
2157 |
msgid "l-en-tt"
|
2158 |
-
msgstr "Anglais (
|
2159 |
|
2160 |
# English (United States)
|
2161 |
#: ../../admin/lang/dynamic_strings.php:127
|
2162 |
msgid "l-en-us"
|
2163 |
-
msgstr "Anglais (
|
2164 |
|
2165 |
# English (South Africa)
|
2166 |
#: ../../admin/lang/dynamic_strings.php:128
|
@@ -2176,7 +2169,7 @@ msgstr "Anglais (Afrique du Sud)"
|
|
2176 |
# Esperanto
|
2177 |
#: ../../admin/lang/dynamic_strings.php:130
|
2178 |
msgid "l-eo"
|
2179 |
-
msgstr "
|
2180 |
|
2181 |
# Spanish; Castilian
|
2182 |
#: ../../admin/lang/dynamic_strings.php:131
|
@@ -2211,12 +2204,12 @@ msgstr "Espagnol (Costa Rica)"
|
|
2211 |
# Spanish (Dominican Republic)
|
2212 |
#: ../../admin/lang/dynamic_strings.php:137
|
2213 |
msgid "l-es-do"
|
2214 |
-
msgstr "Espagnol (
|
2215 |
|
2216 |
# Spanish (Ecuador)
|
2217 |
#: ../../admin/lang/dynamic_strings.php:138
|
2218 |
msgid "l-es-ec"
|
2219 |
-
msgstr "Espagnol (
|
2220 |
|
2221 |
# Spanish (Spain)
|
2222 |
#: ../../admin/lang/dynamic_strings.php:139
|
@@ -2251,7 +2244,7 @@ msgstr "Espagnol (Panama)"
|
|
2251 |
# Spanish (Peru)
|
2252 |
#: ../../admin/lang/dynamic_strings.php:145
|
2253 |
msgid "l-es-pe"
|
2254 |
-
msgstr "Espagnol (
|
2255 |
|
2256 |
# Spanish (Puerto Rico)
|
2257 |
#: ../../admin/lang/dynamic_strings.php:146
|
@@ -2325,7 +2318,7 @@ msgstr "Finnois"
|
|
2325 |
# Faroese
|
2326 |
#: ../../admin/lang/dynamic_strings.php:159
|
2327 |
msgid "l-fo"
|
2328 |
-
msgstr "
|
2329 |
|
2330 |
# Faroese
|
2331 |
#: ../../admin/lang/dynamic_strings.php:160
|
@@ -2335,32 +2328,32 @@ msgstr "Ferigien"
|
|
2335 |
# French
|
2336 |
#: ../../admin/lang/dynamic_strings.php:161
|
2337 |
msgid "l-fr"
|
2338 |
-
msgstr "
|
2339 |
|
2340 |
# French (Belgium)
|
2341 |
#: ../../admin/lang/dynamic_strings.php:162
|
2342 |
msgid "l-fr-be"
|
2343 |
-
msgstr "
|
2344 |
|
2345 |
# French (Canada)
|
2346 |
#: ../../admin/lang/dynamic_strings.php:163
|
2347 |
msgid "l-fr-ca"
|
2348 |
-
msgstr "
|
2349 |
|
2350 |
# French (Switzerland)
|
2351 |
#: ../../admin/lang/dynamic_strings.php:164
|
2352 |
msgid "l-fr-ch"
|
2353 |
-
msgstr "
|
2354 |
|
2355 |
# French (France)
|
2356 |
#: ../../admin/lang/dynamic_strings.php:165
|
2357 |
msgid "l-fr-fr"
|
2358 |
-
msgstr "
|
2359 |
|
2360 |
# French (Luxembourg)
|
2361 |
#: ../../admin/lang/dynamic_strings.php:166
|
2362 |
msgid "l-fr-lu"
|
2363 |
-
msgstr "
|
2364 |
|
2365 |
# French (Switzerland)
|
2366 |
#: ../../admin/lang/dynamic_strings.php:167
|
@@ -2380,27 +2373,27 @@ msgstr "Espagnol ; Castillan"
|
|
2380 |
# Gujarati
|
2381 |
#: ../../admin/lang/dynamic_strings.php:170
|
2382 |
msgid "l-gu"
|
2383 |
-
msgstr "
|
2384 |
|
2385 |
# Gujarati
|
2386 |
#: ../../admin/lang/dynamic_strings.php:171
|
2387 |
msgid "l-gu-in"
|
2388 |
-
msgstr "
|
2389 |
|
2390 |
# Hebrew
|
2391 |
#: ../../admin/lang/dynamic_strings.php:172
|
2392 |
msgid "l-he"
|
2393 |
-
msgstr "
|
2394 |
|
2395 |
# Hebrew (Israel)
|
2396 |
#: ../../admin/lang/dynamic_strings.php:173
|
2397 |
msgid "l-he-il"
|
2398 |
-
msgstr "
|
2399 |
|
2400 |
# Hindi
|
2401 |
#: ../../admin/lang/dynamic_strings.php:174
|
2402 |
msgid "l-hi"
|
2403 |
-
msgstr "
|
2404 |
|
2405 |
# Hindi
|
2406 |
#: ../../admin/lang/dynamic_strings.php:175
|
@@ -2437,7 +2430,7 @@ msgstr "Hongrois (Hongrie)"
|
|
2437 |
# Armenian
|
2438 |
#: ../../admin/lang/dynamic_strings.php:181
|
2439 |
msgid "l-hy"
|
2440 |
-
msgstr "
|
2441 |
|
2442 |
# Armenian
|
2443 |
#: ../../admin/lang/dynamic_strings.php:182
|
@@ -2447,7 +2440,7 @@ msgstr "Armènien"
|
|
2447 |
# Indonesian
|
2448 |
#: ../../admin/lang/dynamic_strings.php:183
|
2449 |
msgid "l-id"
|
2450 |
-
msgstr "
|
2451 |
|
2452 |
# Indonesian
|
2453 |
#: ../../admin/lang/dynamic_strings.php:184
|
@@ -2493,7 +2486,7 @@ msgstr "Japonais"
|
|
2493 |
# Georgian
|
2494 |
#: ../../admin/lang/dynamic_strings.php:192
|
2495 |
msgid "l-ka"
|
2496 |
-
msgstr "
|
2497 |
|
2498 |
# Georgian
|
2499 |
#: ../../admin/lang/dynamic_strings.php:193
|
@@ -2525,22 +2518,22 @@ msgstr "kannada"
|
|
2525 |
# Korean
|
2526 |
#: ../../admin/lang/dynamic_strings.php:198
|
2527 |
msgid "l-ko"
|
2528 |
-
msgstr "
|
2529 |
|
2530 |
# Korean (Republic of Korea)
|
2531 |
#: ../../admin/lang/dynamic_strings.php:199
|
2532 |
msgid "l-ko-kr"
|
2533 |
-
msgstr "
|
2534 |
|
2535 |
# Korean
|
2536 |
#: ../../admin/lang/dynamic_strings.php:200
|
2537 |
msgid "l-kok"
|
2538 |
-
msgstr "
|
2539 |
|
2540 |
# Korean
|
2541 |
#: ../../admin/lang/dynamic_strings.php:201
|
2542 |
msgid "l-kok-in"
|
2543 |
-
msgstr "
|
2544 |
|
2545 |
# Kirghiz; Kyrgyz
|
2546 |
#: ../../admin/lang/dynamic_strings.php:202
|
@@ -2577,18 +2570,18 @@ msgstr "Letton"
|
|
2577 |
# Maori
|
2578 |
#: ../../admin/lang/dynamic_strings.php:208
|
2579 |
msgid "l-mi"
|
2580 |
-
msgstr "
|
2581 |
|
2582 |
# Maori
|
2583 |
#: ../../admin/lang/dynamic_strings.php:209
|
2584 |
#, fuzzy
|
2585 |
msgid "l-mi-nz"
|
2586 |
-
msgstr "
|
2587 |
|
2588 |
# Macedonian
|
2589 |
#: ../../admin/lang/dynamic_strings.php:210
|
2590 |
msgid "l-mk"
|
2591 |
-
msgstr "
|
2592 |
|
2593 |
# Macedonian
|
2594 |
#: ../../admin/lang/dynamic_strings.php:211
|
@@ -2609,12 +2602,12 @@ msgstr "Mongol"
|
|
2609 |
# Marathi
|
2610 |
#: ../../admin/lang/dynamic_strings.php:214
|
2611 |
msgid "l-mr"
|
2612 |
-
msgstr "
|
2613 |
|
2614 |
# Marathi
|
2615 |
#: ../../admin/lang/dynamic_strings.php:215
|
2616 |
msgid "l-mr-in"
|
2617 |
-
msgstr "
|
2618 |
|
2619 |
# Malay
|
2620 |
#: ../../admin/lang/dynamic_strings.php:216
|
@@ -2644,12 +2637,12 @@ msgstr "Maltais"
|
|
2644 |
msgid "l-mt-mt"
|
2645 |
msgstr "Maltais"
|
2646 |
|
2647 |
-
# Norwegian
|
2648 |
#: ../../admin/lang/dynamic_strings.php:221
|
2649 |
msgid "l-nb"
|
2650 |
-
msgstr "
|
2651 |
|
2652 |
-
# Norwegian
|
2653 |
#: ../../admin/lang/dynamic_strings.php:222
|
2654 |
msgid "l-nb-no"
|
2655 |
msgstr "Norvegien"
|
@@ -2657,17 +2650,17 @@ msgstr "Norvegien"
|
|
2657 |
# Dutch; Flemish
|
2658 |
#: ../../admin/lang/dynamic_strings.php:223
|
2659 |
msgid "l-nl"
|
2660 |
-
msgstr "
|
2661 |
|
2662 |
# Dutch (Belgium)
|
2663 |
#: ../../admin/lang/dynamic_strings.php:224
|
2664 |
msgid "l-nl-be"
|
2665 |
-
msgstr "
|
2666 |
|
2667 |
# Dutch (Netherlands)
|
2668 |
#: ../../admin/lang/dynamic_strings.php:225
|
2669 |
msgid "l-nl-nl"
|
2670 |
-
msgstr "
|
2671 |
|
2672 |
# Norwegian Nynorsk
|
2673 |
#: ../../admin/lang/dynamic_strings.php:226
|
@@ -2685,7 +2678,7 @@ msgstr "l-ns-za"
|
|
2685 |
# Panjabi; Punjabi
|
2686 |
#: ../../admin/lang/dynamic_strings.php:229
|
2687 |
msgid "l-pa"
|
2688 |
-
msgstr "
|
2689 |
|
2690 |
# Panjabi; Punjabi
|
2691 |
#: ../../admin/lang/dynamic_strings.php:230
|
@@ -2721,7 +2714,7 @@ msgstr "Portugais"
|
|
2721 |
# Portuguese (Brazil)
|
2722 |
#: ../../admin/lang/dynamic_strings.php:236
|
2723 |
msgid "l-pt-br"
|
2724 |
-
msgstr "Portugais (
|
2725 |
|
2726 |
# Portuguese
|
2727 |
#: ../../admin/lang/dynamic_strings.php:237
|
@@ -2769,7 +2762,7 @@ msgstr "Russe"
|
|
2769 |
# Russian (Russia)
|
2770 |
#: ../../admin/lang/dynamic_strings.php:245
|
2771 |
msgid "l-ru-ru"
|
2772 |
-
msgstr "Russe (
|
2773 |
|
2774 |
# Sanskrit
|
2775 |
#: ../../admin/lang/dynamic_strings.php:246
|
@@ -2817,7 +2810,7 @@ msgstr "Slovaque"
|
|
2817 |
# Slovenian
|
2818 |
#: ../../admin/lang/dynamic_strings.php:254
|
2819 |
msgid "l-sl"
|
2820 |
-
msgstr "
|
2821 |
|
2822 |
# Slovenian
|
2823 |
#: ../../admin/lang/dynamic_strings.php:255
|
@@ -2850,17 +2843,17 @@ msgstr "Serbe"
|
|
2850 |
# Swedish
|
2851 |
#: ../../admin/lang/dynamic_strings.php:260
|
2852 |
msgid "l-sv"
|
2853 |
-
msgstr "
|
2854 |
|
2855 |
# Swedish (Finland)
|
2856 |
#: ../../admin/lang/dynamic_strings.php:261
|
2857 |
msgid "l-sv-fi"
|
2858 |
-
msgstr "
|
2859 |
|
2860 |
# Swedish (Sweden)
|
2861 |
#: ../../admin/lang/dynamic_strings.php:262
|
2862 |
msgid "l-sv-se"
|
2863 |
-
msgstr "
|
2864 |
|
2865 |
# Swahili
|
2866 |
#: ../../admin/lang/dynamic_strings.php:263
|
@@ -2887,7 +2880,7 @@ msgstr "Tamoul"
|
|
2887 |
# Telugu
|
2888 |
#: ../../admin/lang/dynamic_strings.php:267
|
2889 |
msgid "l-te"
|
2890 |
-
msgstr "
|
2891 |
|
2892 |
# Telugu
|
2893 |
#: ../../admin/lang/dynamic_strings.php:268
|
@@ -2897,7 +2890,7 @@ msgstr "Telougou"
|
|
2897 |
# Thai
|
2898 |
#: ../../admin/lang/dynamic_strings.php:269
|
2899 |
msgid "l-th"
|
2900 |
-
msgstr "
|
2901 |
|
2902 |
# Thai
|
2903 |
#: ../../admin/lang/dynamic_strings.php:270
|
@@ -3033,7 +3026,7 @@ msgstr "Chinois (Singapour)"
|
|
3033 |
# Chinese (Taiwan)
|
3034 |
#: ../../admin/lang/dynamic_strings.php:295
|
3035 |
msgid "l-zh-tw"
|
3036 |
-
msgstr "Chinois (
|
3037 |
|
3038 |
# Zulu
|
3039 |
#: ../../admin/lang/dynamic_strings.php:296
|
@@ -5683,12 +5676,12 @@ msgstr "Moyenne des pages vues"
|
|
5683 |
# Azerbaijani
|
5684 |
#, fuzzy
|
5685 |
#~ msgid "l-az-AZ"
|
5686 |
-
#~ msgstr "
|
5687 |
|
5688 |
# Belarusian
|
5689 |
#, fuzzy
|
5690 |
#~ msgid "l-be-BY"
|
5691 |
-
#~ msgstr "
|
5692 |
|
5693 |
# Bulgarian
|
5694 |
#, fuzzy
|
@@ -5703,7 +5696,7 @@ msgstr "Moyenne des pages vues"
|
|
5703 |
# Czech
|
5704 |
#, fuzzy
|
5705 |
#~ msgid "l-cs-CZ"
|
5706 |
-
#~ msgstr "
|
5707 |
|
5708 |
# Welsh
|
5709 |
#, fuzzy
|
@@ -5933,37 +5926,37 @@ msgstr "Moyenne des pages vues"
|
|
5933 |
# Faroese
|
5934 |
#, fuzzy
|
5935 |
#~ msgid "l-fo-FO"
|
5936 |
-
#~ msgstr "
|
5937 |
|
5938 |
# French
|
5939 |
#, fuzzy
|
5940 |
#~ msgid "l-fr-BE"
|
5941 |
-
#~ msgstr "
|
5942 |
|
5943 |
# French
|
5944 |
#, fuzzy
|
5945 |
#~ msgid "l-fr-CA"
|
5946 |
-
#~ msgstr "
|
5947 |
|
5948 |
# French
|
5949 |
#, fuzzy
|
5950 |
#~ msgid "l-fr-CH"
|
5951 |
-
#~ msgstr "
|
5952 |
|
5953 |
# French
|
5954 |
#, fuzzy
|
5955 |
#~ msgid "l-fr-FR"
|
5956 |
-
#~ msgstr "
|
5957 |
|
5958 |
# French
|
5959 |
#, fuzzy
|
5960 |
#~ msgid "l-fr-LU"
|
5961 |
-
#~ msgstr "
|
5962 |
|
5963 |
# French
|
5964 |
#, fuzzy
|
5965 |
#~ msgid "l-fr-MC"
|
5966 |
-
#~ msgstr "
|
5967 |
|
5968 |
# Galician
|
5969 |
#, fuzzy
|
@@ -5973,17 +5966,17 @@ msgstr "Moyenne des pages vues"
|
|
5973 |
# Gujarati
|
5974 |
#, fuzzy
|
5975 |
#~ msgid "l-gu-IN"
|
5976 |
-
#~ msgstr "
|
5977 |
|
5978 |
# Hebrew
|
5979 |
#, fuzzy
|
5980 |
#~ msgid "l-he-IL"
|
5981 |
-
#~ msgstr "
|
5982 |
|
5983 |
# Hindi
|
5984 |
#, fuzzy
|
5985 |
#~ msgid "l-hi-IN"
|
5986 |
-
#~ msgstr "
|
5987 |
|
5988 |
# Croatian
|
5989 |
#, fuzzy
|
@@ -6003,12 +5996,12 @@ msgstr "Moyenne des pages vues"
|
|
6003 |
# Armenian
|
6004 |
#, fuzzy
|
6005 |
#~ msgid "l-hy-AM"
|
6006 |
-
#~ msgstr "
|
6007 |
|
6008 |
# Indonesian
|
6009 |
#, fuzzy
|
6010 |
#~ msgid "l-id-ID"
|
6011 |
-
#~ msgstr "
|
6012 |
|
6013 |
# Icelandic
|
6014 |
#, fuzzy
|
@@ -6033,7 +6026,7 @@ msgstr "Moyenne des pages vues"
|
|
6033 |
# Georgian
|
6034 |
#, fuzzy
|
6035 |
#~ msgid "l-ka-GE"
|
6036 |
-
#~ msgstr "
|
6037 |
|
6038 |
# Kazakh
|
6039 |
#, fuzzy
|
@@ -6048,12 +6041,12 @@ msgstr "Moyenne des pages vues"
|
|
6048 |
# Korean
|
6049 |
#, fuzzy
|
6050 |
#~ msgid "l-ko-KR"
|
6051 |
-
#~ msgstr "
|
6052 |
|
6053 |
# Korean
|
6054 |
#, fuzzy
|
6055 |
#~ msgid "l-kok-IN"
|
6056 |
-
#~ msgstr "
|
6057 |
|
6058 |
# Kirghiz; Kyrgyz
|
6059 |
#, fuzzy
|
@@ -6073,12 +6066,12 @@ msgstr "Moyenne des pages vues"
|
|
6073 |
# Maori
|
6074 |
#, fuzzy
|
6075 |
#~ msgid "l-mi-NZ"
|
6076 |
-
#~ msgstr "
|
6077 |
|
6078 |
# Macedonian
|
6079 |
#, fuzzy
|
6080 |
#~ msgid "l-mk-MK"
|
6081 |
-
#~ msgstr "
|
6082 |
|
6083 |
# Mongolian
|
6084 |
#, fuzzy
|
@@ -6088,7 +6081,7 @@ msgstr "Moyenne des pages vues"
|
|
6088 |
# Marathi
|
6089 |
#, fuzzy
|
6090 |
#~ msgid "l-mr-IN"
|
6091 |
-
#~ msgstr "
|
6092 |
|
6093 |
# Malay
|
6094 |
#, fuzzy
|
@@ -6105,25 +6098,25 @@ msgstr "Moyenne des pages vues"
|
|
6105 |
#~ msgid "l-mt-MT"
|
6106 |
#~ msgstr "Maltais"
|
6107 |
|
6108 |
-
# Norwegian
|
6109 |
#, fuzzy
|
6110 |
#~ msgid "l-nb-NO"
|
6111 |
-
#~ msgstr "
|
6112 |
|
6113 |
# Dutch; Flemish
|
6114 |
#, fuzzy
|
6115 |
#~ msgid "l-nl-BE"
|
6116 |
-
#~ msgstr "
|
6117 |
|
6118 |
# Dutch; Flemish
|
6119 |
#, fuzzy
|
6120 |
#~ msgid "l-nl-NL"
|
6121 |
-
#~ msgstr "
|
6122 |
|
6123 |
# Panjabi; Punjabi
|
6124 |
#, fuzzy
|
6125 |
#~ msgid "l-pa-IN"
|
6126 |
-
#~ msgstr "
|
6127 |
|
6128 |
# Polish
|
6129 |
#, fuzzy
|
@@ -6198,7 +6191,7 @@ msgstr "Moyenne des pages vues"
|
|
6198 |
# Slovenian
|
6199 |
#, fuzzy
|
6200 |
#~ msgid "l-sl-SI"
|
6201 |
-
#~ msgstr "
|
6202 |
|
6203 |
# Albanian
|
6204 |
#, fuzzy
|
@@ -6213,12 +6206,12 @@ msgstr "Moyenne des pages vues"
|
|
6213 |
# Swedish
|
6214 |
#, fuzzy
|
6215 |
#~ msgid "l-sv-FI"
|
6216 |
-
#~ msgstr "
|
6217 |
|
6218 |
# Swedish
|
6219 |
#, fuzzy
|
6220 |
#~ msgid "l-sv-SE"
|
6221 |
-
#~ msgstr "
|
6222 |
|
6223 |
# Swahili
|
6224 |
#, fuzzy
|
@@ -6233,12 +6226,12 @@ msgstr "Moyenne des pages vues"
|
|
6233 |
# Telugu
|
6234 |
#, fuzzy
|
6235 |
#~ msgid "l-te-IN"
|
6236 |
-
#~ msgstr "
|
6237 |
|
6238 |
# Thai
|
6239 |
#, fuzzy
|
6240 |
#~ msgid "l-th-TH"
|
6241 |
-
#~ msgstr "
|
6242 |
|
6243 |
# Tagalog
|
6244 |
#, fuzzy
|
@@ -6562,11 +6555,11 @@ msgstr "Moyenne des pages vues"
|
|
6562 |
|
6563 |
# Bengali
|
6564 |
#~ msgid "l-bn"
|
6565 |
-
#~ msgstr "
|
6566 |
|
6567 |
# Tibetan
|
6568 |
#~ msgid "l-bo"
|
6569 |
-
#~ msgstr "
|
6570 |
|
6571 |
# Breton
|
6572 |
#~ msgid "l-br"
|
@@ -6574,7 +6567,7 @@ msgstr "Moyenne des pages vues"
|
|
6574 |
|
6575 |
# Chechen
|
6576 |
#~ msgid "l-ce"
|
6577 |
-
#~ msgstr "
|
6578 |
|
6579 |
# Corsican
|
6580 |
#~ msgid "l-co"
|
@@ -6610,7 +6603,7 @@ msgstr "Moyenne des pages vues"
|
|
6610 |
|
6611 |
# Scottish Gaelic; Gaelic
|
6612 |
#~ msgid "l-gd"
|
6613 |
-
#~ msgstr "
|
6614 |
|
6615 |
# Guarani
|
6616 |
#~ msgid "l-gn"
|
@@ -6626,7 +6619,7 @@ msgstr "Moyenne des pages vues"
|
|
6626 |
|
6627 |
# Haitian; Haitian Creole
|
6628 |
#~ msgid "l-ht"
|
6629 |
-
#~ msgstr "
|
6630 |
|
6631 |
# Interlingua (International Auxiliary Language Association)
|
6632 |
#~ msgid "l-ia"
|
@@ -6646,7 +6639,7 @@ msgstr "Moyenne des pages vues"
|
|
6646 |
|
6647 |
# Indonesian
|
6648 |
#~ msgid "l-in"
|
6649 |
-
#~ msgstr "
|
6650 |
|
6651 |
# Ido
|
6652 |
#~ msgid "l-io"
|
@@ -6654,7 +6647,7 @@ msgstr "Moyenne des pages vues"
|
|
6654 |
|
6655 |
# Hebrew
|
6656 |
#~ msgid "l-iw"
|
6657 |
-
#~ msgstr "
|
6658 |
|
6659 |
# Yiddish
|
6660 |
#~ msgid "l-ji"
|
@@ -6762,11 +6755,11 @@ msgstr "Moyenne des pages vues"
|
|
6762 |
|
6763 |
# North Ndebele
|
6764 |
#~ msgid "l-nd"
|
6765 |
-
#~ msgstr "
|
6766 |
|
6767 |
# Nepali
|
6768 |
#~ msgid "l-ne"
|
6769 |
-
#~ msgstr "
|
6770 |
|
6771 |
# Ndonga
|
6772 |
#~ msgid "l-ng"
|
@@ -6774,7 +6767,7 @@ msgstr "Moyenne des pages vues"
|
|
6774 |
|
6775 |
# Norwegian
|
6776 |
#~ msgid "l-no"
|
6777 |
-
#~ msgstr "
|
6778 |
|
6779 |
# Navajo; Navaho
|
6780 |
#~ msgid "l-nv"
|
@@ -6790,7 +6783,7 @@ msgstr "Moyenne des pages vues"
|
|
6790 |
|
6791 |
# Ojibwa
|
6792 |
#~ msgid "l-oj"
|
6793 |
-
#~ msgstr "
|
6794 |
|
6795 |
# Oromo
|
6796 |
#~ msgid "l-om"
|
@@ -6802,11 +6795,11 @@ msgstr "Moyenne des pages vues"
|
|
6802 |
|
6803 |
# Ossetian; Ossetic
|
6804 |
#~ msgid "l-os"
|
6805 |
-
#~ msgstr "
|
6806 |
|
6807 |
# Pali
|
6808 |
#~ msgid "l-pi"
|
6809 |
-
#~ msgstr "
|
6810 |
|
6811 |
# Romansh
|
6812 |
#~ msgid "l-rm"
|
@@ -6874,7 +6867,7 @@ msgstr "Moyenne des pages vues"
|
|
6874 |
|
6875 |
# Turkmen
|
6876 |
#~ msgid "l-tk"
|
6877 |
-
#~ msgstr "
|
6878 |
|
6879 |
# Tonga (Tonga Islands)
|
6880 |
#~ msgid "l-to"
|
@@ -6886,15 +6879,15 @@ msgstr "Moyenne des pages vues"
|
|
6886 |
|
6887 |
# Uighur; Uyghur
|
6888 |
#~ msgid "l-ug"
|
6889 |
-
#~ msgstr "
|
6890 |
|
6891 |
# Venda
|
6892 |
#~ msgid "l-ve"
|
6893 |
#~ msgstr "Venda"
|
6894 |
|
6895 |
-
#
|
6896 |
#~ msgid "l-vo"
|
6897 |
-
#~ msgstr "
|
6898 |
|
6899 |
# Wolof
|
6900 |
#~ msgid "l-wo"
|
@@ -6918,7 +6911,7 @@ msgstr "Moyenne des pages vues"
|
|
6918 |
|
6919 |
# Korean (Democratic People's Republic of Korea)
|
6920 |
#~ msgid "l-ko-kp"
|
6921 |
-
#~ msgstr "
|
6922 |
|
6923 |
# Romanian (Moldava)
|
6924 |
#~ msgid "l-ro-md"
|
@@ -7005,7 +6998,7 @@ msgstr "Moyenne des pages vues"
|
|
7005 |
|
7006 |
# South Ndebele
|
7007 |
#~ msgid "l-nr"
|
7008 |
-
#~ msgstr "
|
7009 |
|
7010 |
# Twi
|
7011 |
#~ msgid "l-tw"
|
3 |
"Project-Id-Version: WP SlimStat\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-03-02 22:44-0500\n"
|
6 |
+
"PO-Revision-Date: 2014-04-07 21:31-0500\n"
|
7 |
"Last-Translator: Get Used To IT <support@getused.to.it>\n"
|
8 |
"Language-Team: Michael Bastin\n"
|
9 |
"Language: fr_FR\n"
|
139 |
"SlimStat logs a pageview each time the tracking code is executed"
|
140 |
msgstr ""
|
141 |
"Une demande de chargement d'un simple fichier HTML (\"une page\"). À "
|
142 |
+
"distinguer d'un \"hit\", qui se réfère à une requête d'un quelconque fichier "
|
143 |
"d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
|
144 |
"code de traçage est exécuté"
|
145 |
|
359 |
|
360 |
#: ../../admin/wp-slimstat-admin.php:743
|
361 |
msgid "Complete address of the referrer page"
|
362 |
+
msgstr "Adresse complète de la page référente"
|
363 |
|
364 |
#: ../../admin/wp-slimstat-admin.php:744
|
365 |
#: ../../admin/view/wp-slimstat-db.php:51
|
607 |
#: ../../admin/config/index.php:21
|
608 |
#, fuzzy
|
609 |
msgid "Enable Tracking"
|
610 |
+
msgstr "Activer le traçage"
|
611 |
|
612 |
#: ../../admin/config/index.php:21
|
613 |
msgid ""
|
620 |
#: ../../admin/config/index.php:22
|
621 |
#, fuzzy
|
622 |
msgid "Monitor Admin Pages"
|
623 |
+
msgstr "Tracer les pages Administrateur"
|
624 |
|
625 |
#: ../../admin/config/index.php:22
|
|
|
626 |
msgid "Enable this option to track your users' activity within the admin."
|
627 |
msgstr ""
|
628 |
+
"Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
|
|
|
629 |
|
630 |
#: ../../admin/config/index.php:23
|
631 |
msgid "Enable Spy Mode"
|
632 |
msgstr "Activer le mode espion"
|
633 |
|
634 |
#: ../../admin/config/index.php:23
|
|
|
635 |
msgid ""
|
636 |
"Collect information about screen resolutions, outbound links, downloads, "
|
637 |
"etc. If Tracking Mode is set to Javascript, this data will be tracked "
|
638 |
"regardless of which value you set for this option."
|
639 |
msgstr ""
|
640 |
+
"Collecte des données sur les résolutions d'écran, les liens sortants, les "
|
641 |
+
"téléchargements et autres informations pertinentes. Si le mode Javascript "
|
642 |
+
"est activé, ces informations seront suivies indépendamment de la valeur "
|
643 |
+
"définie pour cette option."
|
|
|
644 |
|
645 |
#: ../../admin/config/index.php:24
|
|
|
646 |
msgid "Tracking Mode"
|
647 |
+
msgstr "Mode traçage"
|
648 |
|
649 |
#: ../../admin/config/index.php:24
|
|
|
650 |
msgid ""
|
651 |
"Select <strong>Javascript</strong> if you are using a caching plugin (W3 "
|
652 |
"Total Cache, WP SuperCache, HyperCache, etc). WP SlimStat will behave pretty "
|
657 |
"Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
|
658 |
"Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
|
659 |
"et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
|
660 |
+
"ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
|
661 |
+
"recherche et autres robots ne seront pas suivis."
|
662 |
|
663 |
#: ../../admin/config/index.php:24
|
664 |
#, fuzzy
|
683 |
"Choose between a standalone admin menu for WP SlimStat or a drop down in the "
|
684 |
"admin bar (if visible)."
|
685 |
msgstr ""
|
686 |
+
"Choisir entre un menu d'administration dans la barre latérale de WordPress "
|
687 |
+
"ou un menu déroulant dans la barre supérieure (si elle est affichée)."
|
|
|
688 |
|
689 |
#: ../../admin/config/index.php:27
|
690 |
msgid "Side Menu"
|
697 |
#: ../../admin/config/index.php:28
|
698 |
#, fuzzy
|
699 |
msgid "Add Stats to Posts"
|
700 |
+
msgstr "Etendre les Stats aux articles"
|
701 |
|
702 |
#: ../../admin/config/index.php:28
|
703 |
#, fuzzy
|
704 |
msgid ""
|
705 |
"Add a new column to the Edit Posts screen, with the number of hits per post."
|
706 |
msgstr ""
|
707 |
+
"Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
|
708 |
+
"de visites par article (peut ralentir le rendu des pages)."
|
709 |
|
710 |
#: ../../admin/config/index.php:30
|
711 |
msgid "Database"
|
730 |
msgstr "Prochain nettoyage le"
|
731 |
|
732 |
#: ../../admin/config/index.php:31
|
733 |
+
#, php-format
|
734 |
msgid "Entries logged on or before %s will be permanently deleted."
|
735 |
msgstr ""
|
736 |
+
"Les données enregistrées le ou avant le %s seront définitivement supprimées. "
|
737 |
|
738 |
#: ../../admin/config/index.php:31 ../../admin/view/index.php:77
|
739 |
#: ../../admin/view/wp-slimstat-db.php:75
|
744 |
#: ../../admin/config/index.php:46
|
745 |
#, fuzzy
|
746 |
msgid "Data and Formats"
|
747 |
+
msgstr "Données et Formats"
|
748 |
|
749 |
#: ../../admin/config/index.php:47
|
750 |
msgid "Convert IP Addresses"
|
764 |
"Choose the number format you want to use for your reports, European or "
|
765 |
"American."
|
766 |
msgstr ""
|
767 |
+
"Choisissez le format numérique que vous souhaitez utiliser, européen ou "
|
768 |
"américain."
|
769 |
|
770 |
#: ../../admin/config/index.php:49
|
819 |
"Load all the reports dynamically. It makes the reports render faster, but it "
|
820 |
"increases the load on your server."
|
821 |
msgstr ""
|
822 |
+
"Utiliser Ajax pour charger dynamiquement les statistiques. Fait apparaitre "
|
823 |
+
"les rapports plus rapidement, mais consomme plus de ressources sur le "
|
824 |
"serveur."
|
825 |
|
826 |
#: ../../admin/config/index.php:55
|
836 |
#: ../../admin/config/index.php:56 ../../admin/config/index.php:60
|
837 |
#, fuzzy
|
838 |
msgid "Rows to Display"
|
839 |
+
msgstr "Colonnes à afficher"
|
840 |
|
841 |
#: ../../admin/config/index.php:56
|
842 |
msgid "Specify the number of items in each report."
|
1178 |
|
1179 |
#: ../../admin/config/index.php:153
|
1180 |
msgid "Read access: username not found"
|
1181 |
+
msgstr "Accès lecture : username inexistant"
|
1182 |
|
1183 |
#: ../../admin/config/index.php:166 ../../admin/config/index.php:197
|
1184 |
msgid ""
|
1192 |
|
1193 |
#: ../../admin/config/index.php:184
|
1194 |
msgid "Config access: username not found"
|
1195 |
+
msgstr "Accès configuration : username inexistant"
|
1196 |
|
1197 |
#: ../../admin/config/index.php:208
|
1198 |
msgid "Detect Smoothing"
|
1890 |
# Arabic (United Arab Emirates)
|
1891 |
#: ../../admin/lang/dynamic_strings.php:75
|
1892 |
msgid "l-ar-ae"
|
1893 |
+
msgstr "Arabe (Émirats arabes unis)"
|
1894 |
|
1895 |
# Arabic (Bahrain)
|
1896 |
#: ../../admin/lang/dynamic_strings.php:76
|
1897 |
msgid "l-ar-bh"
|
1898 |
+
msgstr "Arabe (Bahreïn)"
|
1899 |
|
1900 |
# Arabic (Algeria)
|
1901 |
#: ../../admin/lang/dynamic_strings.php:77
|
1902 |
msgid "l-ar-dz"
|
1903 |
+
msgstr "Arabe (Algérie)"
|
1904 |
|
1905 |
# Arabic (Egypt)
|
1906 |
#: ../../admin/lang/dynamic_strings.php:78
|
1907 |
msgid "l-ar-eg"
|
1908 |
+
msgstr "Arabe (Égypte)"
|
1909 |
|
1910 |
# Arabic (Iraq)
|
1911 |
#: ../../admin/lang/dynamic_strings.php:79
|
1920 |
# Arabic (Kuwait)
|
1921 |
#: ../../admin/lang/dynamic_strings.php:81
|
1922 |
msgid "l-ar-kw"
|
1923 |
+
msgstr "Arabe (Koweït)"
|
1924 |
|
1925 |
# Arabic (Lebanon)
|
1926 |
#: ../../admin/lang/dynamic_strings.php:82
|
1965 |
# Arabic (Yemen)
|
1966 |
#: ../../admin/lang/dynamic_strings.php:90
|
1967 |
msgid "l-ar-ye"
|
1968 |
+
msgstr "Arabe (Yémen)"
|
1969 |
|
1970 |
# Azerbaijani
|
1971 |
#: ../../admin/lang/dynamic_strings.php:91
|
1972 |
msgid "l-az"
|
1973 |
+
msgstr "Azéri"
|
1974 |
|
1975 |
# Azerbaijani
|
1976 |
#: ../../admin/lang/dynamic_strings.php:92
|
1980 |
# Belarusian
|
1981 |
#: ../../admin/lang/dynamic_strings.php:93
|
1982 |
msgid "l-be"
|
1983 |
+
msgstr "Biélorusse"
|
1984 |
|
1985 |
# Belarusian
|
1986 |
#: ../../admin/lang/dynamic_strings.php:94
|
2016 |
# Czech
|
2017 |
#: ../../admin/lang/dynamic_strings.php:100
|
2018 |
msgid "l-cs"
|
2019 |
+
msgstr "Tchèque"
|
2020 |
|
2021 |
# Czech
|
2022 |
#: ../../admin/lang/dynamic_strings.php:101
|
2091 |
# Greek (Greece)
|
2092 |
#: ../../admin/lang/dynamic_strings.php:115
|
2093 |
msgid "l-el-gr"
|
2094 |
+
msgstr "Grec moderne (Grèce)"
|
2095 |
|
2096 |
# English
|
2097 |
#: ../../admin/lang/dynamic_strings.php:116
|
2132 |
# English (Jamaica)
|
2133 |
#: ../../admin/lang/dynamic_strings.php:123
|
2134 |
msgid "l-en-jm"
|
2135 |
+
msgstr "Anglais (Jamaïque)"
|
2136 |
|
2137 |
# English (New Zealand)
|
2138 |
#: ../../admin/lang/dynamic_strings.php:124
|
2139 |
msgid "l-en-nz"
|
2140 |
+
msgstr "Anglais (Nouvelle-Zélande)"
|
2141 |
|
2142 |
# English
|
2143 |
#: ../../admin/lang/dynamic_strings.php:125
|
2148 |
# English (Trinidad)
|
2149 |
#: ../../admin/lang/dynamic_strings.php:126
|
2150 |
msgid "l-en-tt"
|
2151 |
+
msgstr "Anglais (Trinité)"
|
2152 |
|
2153 |
# English (United States)
|
2154 |
#: ../../admin/lang/dynamic_strings.php:127
|
2155 |
msgid "l-en-us"
|
2156 |
+
msgstr "Anglais (États-Unis)"
|
2157 |
|
2158 |
# English (South Africa)
|
2159 |
#: ../../admin/lang/dynamic_strings.php:128
|
2169 |
# Esperanto
|
2170 |
#: ../../admin/lang/dynamic_strings.php:130
|
2171 |
msgid "l-eo"
|
2172 |
+
msgstr "Espéranto"
|
2173 |
|
2174 |
# Spanish; Castilian
|
2175 |
#: ../../admin/lang/dynamic_strings.php:131
|
2204 |
# Spanish (Dominican Republic)
|
2205 |
#: ../../admin/lang/dynamic_strings.php:137
|
2206 |
msgid "l-es-do"
|
2207 |
+
msgstr "Espagnol (République dominicaine)"
|
2208 |
|
2209 |
# Spanish (Ecuador)
|
2210 |
#: ../../admin/lang/dynamic_strings.php:138
|
2211 |
msgid "l-es-ec"
|
2212 |
+
msgstr "Espagnol (Équateur)"
|
2213 |
|
2214 |
# Spanish (Spain)
|
2215 |
#: ../../admin/lang/dynamic_strings.php:139
|
2244 |
# Spanish (Peru)
|
2245 |
#: ../../admin/lang/dynamic_strings.php:145
|
2246 |
msgid "l-es-pe"
|
2247 |
+
msgstr "Espagnol (Pérou)"
|
2248 |
|
2249 |
# Spanish (Puerto Rico)
|
2250 |
#: ../../admin/lang/dynamic_strings.php:146
|
2318 |
# Faroese
|
2319 |
#: ../../admin/lang/dynamic_strings.php:159
|
2320 |
msgid "l-fo"
|
2321 |
+
msgstr "Féringien"
|
2322 |
|
2323 |
# Faroese
|
2324 |
#: ../../admin/lang/dynamic_strings.php:160
|
2328 |
# French
|
2329 |
#: ../../admin/lang/dynamic_strings.php:161
|
2330 |
msgid "l-fr"
|
2331 |
+
msgstr "Français"
|
2332 |
|
2333 |
# French (Belgium)
|
2334 |
#: ../../admin/lang/dynamic_strings.php:162
|
2335 |
msgid "l-fr-be"
|
2336 |
+
msgstr "Français (Belgique)"
|
2337 |
|
2338 |
# French (Canada)
|
2339 |
#: ../../admin/lang/dynamic_strings.php:163
|
2340 |
msgid "l-fr-ca"
|
2341 |
+
msgstr "Français (Canada)"
|
2342 |
|
2343 |
# French (Switzerland)
|
2344 |
#: ../../admin/lang/dynamic_strings.php:164
|
2345 |
msgid "l-fr-ch"
|
2346 |
+
msgstr "Français (Suisse)"
|
2347 |
|
2348 |
# French (France)
|
2349 |
#: ../../admin/lang/dynamic_strings.php:165
|
2350 |
msgid "l-fr-fr"
|
2351 |
+
msgstr "Français (France)"
|
2352 |
|
2353 |
# French (Luxembourg)
|
2354 |
#: ../../admin/lang/dynamic_strings.php:166
|
2355 |
msgid "l-fr-lu"
|
2356 |
+
msgstr "Français (Luxembourg)"
|
2357 |
|
2358 |
# French (Switzerland)
|
2359 |
#: ../../admin/lang/dynamic_strings.php:167
|
2373 |
# Gujarati
|
2374 |
#: ../../admin/lang/dynamic_strings.php:170
|
2375 |
msgid "l-gu"
|
2376 |
+
msgstr "Gujarati"
|
2377 |
|
2378 |
# Gujarati
|
2379 |
#: ../../admin/lang/dynamic_strings.php:171
|
2380 |
msgid "l-gu-in"
|
2381 |
+
msgstr "Gujarati"
|
2382 |
|
2383 |
# Hebrew
|
2384 |
#: ../../admin/lang/dynamic_strings.php:172
|
2385 |
msgid "l-he"
|
2386 |
+
msgstr "Hébreu"
|
2387 |
|
2388 |
# Hebrew (Israel)
|
2389 |
#: ../../admin/lang/dynamic_strings.php:173
|
2390 |
msgid "l-he-il"
|
2391 |
+
msgstr "Hébreu (Israël)"
|
2392 |
|
2393 |
# Hindi
|
2394 |
#: ../../admin/lang/dynamic_strings.php:174
|
2395 |
msgid "l-hi"
|
2396 |
+
msgstr "Hindi"
|
2397 |
|
2398 |
# Hindi
|
2399 |
#: ../../admin/lang/dynamic_strings.php:175
|
2430 |
# Armenian
|
2431 |
#: ../../admin/lang/dynamic_strings.php:181
|
2432 |
msgid "l-hy"
|
2433 |
+
msgstr "Arménien"
|
2434 |
|
2435 |
# Armenian
|
2436 |
#: ../../admin/lang/dynamic_strings.php:182
|
2440 |
# Indonesian
|
2441 |
#: ../../admin/lang/dynamic_strings.php:183
|
2442 |
msgid "l-id"
|
2443 |
+
msgstr "Indonésien"
|
2444 |
|
2445 |
# Indonesian
|
2446 |
#: ../../admin/lang/dynamic_strings.php:184
|
2486 |
# Georgian
|
2487 |
#: ../../admin/lang/dynamic_strings.php:192
|
2488 |
msgid "l-ka"
|
2489 |
+
msgstr "Géorgien"
|
2490 |
|
2491 |
# Georgian
|
2492 |
#: ../../admin/lang/dynamic_strings.php:193
|
2518 |
# Korean
|
2519 |
#: ../../admin/lang/dynamic_strings.php:198
|
2520 |
msgid "l-ko"
|
2521 |
+
msgstr "Coréen"
|
2522 |
|
2523 |
# Korean (Republic of Korea)
|
2524 |
#: ../../admin/lang/dynamic_strings.php:199
|
2525 |
msgid "l-ko-kr"
|
2526 |
+
msgstr "Coréen (République de Corée)"
|
2527 |
|
2528 |
# Korean
|
2529 |
#: ../../admin/lang/dynamic_strings.php:200
|
2530 |
msgid "l-kok"
|
2531 |
+
msgstr "Coréen"
|
2532 |
|
2533 |
# Korean
|
2534 |
#: ../../admin/lang/dynamic_strings.php:201
|
2535 |
msgid "l-kok-in"
|
2536 |
+
msgstr "Coréen"
|
2537 |
|
2538 |
# Kirghiz; Kyrgyz
|
2539 |
#: ../../admin/lang/dynamic_strings.php:202
|
2570 |
# Maori
|
2571 |
#: ../../admin/lang/dynamic_strings.php:208
|
2572 |
msgid "l-mi"
|
2573 |
+
msgstr "Maori"
|
2574 |
|
2575 |
# Maori
|
2576 |
#: ../../admin/lang/dynamic_strings.php:209
|
2577 |
#, fuzzy
|
2578 |
msgid "l-mi-nz"
|
2579 |
+
msgstr "Maori"
|
2580 |
|
2581 |
# Macedonian
|
2582 |
#: ../../admin/lang/dynamic_strings.php:210
|
2583 |
msgid "l-mk"
|
2584 |
+
msgstr "Macédonien"
|
2585 |
|
2586 |
# Macedonian
|
2587 |
#: ../../admin/lang/dynamic_strings.php:211
|
2602 |
# Marathi
|
2603 |
#: ../../admin/lang/dynamic_strings.php:214
|
2604 |
msgid "l-mr"
|
2605 |
+
msgstr "Marathi"
|
2606 |
|
2607 |
# Marathi
|
2608 |
#: ../../admin/lang/dynamic_strings.php:215
|
2609 |
msgid "l-mr-in"
|
2610 |
+
msgstr "Marathi"
|
2611 |
|
2612 |
# Malay
|
2613 |
#: ../../admin/lang/dynamic_strings.php:216
|
2637 |
msgid "l-mt-mt"
|
2638 |
msgstr "Maltais"
|
2639 |
|
2640 |
+
# Norwegian Bokmål
|
2641 |
#: ../../admin/lang/dynamic_strings.php:221
|
2642 |
msgid "l-nb"
|
2643 |
+
msgstr "Norvégien Bokmål"
|
2644 |
|
2645 |
+
# Norwegian Bokmål
|
2646 |
#: ../../admin/lang/dynamic_strings.php:222
|
2647 |
msgid "l-nb-no"
|
2648 |
msgstr "Norvegien"
|
2650 |
# Dutch; Flemish
|
2651 |
#: ../../admin/lang/dynamic_strings.php:223
|
2652 |
msgid "l-nl"
|
2653 |
+
msgstr "Néerlandais; Flamand"
|
2654 |
|
2655 |
# Dutch (Belgium)
|
2656 |
#: ../../admin/lang/dynamic_strings.php:224
|
2657 |
msgid "l-nl-be"
|
2658 |
+
msgstr "Néerlandais (Belgique)"
|
2659 |
|
2660 |
# Dutch (Netherlands)
|
2661 |
#: ../../admin/lang/dynamic_strings.php:225
|
2662 |
msgid "l-nl-nl"
|
2663 |
+
msgstr "Néerlandais (Pays-bas)"
|
2664 |
|
2665 |
# Norwegian Nynorsk
|
2666 |
#: ../../admin/lang/dynamic_strings.php:226
|
2678 |
# Panjabi; Punjabi
|
2679 |
#: ../../admin/lang/dynamic_strings.php:229
|
2680 |
msgid "l-pa"
|
2681 |
+
msgstr "Panjabi"
|
2682 |
|
2683 |
# Panjabi; Punjabi
|
2684 |
#: ../../admin/lang/dynamic_strings.php:230
|
2714 |
# Portuguese (Brazil)
|
2715 |
#: ../../admin/lang/dynamic_strings.php:236
|
2716 |
msgid "l-pt-br"
|
2717 |
+
msgstr "Portugais (Brésil)"
|
2718 |
|
2719 |
# Portuguese
|
2720 |
#: ../../admin/lang/dynamic_strings.php:237
|
2762 |
# Russian (Russia)
|
2763 |
#: ../../admin/lang/dynamic_strings.php:245
|
2764 |
msgid "l-ru-ru"
|
2765 |
+
msgstr "Russe (Fédération de Russie)"
|
2766 |
|
2767 |
# Sanskrit
|
2768 |
#: ../../admin/lang/dynamic_strings.php:246
|
2810 |
# Slovenian
|
2811 |
#: ../../admin/lang/dynamic_strings.php:254
|
2812 |
msgid "l-sl"
|
2813 |
+
msgstr "Slovène"
|
2814 |
|
2815 |
# Slovenian
|
2816 |
#: ../../admin/lang/dynamic_strings.php:255
|
2843 |
# Swedish
|
2844 |
#: ../../admin/lang/dynamic_strings.php:260
|
2845 |
msgid "l-sv"
|
2846 |
+
msgstr "Suédois"
|
2847 |
|
2848 |
# Swedish (Finland)
|
2849 |
#: ../../admin/lang/dynamic_strings.php:261
|
2850 |
msgid "l-sv-fi"
|
2851 |
+
msgstr "Suédois (Finlande)"
|
2852 |
|
2853 |
# Swedish (Sweden)
|
2854 |
#: ../../admin/lang/dynamic_strings.php:262
|
2855 |
msgid "l-sv-se"
|
2856 |
+
msgstr "Suédois (Suède)"
|
2857 |
|
2858 |
# Swahili
|
2859 |
#: ../../admin/lang/dynamic_strings.php:263
|
2880 |
# Telugu
|
2881 |
#: ../../admin/lang/dynamic_strings.php:267
|
2882 |
msgid "l-te"
|
2883 |
+
msgstr "Télougou"
|
2884 |
|
2885 |
# Telugu
|
2886 |
#: ../../admin/lang/dynamic_strings.php:268
|
2890 |
# Thai
|
2891 |
#: ../../admin/lang/dynamic_strings.php:269
|
2892 |
msgid "l-th"
|
2893 |
+
msgstr "Thaï"
|
2894 |
|
2895 |
# Thai
|
2896 |
#: ../../admin/lang/dynamic_strings.php:270
|
3026 |
# Chinese (Taiwan)
|
3027 |
#: ../../admin/lang/dynamic_strings.php:295
|
3028 |
msgid "l-zh-tw"
|
3029 |
+
msgstr "Chinois (Taïwan)"
|
3030 |
|
3031 |
# Zulu
|
3032 |
#: ../../admin/lang/dynamic_strings.php:296
|
5676 |
# Azerbaijani
|
5677 |
#, fuzzy
|
5678 |
#~ msgid "l-az-AZ"
|
5679 |
+
#~ msgstr "Azéri"
|
5680 |
|
5681 |
# Belarusian
|
5682 |
#, fuzzy
|
5683 |
#~ msgid "l-be-BY"
|
5684 |
+
#~ msgstr "Biélorusse"
|
5685 |
|
5686 |
# Bulgarian
|
5687 |
#, fuzzy
|
5696 |
# Czech
|
5697 |
#, fuzzy
|
5698 |
#~ msgid "l-cs-CZ"
|
5699 |
+
#~ msgstr "Tchèque"
|
5700 |
|
5701 |
# Welsh
|
5702 |
#, fuzzy
|
5926 |
# Faroese
|
5927 |
#, fuzzy
|
5928 |
#~ msgid "l-fo-FO"
|
5929 |
+
#~ msgstr "Féringien"
|
5930 |
|
5931 |
# French
|
5932 |
#, fuzzy
|
5933 |
#~ msgid "l-fr-BE"
|
5934 |
+
#~ msgstr "Français"
|
5935 |
|
5936 |
# French
|
5937 |
#, fuzzy
|
5938 |
#~ msgid "l-fr-CA"
|
5939 |
+
#~ msgstr "Français"
|
5940 |
|
5941 |
# French
|
5942 |
#, fuzzy
|
5943 |
#~ msgid "l-fr-CH"
|
5944 |
+
#~ msgstr "Français"
|
5945 |
|
5946 |
# French
|
5947 |
#, fuzzy
|
5948 |
#~ msgid "l-fr-FR"
|
5949 |
+
#~ msgstr "Français"
|
5950 |
|
5951 |
# French
|
5952 |
#, fuzzy
|
5953 |
#~ msgid "l-fr-LU"
|
5954 |
+
#~ msgstr "Français"
|
5955 |
|
5956 |
# French
|
5957 |
#, fuzzy
|
5958 |
#~ msgid "l-fr-MC"
|
5959 |
+
#~ msgstr "Français"
|
5960 |
|
5961 |
# Galician
|
5962 |
#, fuzzy
|
5966 |
# Gujarati
|
5967 |
#, fuzzy
|
5968 |
#~ msgid "l-gu-IN"
|
5969 |
+
#~ msgstr "Gujarati"
|
5970 |
|
5971 |
# Hebrew
|
5972 |
#, fuzzy
|
5973 |
#~ msgid "l-he-IL"
|
5974 |
+
#~ msgstr "Hébreu"
|
5975 |
|
5976 |
# Hindi
|
5977 |
#, fuzzy
|
5978 |
#~ msgid "l-hi-IN"
|
5979 |
+
#~ msgstr "Hindi"
|
5980 |
|
5981 |
# Croatian
|
5982 |
#, fuzzy
|
5996 |
# Armenian
|
5997 |
#, fuzzy
|
5998 |
#~ msgid "l-hy-AM"
|
5999 |
+
#~ msgstr "Arménien"
|
6000 |
|
6001 |
# Indonesian
|
6002 |
#, fuzzy
|
6003 |
#~ msgid "l-id-ID"
|
6004 |
+
#~ msgstr "Indonésien"
|
6005 |
|
6006 |
# Icelandic
|
6007 |
#, fuzzy
|
6026 |
# Georgian
|
6027 |
#, fuzzy
|
6028 |
#~ msgid "l-ka-GE"
|
6029 |
+
#~ msgstr "Géorgien"
|
6030 |
|
6031 |
# Kazakh
|
6032 |
#, fuzzy
|
6041 |
# Korean
|
6042 |
#, fuzzy
|
6043 |
#~ msgid "l-ko-KR"
|
6044 |
+
#~ msgstr "Coréen"
|
6045 |
|
6046 |
# Korean
|
6047 |
#, fuzzy
|
6048 |
#~ msgid "l-kok-IN"
|
6049 |
+
#~ msgstr "Coréen"
|
6050 |
|
6051 |
# Kirghiz; Kyrgyz
|
6052 |
#, fuzzy
|
6066 |
# Maori
|
6067 |
#, fuzzy
|
6068 |
#~ msgid "l-mi-NZ"
|
6069 |
+
#~ msgstr "Maori"
|
6070 |
|
6071 |
# Macedonian
|
6072 |
#, fuzzy
|
6073 |
#~ msgid "l-mk-MK"
|
6074 |
+
#~ msgstr "Macédonien"
|
6075 |
|
6076 |
# Mongolian
|
6077 |
#, fuzzy
|
6081 |
# Marathi
|
6082 |
#, fuzzy
|
6083 |
#~ msgid "l-mr-IN"
|
6084 |
+
#~ msgstr "Marathi"
|
6085 |
|
6086 |
# Malay
|
6087 |
#, fuzzy
|
6098 |
#~ msgid "l-mt-MT"
|
6099 |
#~ msgstr "Maltais"
|
6100 |
|
6101 |
+
# Norwegian Bokmål
|
6102 |
#, fuzzy
|
6103 |
#~ msgid "l-nb-NO"
|
6104 |
+
#~ msgstr "Norvégien Bokmål"
|
6105 |
|
6106 |
# Dutch; Flemish
|
6107 |
#, fuzzy
|
6108 |
#~ msgid "l-nl-BE"
|
6109 |
+
#~ msgstr "Néerlandais; Flamand"
|
6110 |
|
6111 |
# Dutch; Flemish
|
6112 |
#, fuzzy
|
6113 |
#~ msgid "l-nl-NL"
|
6114 |
+
#~ msgstr "Néerlandais; Flamand"
|
6115 |
|
6116 |
# Panjabi; Punjabi
|
6117 |
#, fuzzy
|
6118 |
#~ msgid "l-pa-IN"
|
6119 |
+
#~ msgstr "Panjabi"
|
6120 |
|
6121 |
# Polish
|
6122 |
#, fuzzy
|
6191 |
# Slovenian
|
6192 |
#, fuzzy
|
6193 |
#~ msgid "l-sl-SI"
|
6194 |
+
#~ msgstr "Slovène"
|
6195 |
|
6196 |
# Albanian
|
6197 |
#, fuzzy
|
6206 |
# Swedish
|
6207 |
#, fuzzy
|
6208 |
#~ msgid "l-sv-FI"
|
6209 |
+
#~ msgstr "Suédois"
|
6210 |
|
6211 |
# Swedish
|
6212 |
#, fuzzy
|
6213 |
#~ msgid "l-sv-SE"
|
6214 |
+
#~ msgstr "Suédois"
|
6215 |
|
6216 |
# Swahili
|
6217 |
#, fuzzy
|
6226 |
# Telugu
|
6227 |
#, fuzzy
|
6228 |
#~ msgid "l-te-IN"
|
6229 |
+
#~ msgstr "Télougou"
|
6230 |
|
6231 |
# Thai
|
6232 |
#, fuzzy
|
6233 |
#~ msgid "l-th-TH"
|
6234 |
+
#~ msgstr "Thaï"
|
6235 |
|
6236 |
# Tagalog
|
6237 |
#, fuzzy
|
6555 |
|
6556 |
# Bengali
|
6557 |
#~ msgid "l-bn"
|
6558 |
+
#~ msgstr "Bengali"
|
6559 |
|
6560 |
# Tibetan
|
6561 |
#~ msgid "l-bo"
|
6562 |
+
#~ msgstr "Tibétain"
|
6563 |
|
6564 |
# Breton
|
6565 |
#~ msgid "l-br"
|
6567 |
|
6568 |
# Chechen
|
6569 |
#~ msgid "l-ce"
|
6570 |
+
#~ msgstr "Tchétchène"
|
6571 |
|
6572 |
# Corsican
|
6573 |
#~ msgid "l-co"
|
6603 |
|
6604 |
# Scottish Gaelic; Gaelic
|
6605 |
#~ msgid "l-gd"
|
6606 |
+
#~ msgstr "Écossais"
|
6607 |
|
6608 |
# Guarani
|
6609 |
#~ msgid "l-gn"
|
6619 |
|
6620 |
# Haitian; Haitian Creole
|
6621 |
#~ msgid "l-ht"
|
6622 |
+
#~ msgstr "Haïtien; Créole haïtien"
|
6623 |
|
6624 |
# Interlingua (International Auxiliary Language Association)
|
6625 |
#~ msgid "l-ia"
|
6639 |
|
6640 |
# Indonesian
|
6641 |
#~ msgid "l-in"
|
6642 |
+
#~ msgstr "Indonésien"
|
6643 |
|
6644 |
# Ido
|
6645 |
#~ msgid "l-io"
|
6647 |
|
6648 |
# Hebrew
|
6649 |
#~ msgid "l-iw"
|
6650 |
+
#~ msgstr "Hébreu"
|
6651 |
|
6652 |
# Yiddish
|
6653 |
#~ msgid "l-ji"
|
6755 |
|
6756 |
# North Ndebele
|
6757 |
#~ msgid "l-nd"
|
6758 |
+
#~ msgstr "Ndébélé du Nord"
|
6759 |
|
6760 |
# Nepali
|
6761 |
#~ msgid "l-ne"
|
6762 |
+
#~ msgstr "Népalais"
|
6763 |
|
6764 |
# Ndonga
|
6765 |
#~ msgid "l-ng"
|
6767 |
|
6768 |
# Norwegian
|
6769 |
#~ msgid "l-no"
|
6770 |
+
#~ msgstr "Norvégien"
|
6771 |
|
6772 |
# Navajo; Navaho
|
6773 |
#~ msgid "l-nv"
|
6783 |
|
6784 |
# Ojibwa
|
6785 |
#~ msgid "l-oj"
|
6786 |
+
#~ msgstr "Ojibwé"
|
6787 |
|
6788 |
# Oromo
|
6789 |
#~ msgid "l-om"
|
6795 |
|
6796 |
# Ossetian; Ossetic
|
6797 |
#~ msgid "l-os"
|
6798 |
+
#~ msgstr "Ossète"
|
6799 |
|
6800 |
# Pali
|
6801 |
#~ msgid "l-pi"
|
6802 |
+
#~ msgstr "Pali"
|
6803 |
|
6804 |
# Romansh
|
6805 |
#~ msgid "l-rm"
|
6867 |
|
6868 |
# Turkmen
|
6869 |
#~ msgid "l-tk"
|
6870 |
+
#~ msgstr "Turkmène"
|
6871 |
|
6872 |
# Tonga (Tonga Islands)
|
6873 |
#~ msgid "l-to"
|
6879 |
|
6880 |
# Uighur; Uyghur
|
6881 |
#~ msgid "l-ug"
|
6882 |
+
#~ msgstr "Ouïghour"
|
6883 |
|
6884 |
# Venda
|
6885 |
#~ msgid "l-ve"
|
6886 |
#~ msgstr "Venda"
|
6887 |
|
6888 |
+
# Volapük
|
6889 |
#~ msgid "l-vo"
|
6890 |
+
#~ msgstr "Volapük"
|
6891 |
|
6892 |
# Wolof
|
6893 |
#~ msgid "l-wo"
|
6911 |
|
6912 |
# Korean (Democratic People's Republic of Korea)
|
6913 |
#~ msgid "l-ko-kp"
|
6914 |
+
#~ msgstr "Coréen (République populaire démocratique de Corée)"
|
6915 |
|
6916 |
# Romanian (Moldava)
|
6917 |
#~ msgid "l-ro-md"
|
6998 |
|
6999 |
# South Ndebele
|
7000 |
#~ msgid "l-nr"
|
7001 |
+
#~ msgstr "Ndébélé du Sud"
|
7002 |
|
7003 |
# Twi
|
7004 |
#~ msgid "l-tw"
|
admin/lang/wp-slimstat-fr_FR.mo
CHANGED
Binary file
|
admin/lang/wp-slimstat-fr_FR.po
CHANGED
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: WP SlimStat\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-03-02 22:44-0500\n"
|
6 |
-
"PO-Revision-Date: 2014-
|
7 |
"Last-Translator: Get Used To IT <support@getused.to.it>\n"
|
8 |
"Language-Team: Michael Bastin\n"
|
9 |
"Language: fr_FR\n"
|
@@ -74,8 +74,9 @@ msgstr "Réglages"
|
|
74 |
|
75 |
#: ../../admin/wp-slimstat-admin.php:410 ../../admin/wp-slimstat-admin.php:422
|
76 |
#: ../../admin/wp-slimstat-admin.php:425
|
|
|
77 |
msgid "SlimStat"
|
78 |
-
msgstr "SlimStat"
|
79 |
|
80 |
#: ../../admin/wp-slimstat-admin.php:528
|
81 |
msgid "Pageviews in the last 365 days"
|
@@ -138,7 +139,7 @@ msgid ""
|
|
138 |
"SlimStat logs a pageview each time the tracking code is executed"
|
139 |
msgstr ""
|
140 |
"Une demande de chargement d'un simple fichier HTML (\"une page\"). À "
|
141 |
-
"distinguer d'un \"hit\", qui se réfère à une requête d'un
|
142 |
"d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
|
143 |
"code de traçage est exécuté"
|
144 |
|
@@ -358,7 +359,7 @@ msgstr "Référent"
|
|
358 |
|
359 |
#: ../../admin/wp-slimstat-admin.php:743
|
360 |
msgid "Complete address of the referrer page"
|
361 |
-
msgstr "Adresse complète
|
362 |
|
363 |
#: ../../admin/wp-slimstat-admin.php:744
|
364 |
#: ../../admin/view/wp-slimstat-db.php:51
|
@@ -617,13 +618,12 @@ msgstr ""
|
|
617 |
|
618 |
#: ../../admin/config/index.php:22
|
619 |
msgid "Monitor Admin Pages"
|
620 |
-
msgstr "
|
621 |
|
622 |
#: ../../admin/config/index.php:22
|
623 |
msgid "Enable this option to track your users' activity within the admin."
|
624 |
msgstr ""
|
625 |
-
"Activez cette option
|
626 |
-
"dans l'admin."
|
627 |
|
628 |
#: ../../admin/config/index.php:23
|
629 |
msgid "Enable Spy Mode"
|
@@ -635,10 +635,10 @@ msgid ""
|
|
635 |
"etc. If Tracking Mode is set to Javascript, this data will be tracked "
|
636 |
"regardless of which value you set for this option."
|
637 |
msgstr ""
|
638 |
-
"
|
639 |
-
"
|
640 |
-
"
|
641 |
-
"
|
642 |
|
643 |
#: ../../admin/config/index.php:24
|
644 |
msgid "Tracking Mode"
|
@@ -655,8 +655,8 @@ msgstr ""
|
|
655 |
"Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
|
656 |
"Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
|
657 |
"et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
|
658 |
-
"ignorés.
|
659 |
-
"
|
660 |
|
661 |
#: ../../admin/config/index.php:24
|
662 |
msgid "Javascript"
|
@@ -680,7 +680,7 @@ msgid ""
|
|
680 |
"admin bar (if visible)."
|
681 |
msgstr ""
|
682 |
"Choisir entre un menu d'administration dans la barre latérale de WordPress "
|
683 |
-
"ou un menu déroulant dans la barre
|
684 |
|
685 |
#: ../../admin/config/index.php:27
|
686 |
msgid "Side Menu"
|
@@ -692,14 +692,14 @@ msgstr "Barre d'Administration"
|
|
692 |
|
693 |
#: ../../admin/config/index.php:28
|
694 |
msgid "Add Stats to Posts"
|
695 |
-
msgstr "Etendre les Stats aux
|
696 |
|
697 |
#: ../../admin/config/index.php:28
|
698 |
msgid ""
|
699 |
"Add a new column to the Edit Posts screen, with the number of hits per post."
|
700 |
msgstr ""
|
701 |
-
"Ajoute une
|
702 |
-
"
|
703 |
|
704 |
#: ../../admin/config/index.php:30
|
705 |
msgid "Database"
|
@@ -809,9 +809,9 @@ msgid ""
|
|
809 |
"Load all the reports dynamically. It makes the reports render faster, but it "
|
810 |
"increases the load on your server."
|
811 |
msgstr ""
|
812 |
-
"Utiliser Ajax pour charger
|
813 |
-
"
|
814 |
-
"
|
815 |
|
816 |
#: ../../admin/config/index.php:55
|
817 |
msgid "Expand Details"
|
@@ -1154,7 +1154,7 @@ msgstr ""
|
|
1154 |
|
1155 |
#: ../../admin/config/index.php:153
|
1156 |
msgid "Read access: username not found"
|
1157 |
-
msgstr "Accès lecture : username
|
1158 |
|
1159 |
#: ../../admin/config/index.php:166 ../../admin/config/index.php:197
|
1160 |
msgid ""
|
@@ -1168,7 +1168,7 @@ msgstr ""
|
|
1168 |
|
1169 |
#: ../../admin/config/index.php:184
|
1170 |
msgid "Config access: username not found"
|
1171 |
-
msgstr "Accès configuration : username
|
1172 |
|
1173 |
#: ../../admin/config/index.php:208
|
1174 |
msgid "Detect Smoothing"
|
@@ -1854,22 +1854,22 @@ msgstr "Arabe"
|
|
1854 |
# Arabic (United Arab Emirates)
|
1855 |
#: ../../admin/lang/dynamic_strings.php:75
|
1856 |
msgid "l-ar-ae"
|
1857 |
-
msgstr "Arabe (
|
1858 |
|
1859 |
# Arabic (Bahrain)
|
1860 |
#: ../../admin/lang/dynamic_strings.php:76
|
1861 |
msgid "l-ar-bh"
|
1862 |
-
msgstr "Arabe (
|
1863 |
|
1864 |
# Arabic (Algeria)
|
1865 |
#: ../../admin/lang/dynamic_strings.php:77
|
1866 |
msgid "l-ar-dz"
|
1867 |
-
msgstr "Arabe (
|
1868 |
|
1869 |
# Arabic (Egypt)
|
1870 |
#: ../../admin/lang/dynamic_strings.php:78
|
1871 |
msgid "l-ar-eg"
|
1872 |
-
msgstr "Arabe (
|
1873 |
|
1874 |
# Arabic (Iraq)
|
1875 |
#: ../../admin/lang/dynamic_strings.php:79
|
@@ -1884,7 +1884,7 @@ msgstr "Arabe (Jordanie)"
|
|
1884 |
# Arabic (Kuwait)
|
1885 |
#: ../../admin/lang/dynamic_strings.php:81
|
1886 |
msgid "l-ar-kw"
|
1887 |
-
msgstr "Arabe (
|
1888 |
|
1889 |
# Arabic (Lebanon)
|
1890 |
#: ../../admin/lang/dynamic_strings.php:82
|
@@ -1929,23 +1929,23 @@ msgstr "Arabe (Tunisie)"
|
|
1929 |
# Arabic (Yemen)
|
1930 |
#: ../../admin/lang/dynamic_strings.php:90
|
1931 |
msgid "l-ar-ye"
|
1932 |
-
msgstr "Arabe (
|
1933 |
|
1934 |
# Azerbaijani
|
1935 |
#: ../../admin/lang/dynamic_strings.php:91
|
1936 |
msgid "l-az"
|
1937 |
-
msgstr "
|
1938 |
|
1939 |
# Azerbaijani
|
1940 |
#: ../../admin/lang/dynamic_strings.php:92
|
1941 |
#, fuzzy
|
1942 |
msgid "l-az-az"
|
1943 |
-
msgstr "
|
1944 |
|
1945 |
# Belarusian
|
1946 |
#: ../../admin/lang/dynamic_strings.php:93
|
1947 |
msgid "l-be"
|
1948 |
-
msgstr "
|
1949 |
|
1950 |
# Belarusian
|
1951 |
#: ../../admin/lang/dynamic_strings.php:94
|
@@ -1982,7 +1982,7 @@ msgstr "Catalan; Valencien"
|
|
1982 |
# Czech
|
1983 |
#: ../../admin/lang/dynamic_strings.php:100
|
1984 |
msgid "l-cs"
|
1985 |
-
msgstr "
|
1986 |
|
1987 |
# Czech
|
1988 |
#: ../../admin/lang/dynamic_strings.php:101
|
@@ -2060,7 +2060,7 @@ msgstr "Grec moderne"
|
|
2060 |
# Greek (Greece)
|
2061 |
#: ../../admin/lang/dynamic_strings.php:115
|
2062 |
msgid "l-el-gr"
|
2063 |
-
msgstr "Grec moderne (
|
2064 |
|
2065 |
# English
|
2066 |
#: ../../admin/lang/dynamic_strings.php:116
|
@@ -2101,12 +2101,12 @@ msgstr "Anglais (Irlande)"
|
|
2101 |
# English (Jamaica)
|
2102 |
#: ../../admin/lang/dynamic_strings.php:123
|
2103 |
msgid "l-en-jm"
|
2104 |
-
msgstr "Anglais (
|
2105 |
|
2106 |
# English (New Zealand)
|
2107 |
#: ../../admin/lang/dynamic_strings.php:124
|
2108 |
msgid "l-en-nz"
|
2109 |
-
msgstr "Anglais (Nouvelle-
|
2110 |
|
2111 |
# English
|
2112 |
#: ../../admin/lang/dynamic_strings.php:125
|
@@ -2117,12 +2117,12 @@ msgstr "Anglais"
|
|
2117 |
# English (Trinidad)
|
2118 |
#: ../../admin/lang/dynamic_strings.php:126
|
2119 |
msgid "l-en-tt"
|
2120 |
-
msgstr "Anglais (
|
2121 |
|
2122 |
# English (United States)
|
2123 |
#: ../../admin/lang/dynamic_strings.php:127
|
2124 |
msgid "l-en-us"
|
2125 |
-
msgstr "Anglais (
|
2126 |
|
2127 |
# English (South Africa)
|
2128 |
#: ../../admin/lang/dynamic_strings.php:128
|
@@ -2138,7 +2138,7 @@ msgstr "Anglais (Afrique du Sud)"
|
|
2138 |
# Esperanto
|
2139 |
#: ../../admin/lang/dynamic_strings.php:130
|
2140 |
msgid "l-eo"
|
2141 |
-
msgstr "
|
2142 |
|
2143 |
# Spanish; Castilian
|
2144 |
#: ../../admin/lang/dynamic_strings.php:131
|
@@ -2173,12 +2173,12 @@ msgstr "Espagnol (Costa Rica)"
|
|
2173 |
# Spanish (Dominican Republic)
|
2174 |
#: ../../admin/lang/dynamic_strings.php:137
|
2175 |
msgid "l-es-do"
|
2176 |
-
msgstr "Espagnol (
|
2177 |
|
2178 |
# Spanish (Ecuador)
|
2179 |
#: ../../admin/lang/dynamic_strings.php:138
|
2180 |
msgid "l-es-ec"
|
2181 |
-
msgstr "Espagnol (
|
2182 |
|
2183 |
# Spanish (Spain)
|
2184 |
#: ../../admin/lang/dynamic_strings.php:139
|
@@ -2213,7 +2213,7 @@ msgstr "Espagnol (Panama)"
|
|
2213 |
# Spanish (Peru)
|
2214 |
#: ../../admin/lang/dynamic_strings.php:145
|
2215 |
msgid "l-es-pe"
|
2216 |
-
msgstr "Espagnol (
|
2217 |
|
2218 |
# Spanish (Puerto Rico)
|
2219 |
#: ../../admin/lang/dynamic_strings.php:146
|
@@ -2287,49 +2287,49 @@ msgstr "Finnois"
|
|
2287 |
# Faroese
|
2288 |
#: ../../admin/lang/dynamic_strings.php:159
|
2289 |
msgid "l-fo"
|
2290 |
-
msgstr "
|
2291 |
|
2292 |
# Faroese
|
2293 |
#: ../../admin/lang/dynamic_strings.php:160
|
2294 |
#, fuzzy
|
2295 |
msgid "l-fo-fo"
|
2296 |
-
msgstr "
|
2297 |
|
2298 |
# French
|
2299 |
#: ../../admin/lang/dynamic_strings.php:161
|
2300 |
msgid "l-fr"
|
2301 |
-
msgstr "
|
2302 |
|
2303 |
# French (Belgium)
|
2304 |
#: ../../admin/lang/dynamic_strings.php:162
|
2305 |
msgid "l-fr-be"
|
2306 |
-
msgstr "
|
2307 |
|
2308 |
# French (Canada)
|
2309 |
#: ../../admin/lang/dynamic_strings.php:163
|
2310 |
msgid "l-fr-ca"
|
2311 |
-
msgstr "
|
2312 |
|
2313 |
# French (Switzerland)
|
2314 |
#: ../../admin/lang/dynamic_strings.php:164
|
2315 |
msgid "l-fr-ch"
|
2316 |
-
msgstr "
|
2317 |
|
2318 |
# French (France)
|
2319 |
#: ../../admin/lang/dynamic_strings.php:165
|
2320 |
msgid "l-fr-fr"
|
2321 |
-
msgstr "
|
2322 |
|
2323 |
# French (Luxembourg)
|
2324 |
#: ../../admin/lang/dynamic_strings.php:166
|
2325 |
msgid "l-fr-lu"
|
2326 |
-
msgstr "
|
2327 |
|
2328 |
# French (Switzerland)
|
2329 |
#: ../../admin/lang/dynamic_strings.php:167
|
2330 |
#, fuzzy
|
2331 |
msgid "l-fr-mc"
|
2332 |
-
msgstr "
|
2333 |
|
2334 |
# Galician
|
2335 |
#: ../../admin/lang/dynamic_strings.php:168
|
@@ -2344,34 +2344,34 @@ msgstr "Espagnol ; Castillan"
|
|
2344 |
# Gujarati
|
2345 |
#: ../../admin/lang/dynamic_strings.php:170
|
2346 |
msgid "l-gu"
|
2347 |
-
msgstr "
|
2348 |
|
2349 |
# Gujarati
|
2350 |
#: ../../admin/lang/dynamic_strings.php:171
|
2351 |
#, fuzzy
|
2352 |
msgid "l-gu-in"
|
2353 |
-
msgstr "
|
2354 |
|
2355 |
# Hebrew
|
2356 |
#: ../../admin/lang/dynamic_strings.php:172
|
2357 |
msgid "l-he"
|
2358 |
-
msgstr "
|
2359 |
|
2360 |
# Hebrew (Israel)
|
2361 |
#: ../../admin/lang/dynamic_strings.php:173
|
2362 |
msgid "l-he-il"
|
2363 |
-
msgstr "
|
2364 |
|
2365 |
# Hindi
|
2366 |
#: ../../admin/lang/dynamic_strings.php:174
|
2367 |
msgid "l-hi"
|
2368 |
-
msgstr "
|
2369 |
|
2370 |
# Hindi
|
2371 |
#: ../../admin/lang/dynamic_strings.php:175
|
2372 |
#, fuzzy
|
2373 |
msgid "l-hi-in"
|
2374 |
-
msgstr "
|
2375 |
|
2376 |
# Croatian
|
2377 |
#: ../../admin/lang/dynamic_strings.php:176
|
@@ -2403,24 +2403,24 @@ msgstr "Hongrois (Hongrie)"
|
|
2403 |
# Armenian
|
2404 |
#: ../../admin/lang/dynamic_strings.php:181
|
2405 |
msgid "l-hy"
|
2406 |
-
msgstr "
|
2407 |
|
2408 |
# Armenian
|
2409 |
#: ../../admin/lang/dynamic_strings.php:182
|
2410 |
#, fuzzy
|
2411 |
msgid "l-hy-am"
|
2412 |
-
msgstr "
|
2413 |
|
2414 |
# Indonesian
|
2415 |
#: ../../admin/lang/dynamic_strings.php:183
|
2416 |
msgid "l-id"
|
2417 |
-
msgstr "
|
2418 |
|
2419 |
# Indonesian
|
2420 |
#: ../../admin/lang/dynamic_strings.php:184
|
2421 |
#, fuzzy
|
2422 |
msgid "l-id-id"
|
2423 |
-
msgstr "
|
2424 |
|
2425 |
# Icelandic
|
2426 |
#: ../../admin/lang/dynamic_strings.php:185
|
@@ -2461,13 +2461,13 @@ msgstr "Japonais"
|
|
2461 |
# Georgian
|
2462 |
#: ../../admin/lang/dynamic_strings.php:192
|
2463 |
msgid "l-ka"
|
2464 |
-
msgstr "
|
2465 |
|
2466 |
# Georgian
|
2467 |
#: ../../admin/lang/dynamic_strings.php:193
|
2468 |
#, fuzzy
|
2469 |
msgid "l-ka-ge"
|
2470 |
-
msgstr "
|
2471 |
|
2472 |
# Kazakh
|
2473 |
#: ../../admin/lang/dynamic_strings.php:194
|
@@ -2494,24 +2494,24 @@ msgstr "kannada"
|
|
2494 |
# Korean
|
2495 |
#: ../../admin/lang/dynamic_strings.php:198
|
2496 |
msgid "l-ko"
|
2497 |
-
msgstr "
|
2498 |
|
2499 |
# Korean (Republic of Korea)
|
2500 |
#: ../../admin/lang/dynamic_strings.php:199
|
2501 |
msgid "l-ko-kr"
|
2502 |
-
msgstr "
|
2503 |
|
2504 |
# Korean
|
2505 |
#: ../../admin/lang/dynamic_strings.php:200
|
2506 |
#, fuzzy
|
2507 |
msgid "l-kok"
|
2508 |
-
msgstr "
|
2509 |
|
2510 |
# Korean
|
2511 |
#: ../../admin/lang/dynamic_strings.php:201
|
2512 |
#, fuzzy
|
2513 |
msgid "l-kok-in"
|
2514 |
-
msgstr "
|
2515 |
|
2516 |
# Kirghiz; Kyrgyz
|
2517 |
#: ../../admin/lang/dynamic_strings.php:202
|
@@ -2548,24 +2548,24 @@ msgstr "Letton"
|
|
2548 |
# Maori
|
2549 |
#: ../../admin/lang/dynamic_strings.php:208
|
2550 |
msgid "l-mi"
|
2551 |
-
msgstr "
|
2552 |
|
2553 |
# Maori
|
2554 |
#: ../../admin/lang/dynamic_strings.php:209
|
2555 |
#, fuzzy
|
2556 |
msgid "l-mi-nz"
|
2557 |
-
msgstr "
|
2558 |
|
2559 |
# Macedonian
|
2560 |
#: ../../admin/lang/dynamic_strings.php:210
|
2561 |
msgid "l-mk"
|
2562 |
-
msgstr "
|
2563 |
|
2564 |
# Macedonian
|
2565 |
#: ../../admin/lang/dynamic_strings.php:211
|
2566 |
#, fuzzy
|
2567 |
msgid "l-mk-ml"
|
2568 |
-
msgstr "
|
2569 |
|
2570 |
# Mongolian
|
2571 |
#: ../../admin/lang/dynamic_strings.php:212
|
@@ -2581,13 +2581,13 @@ msgstr "Mongol"
|
|
2581 |
# Marathi
|
2582 |
#: ../../admin/lang/dynamic_strings.php:214
|
2583 |
msgid "l-mr"
|
2584 |
-
msgstr "
|
2585 |
|
2586 |
# Marathi
|
2587 |
#: ../../admin/lang/dynamic_strings.php:215
|
2588 |
#, fuzzy
|
2589 |
msgid "l-mr-in"
|
2590 |
-
msgstr "
|
2591 |
|
2592 |
# Malay
|
2593 |
#: ../../admin/lang/dynamic_strings.php:216
|
@@ -2617,37 +2617,37 @@ msgstr "Maltais"
|
|
2617 |
msgid "l-mt-mt"
|
2618 |
msgstr "Maltais"
|
2619 |
|
2620 |
-
# Norwegian
|
2621 |
#: ../../admin/lang/dynamic_strings.php:221
|
2622 |
msgid "l-nb"
|
2623 |
-
msgstr "
|
2624 |
|
2625 |
-
# Norwegian
|
2626 |
#: ../../admin/lang/dynamic_strings.php:222
|
2627 |
#, fuzzy
|
2628 |
msgid "l-nb-no"
|
2629 |
-
msgstr "
|
2630 |
|
2631 |
# Dutch; Flemish
|
2632 |
#: ../../admin/lang/dynamic_strings.php:223
|
2633 |
msgid "l-nl"
|
2634 |
-
msgstr "
|
2635 |
|
2636 |
# Dutch (Belgium)
|
2637 |
#: ../../admin/lang/dynamic_strings.php:224
|
2638 |
msgid "l-nl-be"
|
2639 |
-
msgstr "
|
2640 |
|
2641 |
# Dutch (Netherlands)
|
2642 |
#: ../../admin/lang/dynamic_strings.php:225
|
2643 |
msgid "l-nl-nl"
|
2644 |
-
msgstr "
|
2645 |
|
2646 |
# Norwegian Nynorsk
|
2647 |
#: ../../admin/lang/dynamic_strings.php:226
|
2648 |
#, fuzzy
|
2649 |
msgid "l-nn-no"
|
2650 |
-
msgstr "
|
2651 |
|
2652 |
#: ../../admin/lang/dynamic_strings.php:227
|
2653 |
msgid "l-ns"
|
@@ -2660,13 +2660,13 @@ msgstr "l-ns-za"
|
|
2660 |
# Panjabi; Punjabi
|
2661 |
#: ../../admin/lang/dynamic_strings.php:229
|
2662 |
msgid "l-pa"
|
2663 |
-
msgstr "
|
2664 |
|
2665 |
# Panjabi; Punjabi
|
2666 |
#: ../../admin/lang/dynamic_strings.php:230
|
2667 |
#, fuzzy
|
2668 |
msgid "l-pa-in"
|
2669 |
-
msgstr "
|
2670 |
|
2671 |
# Polish
|
2672 |
#: ../../admin/lang/dynamic_strings.php:231
|
@@ -2697,7 +2697,7 @@ msgstr "Portugais"
|
|
2697 |
# Portuguese (Brazil)
|
2698 |
#: ../../admin/lang/dynamic_strings.php:236
|
2699 |
msgid "l-pt-br"
|
2700 |
-
msgstr "Portugais (
|
2701 |
|
2702 |
# Portuguese
|
2703 |
#: ../../admin/lang/dynamic_strings.php:237
|
@@ -2745,7 +2745,7 @@ msgstr "Russe"
|
|
2745 |
# Russian (Russia)
|
2746 |
#: ../../admin/lang/dynamic_strings.php:245
|
2747 |
msgid "l-ru-ru"
|
2748 |
-
msgstr "Russe (
|
2749 |
|
2750 |
# Sanskrit
|
2751 |
#: ../../admin/lang/dynamic_strings.php:246
|
@@ -2795,13 +2795,13 @@ msgstr "Slovaque"
|
|
2795 |
# Slovenian
|
2796 |
#: ../../admin/lang/dynamic_strings.php:254
|
2797 |
msgid "l-sl"
|
2798 |
-
msgstr "
|
2799 |
|
2800 |
# Slovenian
|
2801 |
#: ../../admin/lang/dynamic_strings.php:255
|
2802 |
#, fuzzy
|
2803 |
msgid "l-sl-si"
|
2804 |
-
msgstr "
|
2805 |
|
2806 |
# Albanian
|
2807 |
#: ../../admin/lang/dynamic_strings.php:256
|
@@ -2829,17 +2829,17 @@ msgstr "Serbe"
|
|
2829 |
# Swedish
|
2830 |
#: ../../admin/lang/dynamic_strings.php:260
|
2831 |
msgid "l-sv"
|
2832 |
-
msgstr "
|
2833 |
|
2834 |
# Swedish (Finland)
|
2835 |
#: ../../admin/lang/dynamic_strings.php:261
|
2836 |
msgid "l-sv-fi"
|
2837 |
-
msgstr "
|
2838 |
|
2839 |
# Swedish (Sweden)
|
2840 |
#: ../../admin/lang/dynamic_strings.php:262
|
2841 |
msgid "l-sv-se"
|
2842 |
-
msgstr "
|
2843 |
|
2844 |
# Swahili
|
2845 |
#: ../../admin/lang/dynamic_strings.php:263
|
@@ -2866,18 +2866,18 @@ msgstr "Tamoul"
|
|
2866 |
# Telugu
|
2867 |
#: ../../admin/lang/dynamic_strings.php:267
|
2868 |
msgid "l-te"
|
2869 |
-
msgstr "
|
2870 |
|
2871 |
# Telugu
|
2872 |
#: ../../admin/lang/dynamic_strings.php:268
|
2873 |
#, fuzzy
|
2874 |
msgid "l-te-in"
|
2875 |
-
msgstr "
|
2876 |
|
2877 |
# Thai
|
2878 |
#: ../../admin/lang/dynamic_strings.php:269
|
2879 |
msgid "l-th"
|
2880 |
-
msgstr "
|
2881 |
|
2882 |
# Thai
|
2883 |
#: ../../admin/lang/dynamic_strings.php:270
|
@@ -3013,7 +3013,7 @@ msgstr "Chinois (Singapour)"
|
|
3013 |
# Chinese (Taiwan)
|
3014 |
#: ../../admin/lang/dynamic_strings.php:295
|
3015 |
msgid "l-zh-tw"
|
3016 |
-
msgstr "Chinois (
|
3017 |
|
3018 |
# Zulu
|
3019 |
#: ../../admin/lang/dynamic_strings.php:296
|
@@ -5663,12 +5663,12 @@ msgstr "Moyenne des pages vues"
|
|
5663 |
# Azerbaijani
|
5664 |
#, fuzzy
|
5665 |
#~ msgid "l-az-AZ"
|
5666 |
-
#~ msgstr "
|
5667 |
|
5668 |
# Belarusian
|
5669 |
#, fuzzy
|
5670 |
#~ msgid "l-be-BY"
|
5671 |
-
#~ msgstr "
|
5672 |
|
5673 |
# Bulgarian
|
5674 |
#, fuzzy
|
@@ -5683,7 +5683,7 @@ msgstr "Moyenne des pages vues"
|
|
5683 |
# Czech
|
5684 |
#, fuzzy
|
5685 |
#~ msgid "l-cs-CZ"
|
5686 |
-
#~ msgstr "
|
5687 |
|
5688 |
# Welsh
|
5689 |
#, fuzzy
|
@@ -5913,37 +5913,37 @@ msgstr "Moyenne des pages vues"
|
|
5913 |
# Faroese
|
5914 |
#, fuzzy
|
5915 |
#~ msgid "l-fo-FO"
|
5916 |
-
#~ msgstr "
|
5917 |
|
5918 |
# French
|
5919 |
#, fuzzy
|
5920 |
#~ msgid "l-fr-BE"
|
5921 |
-
#~ msgstr "
|
5922 |
|
5923 |
# French
|
5924 |
#, fuzzy
|
5925 |
#~ msgid "l-fr-CA"
|
5926 |
-
#~ msgstr "
|
5927 |
|
5928 |
# French
|
5929 |
#, fuzzy
|
5930 |
#~ msgid "l-fr-CH"
|
5931 |
-
#~ msgstr "
|
5932 |
|
5933 |
# French
|
5934 |
#, fuzzy
|
5935 |
#~ msgid "l-fr-FR"
|
5936 |
-
#~ msgstr "
|
5937 |
|
5938 |
# French
|
5939 |
#, fuzzy
|
5940 |
#~ msgid "l-fr-LU"
|
5941 |
-
#~ msgstr "
|
5942 |
|
5943 |
# French
|
5944 |
#, fuzzy
|
5945 |
#~ msgid "l-fr-MC"
|
5946 |
-
#~ msgstr "
|
5947 |
|
5948 |
# Galician
|
5949 |
#, fuzzy
|
@@ -5953,17 +5953,17 @@ msgstr "Moyenne des pages vues"
|
|
5953 |
# Gujarati
|
5954 |
#, fuzzy
|
5955 |
#~ msgid "l-gu-IN"
|
5956 |
-
#~ msgstr "
|
5957 |
|
5958 |
# Hebrew
|
5959 |
#, fuzzy
|
5960 |
#~ msgid "l-he-IL"
|
5961 |
-
#~ msgstr "
|
5962 |
|
5963 |
# Hindi
|
5964 |
#, fuzzy
|
5965 |
#~ msgid "l-hi-IN"
|
5966 |
-
#~ msgstr "
|
5967 |
|
5968 |
# Croatian
|
5969 |
#, fuzzy
|
@@ -5983,12 +5983,12 @@ msgstr "Moyenne des pages vues"
|
|
5983 |
# Armenian
|
5984 |
#, fuzzy
|
5985 |
#~ msgid "l-hy-AM"
|
5986 |
-
#~ msgstr "
|
5987 |
|
5988 |
# Indonesian
|
5989 |
#, fuzzy
|
5990 |
#~ msgid "l-id-ID"
|
5991 |
-
#~ msgstr "
|
5992 |
|
5993 |
# Icelandic
|
5994 |
#, fuzzy
|
@@ -6013,7 +6013,7 @@ msgstr "Moyenne des pages vues"
|
|
6013 |
# Georgian
|
6014 |
#, fuzzy
|
6015 |
#~ msgid "l-ka-GE"
|
6016 |
-
#~ msgstr "
|
6017 |
|
6018 |
# Kazakh
|
6019 |
#, fuzzy
|
@@ -6028,12 +6028,12 @@ msgstr "Moyenne des pages vues"
|
|
6028 |
# Korean
|
6029 |
#, fuzzy
|
6030 |
#~ msgid "l-ko-KR"
|
6031 |
-
#~ msgstr "
|
6032 |
|
6033 |
# Korean
|
6034 |
#, fuzzy
|
6035 |
#~ msgid "l-kok-IN"
|
6036 |
-
#~ msgstr "
|
6037 |
|
6038 |
# Kirghiz; Kyrgyz
|
6039 |
#, fuzzy
|
@@ -6053,12 +6053,12 @@ msgstr "Moyenne des pages vues"
|
|
6053 |
# Maori
|
6054 |
#, fuzzy
|
6055 |
#~ msgid "l-mi-NZ"
|
6056 |
-
#~ msgstr "
|
6057 |
|
6058 |
# Macedonian
|
6059 |
#, fuzzy
|
6060 |
#~ msgid "l-mk-MK"
|
6061 |
-
#~ msgstr "
|
6062 |
|
6063 |
# Mongolian
|
6064 |
#, fuzzy
|
@@ -6068,7 +6068,7 @@ msgstr "Moyenne des pages vues"
|
|
6068 |
# Marathi
|
6069 |
#, fuzzy
|
6070 |
#~ msgid "l-mr-IN"
|
6071 |
-
#~ msgstr "
|
6072 |
|
6073 |
# Malay
|
6074 |
#, fuzzy
|
@@ -6085,25 +6085,25 @@ msgstr "Moyenne des pages vues"
|
|
6085 |
#~ msgid "l-mt-MT"
|
6086 |
#~ msgstr "Maltais"
|
6087 |
|
6088 |
-
# Norwegian
|
6089 |
#, fuzzy
|
6090 |
#~ msgid "l-nb-NO"
|
6091 |
-
#~ msgstr "
|
6092 |
|
6093 |
# Dutch; Flemish
|
6094 |
#, fuzzy
|
6095 |
#~ msgid "l-nl-BE"
|
6096 |
-
#~ msgstr "
|
6097 |
|
6098 |
# Dutch; Flemish
|
6099 |
#, fuzzy
|
6100 |
#~ msgid "l-nl-NL"
|
6101 |
-
#~ msgstr "
|
6102 |
|
6103 |
# Panjabi; Punjabi
|
6104 |
#, fuzzy
|
6105 |
#~ msgid "l-pa-IN"
|
6106 |
-
#~ msgstr "
|
6107 |
|
6108 |
# Polish
|
6109 |
#, fuzzy
|
@@ -6178,7 +6178,7 @@ msgstr "Moyenne des pages vues"
|
|
6178 |
# Slovenian
|
6179 |
#, fuzzy
|
6180 |
#~ msgid "l-sl-SI"
|
6181 |
-
#~ msgstr "
|
6182 |
|
6183 |
# Albanian
|
6184 |
#, fuzzy
|
@@ -6193,12 +6193,12 @@ msgstr "Moyenne des pages vues"
|
|
6193 |
# Swedish
|
6194 |
#, fuzzy
|
6195 |
#~ msgid "l-sv-FI"
|
6196 |
-
#~ msgstr "
|
6197 |
|
6198 |
# Swedish
|
6199 |
#, fuzzy
|
6200 |
#~ msgid "l-sv-SE"
|
6201 |
-
#~ msgstr "
|
6202 |
|
6203 |
# Swahili
|
6204 |
#, fuzzy
|
@@ -6213,12 +6213,12 @@ msgstr "Moyenne des pages vues"
|
|
6213 |
# Telugu
|
6214 |
#, fuzzy
|
6215 |
#~ msgid "l-te-IN"
|
6216 |
-
#~ msgstr "
|
6217 |
|
6218 |
# Thai
|
6219 |
#, fuzzy
|
6220 |
#~ msgid "l-th-TH"
|
6221 |
-
#~ msgstr "
|
6222 |
|
6223 |
# Tagalog
|
6224 |
#, fuzzy
|
@@ -6542,11 +6542,11 @@ msgstr "Moyenne des pages vues"
|
|
6542 |
|
6543 |
# Bengali
|
6544 |
#~ msgid "l-bn"
|
6545 |
-
#~ msgstr "
|
6546 |
|
6547 |
# Tibetan
|
6548 |
#~ msgid "l-bo"
|
6549 |
-
#~ msgstr "
|
6550 |
|
6551 |
# Breton
|
6552 |
#~ msgid "l-br"
|
@@ -6554,7 +6554,7 @@ msgstr "Moyenne des pages vues"
|
|
6554 |
|
6555 |
# Chechen
|
6556 |
#~ msgid "l-ce"
|
6557 |
-
#~ msgstr "
|
6558 |
|
6559 |
# Corsican
|
6560 |
#~ msgid "l-co"
|
@@ -6590,7 +6590,7 @@ msgstr "Moyenne des pages vues"
|
|
6590 |
|
6591 |
# Scottish Gaelic; Gaelic
|
6592 |
#~ msgid "l-gd"
|
6593 |
-
#~ msgstr "
|
6594 |
|
6595 |
# Guarani
|
6596 |
#~ msgid "l-gn"
|
@@ -6606,7 +6606,7 @@ msgstr "Moyenne des pages vues"
|
|
6606 |
|
6607 |
# Haitian; Haitian Creole
|
6608 |
#~ msgid "l-ht"
|
6609 |
-
#~ msgstr "
|
6610 |
|
6611 |
# Interlingua (International Auxiliary Language Association)
|
6612 |
#~ msgid "l-ia"
|
@@ -6626,7 +6626,7 @@ msgstr "Moyenne des pages vues"
|
|
6626 |
|
6627 |
# Indonesian
|
6628 |
#~ msgid "l-in"
|
6629 |
-
#~ msgstr "
|
6630 |
|
6631 |
# Ido
|
6632 |
#~ msgid "l-io"
|
@@ -6634,7 +6634,7 @@ msgstr "Moyenne des pages vues"
|
|
6634 |
|
6635 |
# Hebrew
|
6636 |
#~ msgid "l-iw"
|
6637 |
-
#~ msgstr "
|
6638 |
|
6639 |
# Yiddish
|
6640 |
#~ msgid "l-ji"
|
@@ -6742,11 +6742,11 @@ msgstr "Moyenne des pages vues"
|
|
6742 |
|
6743 |
# North Ndebele
|
6744 |
#~ msgid "l-nd"
|
6745 |
-
#~ msgstr "
|
6746 |
|
6747 |
# Nepali
|
6748 |
#~ msgid "l-ne"
|
6749 |
-
#~ msgstr "
|
6750 |
|
6751 |
# Ndonga
|
6752 |
#~ msgid "l-ng"
|
@@ -6754,7 +6754,7 @@ msgstr "Moyenne des pages vues"
|
|
6754 |
|
6755 |
# Norwegian
|
6756 |
#~ msgid "l-no"
|
6757 |
-
#~ msgstr "
|
6758 |
|
6759 |
# Navajo; Navaho
|
6760 |
#~ msgid "l-nv"
|
@@ -6770,7 +6770,7 @@ msgstr "Moyenne des pages vues"
|
|
6770 |
|
6771 |
# Ojibwa
|
6772 |
#~ msgid "l-oj"
|
6773 |
-
#~ msgstr "
|
6774 |
|
6775 |
# Oromo
|
6776 |
#~ msgid "l-om"
|
@@ -6782,11 +6782,11 @@ msgstr "Moyenne des pages vues"
|
|
6782 |
|
6783 |
# Ossetian; Ossetic
|
6784 |
#~ msgid "l-os"
|
6785 |
-
#~ msgstr "
|
6786 |
|
6787 |
# Pali
|
6788 |
#~ msgid "l-pi"
|
6789 |
-
#~ msgstr "
|
6790 |
|
6791 |
# Romansh
|
6792 |
#~ msgid "l-rm"
|
@@ -6854,7 +6854,7 @@ msgstr "Moyenne des pages vues"
|
|
6854 |
|
6855 |
# Turkmen
|
6856 |
#~ msgid "l-tk"
|
6857 |
-
#~ msgstr "
|
6858 |
|
6859 |
# Tonga (Tonga Islands)
|
6860 |
#~ msgid "l-to"
|
@@ -6866,15 +6866,15 @@ msgstr "Moyenne des pages vues"
|
|
6866 |
|
6867 |
# Uighur; Uyghur
|
6868 |
#~ msgid "l-ug"
|
6869 |
-
#~ msgstr "
|
6870 |
|
6871 |
# Venda
|
6872 |
#~ msgid "l-ve"
|
6873 |
#~ msgstr "Venda"
|
6874 |
|
6875 |
-
#
|
6876 |
#~ msgid "l-vo"
|
6877 |
-
#~ msgstr "
|
6878 |
|
6879 |
# Wolof
|
6880 |
#~ msgid "l-wo"
|
@@ -6898,7 +6898,7 @@ msgstr "Moyenne des pages vues"
|
|
6898 |
|
6899 |
# Korean (Democratic People's Republic of Korea)
|
6900 |
#~ msgid "l-ko-kp"
|
6901 |
-
#~ msgstr "
|
6902 |
|
6903 |
# Romanian (Moldava)
|
6904 |
#~ msgid "l-ro-md"
|
@@ -6985,7 +6985,7 @@ msgstr "Moyenne des pages vues"
|
|
6985 |
|
6986 |
# South Ndebele
|
6987 |
#~ msgid "l-nr"
|
6988 |
-
#~ msgstr "
|
6989 |
|
6990 |
# Twi
|
6991 |
#~ msgid "l-tw"
|
3 |
"Project-Id-Version: WP SlimStat\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2014-03-02 22:44-0500\n"
|
6 |
+
"PO-Revision-Date: 2014-04-07 21:31-0500\n"
|
7 |
"Last-Translator: Get Used To IT <support@getused.to.it>\n"
|
8 |
"Language-Team: Michael Bastin\n"
|
9 |
"Language: fr_FR\n"
|
74 |
|
75 |
#: ../../admin/wp-slimstat-admin.php:410 ../../admin/wp-slimstat-admin.php:422
|
76 |
#: ../../admin/wp-slimstat-admin.php:425
|
77 |
+
#, fuzzy
|
78 |
msgid "SlimStat"
|
79 |
+
msgstr "À propos de WP-SlimStat"
|
80 |
|
81 |
#: ../../admin/wp-slimstat-admin.php:528
|
82 |
msgid "Pageviews in the last 365 days"
|
139 |
"SlimStat logs a pageview each time the tracking code is executed"
|
140 |
msgstr ""
|
141 |
"Une demande de chargement d'un simple fichier HTML (\"une page\"). À "
|
142 |
+
"distinguer d'un \"hit\", qui se réfère à une requête d'un quelconque fichier "
|
143 |
"d'un serveur Web. WP SlimStat enregistre une page vue chaque fois que le "
|
144 |
"code de traçage est exécuté"
|
145 |
|
359 |
|
360 |
#: ../../admin/wp-slimstat-admin.php:743
|
361 |
msgid "Complete address of the referrer page"
|
362 |
+
msgstr "Adresse complète de la page référente"
|
363 |
|
364 |
#: ../../admin/wp-slimstat-admin.php:744
|
365 |
#: ../../admin/view/wp-slimstat-db.php:51
|
618 |
|
619 |
#: ../../admin/config/index.php:22
|
620 |
msgid "Monitor Admin Pages"
|
621 |
+
msgstr "Tracer les pages Administrateur"
|
622 |
|
623 |
#: ../../admin/config/index.php:22
|
624 |
msgid "Enable this option to track your users' activity within the admin."
|
625 |
msgstr ""
|
626 |
+
"Activez cette option pour suivre l'activité de vos utilisateurs dans l'admin."
|
|
|
627 |
|
628 |
#: ../../admin/config/index.php:23
|
629 |
msgid "Enable Spy Mode"
|
635 |
"etc. If Tracking Mode is set to Javascript, this data will be tracked "
|
636 |
"regardless of which value you set for this option."
|
637 |
msgstr ""
|
638 |
+
"Collecte des données sur les résolutions d'écran, les liens sortants, les "
|
639 |
+
"téléchargements et autres informations pertinentes. Si le mode Javascript "
|
640 |
+
"est activé, ces informations seront suivies indépendamment de la valeur "
|
641 |
+
"définie pour cette option."
|
642 |
|
643 |
#: ../../admin/config/index.php:24
|
644 |
msgid "Tracking Mode"
|
655 |
"Activez cette fonction si vous utilisez un plugin de mise en cache (W3 Total "
|
656 |
"Cache et autres). WP SlimStat va se comporter un peu comme Google Analytics, "
|
657 |
"et les visiteurs dont le navigateur ne supporte pas le Javascript seront "
|
658 |
+
"ignorés. En outre, <strong>la plupart</strong> des spammeurs, moteurs de "
|
659 |
+
"recherche et autres robots ne seront pas suivis."
|
660 |
|
661 |
#: ../../admin/config/index.php:24
|
662 |
msgid "Javascript"
|
680 |
"admin bar (if visible)."
|
681 |
msgstr ""
|
682 |
"Choisir entre un menu d'administration dans la barre latérale de WordPress "
|
683 |
+
"ou un menu déroulant dans la barre supérieure (si elle est affichée)."
|
684 |
|
685 |
#: ../../admin/config/index.php:27
|
686 |
msgid "Side Menu"
|
692 |
|
693 |
#: ../../admin/config/index.php:28
|
694 |
msgid "Add Stats to Posts"
|
695 |
+
msgstr "Etendre les Stats aux articles"
|
696 |
|
697 |
#: ../../admin/config/index.php:28
|
698 |
msgid ""
|
699 |
"Add a new column to the Edit Posts screen, with the number of hits per post."
|
700 |
msgstr ""
|
701 |
+
"Ajoute une colonne à l'écran d'édition des articles, en indiquant le nombre "
|
702 |
+
"de visites par article (peut ralentir le rendu des pages)."
|
703 |
|
704 |
#: ../../admin/config/index.php:30
|
705 |
msgid "Database"
|
809 |
"Load all the reports dynamically. It makes the reports render faster, but it "
|
810 |
"increases the load on your server."
|
811 |
msgstr ""
|
812 |
+
"Utiliser Ajax pour charger dynamiquement les statistiques. Fait apparaitre "
|
813 |
+
"les rapports plus rapidement, mais consomme plus de ressources sur le "
|
814 |
+
"serveur."
|
815 |
|
816 |
#: ../../admin/config/index.php:55
|
817 |
msgid "Expand Details"
|
1154 |
|
1155 |
#: ../../admin/config/index.php:153
|
1156 |
msgid "Read access: username not found"
|
1157 |
+
msgstr "Accès lecture : username inexistant"
|
1158 |
|
1159 |
#: ../../admin/config/index.php:166 ../../admin/config/index.php:197
|
1160 |
msgid ""
|
1168 |
|
1169 |
#: ../../admin/config/index.php:184
|
1170 |
msgid "Config access: username not found"
|
1171 |
+
msgstr "Accès configuration : username inexistant"
|
1172 |
|
1173 |
#: ../../admin/config/index.php:208
|
1174 |
msgid "Detect Smoothing"
|
1854 |
# Arabic (United Arab Emirates)
|
1855 |
#: ../../admin/lang/dynamic_strings.php:75
|
1856 |
msgid "l-ar-ae"
|
1857 |
+
msgstr "Arabe (Émirats arabes unis)"
|
1858 |
|
1859 |
# Arabic (Bahrain)
|
1860 |
#: ../../admin/lang/dynamic_strings.php:76
|
1861 |
msgid "l-ar-bh"
|
1862 |
+
msgstr "Arabe (Bahreïn)"
|
1863 |
|
1864 |
# Arabic (Algeria)
|
1865 |
#: ../../admin/lang/dynamic_strings.php:77
|
1866 |
msgid "l-ar-dz"
|
1867 |
+
msgstr "Arabe (Algérie)"
|
1868 |
|
1869 |
# Arabic (Egypt)
|
1870 |
#: ../../admin/lang/dynamic_strings.php:78
|
1871 |
msgid "l-ar-eg"
|
1872 |
+
msgstr "Arabe (Égypte)"
|
1873 |
|
1874 |
# Arabic (Iraq)
|
1875 |
#: ../../admin/lang/dynamic_strings.php:79
|
1884 |
# Arabic (Kuwait)
|
1885 |
#: ../../admin/lang/dynamic_strings.php:81
|
1886 |
msgid "l-ar-kw"
|
1887 |
+
msgstr "Arabe (Koweït)"
|
1888 |
|
1889 |
# Arabic (Lebanon)
|
1890 |
#: ../../admin/lang/dynamic_strings.php:82
|
1929 |
# Arabic (Yemen)
|
1930 |
#: ../../admin/lang/dynamic_strings.php:90
|
1931 |
msgid "l-ar-ye"
|
1932 |
+
msgstr "Arabe (Yémen)"
|
1933 |
|
1934 |
# Azerbaijani
|
1935 |
#: ../../admin/lang/dynamic_strings.php:91
|
1936 |
msgid "l-az"
|
1937 |
+
msgstr "Azéri"
|
1938 |
|
1939 |
# Azerbaijani
|
1940 |
#: ../../admin/lang/dynamic_strings.php:92
|
1941 |
#, fuzzy
|
1942 |
msgid "l-az-az"
|
1943 |
+
msgstr "Azéri"
|
1944 |
|
1945 |
# Belarusian
|
1946 |
#: ../../admin/lang/dynamic_strings.php:93
|
1947 |
msgid "l-be"
|
1948 |
+
msgstr "Biélorusse"
|
1949 |
|
1950 |
# Belarusian
|
1951 |
#: ../../admin/lang/dynamic_strings.php:94
|
1982 |
# Czech
|
1983 |
#: ../../admin/lang/dynamic_strings.php:100
|
1984 |
msgid "l-cs"
|
1985 |
+
msgstr "Tchèque"
|
1986 |
|
1987 |
# Czech
|
1988 |
#: ../../admin/lang/dynamic_strings.php:101
|
2060 |
# Greek (Greece)
|
2061 |
#: ../../admin/lang/dynamic_strings.php:115
|
2062 |
msgid "l-el-gr"
|
2063 |
+
msgstr "Grec moderne (Grèce)"
|
2064 |
|
2065 |
# English
|
2066 |
#: ../../admin/lang/dynamic_strings.php:116
|
2101 |
# English (Jamaica)
|
2102 |
#: ../../admin/lang/dynamic_strings.php:123
|
2103 |
msgid "l-en-jm"
|
2104 |
+
msgstr "Anglais (Jamaïque)"
|
2105 |
|
2106 |
# English (New Zealand)
|
2107 |
#: ../../admin/lang/dynamic_strings.php:124
|
2108 |
msgid "l-en-nz"
|
2109 |
+
msgstr "Anglais (Nouvelle-Zélande)"
|
2110 |
|
2111 |
# English
|
2112 |
#: ../../admin/lang/dynamic_strings.php:125
|
2117 |
# English (Trinidad)
|
2118 |
#: ../../admin/lang/dynamic_strings.php:126
|
2119 |
msgid "l-en-tt"
|
2120 |
+
msgstr "Anglais (Trinité)"
|
2121 |
|
2122 |
# English (United States)
|
2123 |
#: ../../admin/lang/dynamic_strings.php:127
|
2124 |
msgid "l-en-us"
|
2125 |
+
msgstr "Anglais (États-Unis)"
|
2126 |
|
2127 |
# English (South Africa)
|
2128 |
#: ../../admin/lang/dynamic_strings.php:128
|
2138 |
# Esperanto
|
2139 |
#: ../../admin/lang/dynamic_strings.php:130
|
2140 |
msgid "l-eo"
|
2141 |
+
msgstr "Espéranto"
|
2142 |
|
2143 |
# Spanish; Castilian
|
2144 |
#: ../../admin/lang/dynamic_strings.php:131
|
2173 |
# Spanish (Dominican Republic)
|
2174 |
#: ../../admin/lang/dynamic_strings.php:137
|
2175 |
msgid "l-es-do"
|
2176 |
+
msgstr "Espagnol (République dominicaine)"
|
2177 |
|
2178 |
# Spanish (Ecuador)
|
2179 |
#: ../../admin/lang/dynamic_strings.php:138
|
2180 |
msgid "l-es-ec"
|
2181 |
+
msgstr "Espagnol (Équateur)"
|
2182 |
|
2183 |
# Spanish (Spain)
|
2184 |
#: ../../admin/lang/dynamic_strings.php:139
|
2213 |
# Spanish (Peru)
|
2214 |
#: ../../admin/lang/dynamic_strings.php:145
|
2215 |
msgid "l-es-pe"
|
2216 |
+
msgstr "Espagnol (Pérou)"
|
2217 |
|
2218 |
# Spanish (Puerto Rico)
|
2219 |
#: ../../admin/lang/dynamic_strings.php:146
|
2287 |
# Faroese
|
2288 |
#: ../../admin/lang/dynamic_strings.php:159
|
2289 |
msgid "l-fo"
|
2290 |
+
msgstr "Féringien"
|
2291 |
|
2292 |
# Faroese
|
2293 |
#: ../../admin/lang/dynamic_strings.php:160
|
2294 |
#, fuzzy
|
2295 |
msgid "l-fo-fo"
|
2296 |
+
msgstr "Féringien"
|
2297 |
|
2298 |
# French
|
2299 |
#: ../../admin/lang/dynamic_strings.php:161
|
2300 |
msgid "l-fr"
|
2301 |
+
msgstr "Français"
|
2302 |
|
2303 |
# French (Belgium)
|
2304 |
#: ../../admin/lang/dynamic_strings.php:162
|
2305 |
msgid "l-fr-be"
|
2306 |
+
msgstr "Français (Belgique)"
|
2307 |
|
2308 |
# French (Canada)
|
2309 |
#: ../../admin/lang/dynamic_strings.php:163
|
2310 |
msgid "l-fr-ca"
|
2311 |
+
msgstr "Français (Canada)"
|
2312 |
|
2313 |
# French (Switzerland)
|
2314 |
#: ../../admin/lang/dynamic_strings.php:164
|
2315 |
msgid "l-fr-ch"
|
2316 |
+
msgstr "Français (Suisse)"
|
2317 |
|
2318 |
# French (France)
|
2319 |
#: ../../admin/lang/dynamic_strings.php:165
|
2320 |
msgid "l-fr-fr"
|
2321 |
+
msgstr "Français (France)"
|
2322 |
|
2323 |
# French (Luxembourg)
|
2324 |
#: ../../admin/lang/dynamic_strings.php:166
|
2325 |
msgid "l-fr-lu"
|
2326 |
+
msgstr "Français (Luxembourg)"
|
2327 |
|
2328 |
# French (Switzerland)
|
2329 |
#: ../../admin/lang/dynamic_strings.php:167
|
2330 |
#, fuzzy
|
2331 |
msgid "l-fr-mc"
|
2332 |
+
msgstr "Français (Suisse)"
|
2333 |
|
2334 |
# Galician
|
2335 |
#: ../../admin/lang/dynamic_strings.php:168
|
2344 |
# Gujarati
|
2345 |
#: ../../admin/lang/dynamic_strings.php:170
|
2346 |
msgid "l-gu"
|
2347 |
+
msgstr "Gujarati"
|
2348 |
|
2349 |
# Gujarati
|
2350 |
#: ../../admin/lang/dynamic_strings.php:171
|
2351 |
#, fuzzy
|
2352 |
msgid "l-gu-in"
|
2353 |
+
msgstr "Gujarati"
|
2354 |
|
2355 |
# Hebrew
|
2356 |
#: ../../admin/lang/dynamic_strings.php:172
|
2357 |
msgid "l-he"
|
2358 |
+
msgstr "Hébreu"
|
2359 |
|
2360 |
# Hebrew (Israel)
|
2361 |
#: ../../admin/lang/dynamic_strings.php:173
|
2362 |
msgid "l-he-il"
|
2363 |
+
msgstr "Hébreu (Israël)"
|
2364 |
|
2365 |
# Hindi
|
2366 |
#: ../../admin/lang/dynamic_strings.php:174
|
2367 |
msgid "l-hi"
|
2368 |
+
msgstr "Hindi"
|
2369 |
|
2370 |
# Hindi
|
2371 |
#: ../../admin/lang/dynamic_strings.php:175
|
2372 |
#, fuzzy
|
2373 |
msgid "l-hi-in"
|
2374 |
+
msgstr "Hindi"
|
2375 |
|
2376 |
# Croatian
|
2377 |
#: ../../admin/lang/dynamic_strings.php:176
|
2403 |
# Armenian
|
2404 |
#: ../../admin/lang/dynamic_strings.php:181
|
2405 |
msgid "l-hy"
|
2406 |
+
msgstr "Arménien"
|
2407 |
|
2408 |
# Armenian
|
2409 |
#: ../../admin/lang/dynamic_strings.php:182
|
2410 |
#, fuzzy
|
2411 |
msgid "l-hy-am"
|
2412 |
+
msgstr "Arménien"
|
2413 |
|
2414 |
# Indonesian
|
2415 |
#: ../../admin/lang/dynamic_strings.php:183
|
2416 |
msgid "l-id"
|
2417 |
+
msgstr "Indonésien"
|
2418 |
|
2419 |
# Indonesian
|
2420 |
#: ../../admin/lang/dynamic_strings.php:184
|
2421 |
#, fuzzy
|
2422 |
msgid "l-id-id"
|
2423 |
+
msgstr "Indonésien"
|
2424 |
|
2425 |
# Icelandic
|
2426 |
#: ../../admin/lang/dynamic_strings.php:185
|
2461 |
# Georgian
|
2462 |
#: ../../admin/lang/dynamic_strings.php:192
|
2463 |
msgid "l-ka"
|
2464 |
+
msgstr "Géorgien"
|
2465 |
|
2466 |
# Georgian
|
2467 |
#: ../../admin/lang/dynamic_strings.php:193
|
2468 |
#, fuzzy
|
2469 |
msgid "l-ka-ge"
|
2470 |
+
msgstr "Géorgien"
|
2471 |
|
2472 |
# Kazakh
|
2473 |
#: ../../admin/lang/dynamic_strings.php:194
|
2494 |
# Korean
|
2495 |
#: ../../admin/lang/dynamic_strings.php:198
|
2496 |
msgid "l-ko"
|
2497 |
+
msgstr "Coréen"
|
2498 |
|
2499 |
# Korean (Republic of Korea)
|
2500 |
#: ../../admin/lang/dynamic_strings.php:199
|
2501 |
msgid "l-ko-kr"
|
2502 |
+
msgstr "Coréen (République de Corée)"
|
2503 |
|
2504 |
# Korean
|
2505 |
#: ../../admin/lang/dynamic_strings.php:200
|
2506 |
#, fuzzy
|
2507 |
msgid "l-kok"
|
2508 |
+
msgstr "Coréen"
|
2509 |
|
2510 |
# Korean
|
2511 |
#: ../../admin/lang/dynamic_strings.php:201
|
2512 |
#, fuzzy
|
2513 |
msgid "l-kok-in"
|
2514 |
+
msgstr "Coréen"
|
2515 |
|
2516 |
# Kirghiz; Kyrgyz
|
2517 |
#: ../../admin/lang/dynamic_strings.php:202
|
2548 |
# Maori
|
2549 |
#: ../../admin/lang/dynamic_strings.php:208
|
2550 |
msgid "l-mi"
|
2551 |
+
msgstr "Maori"
|
2552 |
|
2553 |
# Maori
|
2554 |
#: ../../admin/lang/dynamic_strings.php:209
|
2555 |
#, fuzzy
|
2556 |
msgid "l-mi-nz"
|
2557 |
+
msgstr "Maori"
|
2558 |
|
2559 |
# Macedonian
|
2560 |
#: ../../admin/lang/dynamic_strings.php:210
|
2561 |
msgid "l-mk"
|
2562 |
+
msgstr "Macédonien"
|
2563 |
|
2564 |
# Macedonian
|
2565 |
#: ../../admin/lang/dynamic_strings.php:211
|
2566 |
#, fuzzy
|
2567 |
msgid "l-mk-ml"
|
2568 |
+
msgstr "Macédonien"
|
2569 |
|
2570 |
# Mongolian
|
2571 |
#: ../../admin/lang/dynamic_strings.php:212
|
2581 |
# Marathi
|
2582 |
#: ../../admin/lang/dynamic_strings.php:214
|
2583 |
msgid "l-mr"
|
2584 |
+
msgstr "Marathi"
|
2585 |
|
2586 |
# Marathi
|
2587 |
#: ../../admin/lang/dynamic_strings.php:215
|
2588 |
#, fuzzy
|
2589 |
msgid "l-mr-in"
|
2590 |
+
msgstr "Marathi"
|
2591 |
|
2592 |
# Malay
|
2593 |
#: ../../admin/lang/dynamic_strings.php:216
|
2617 |
msgid "l-mt-mt"
|
2618 |
msgstr "Maltais"
|
2619 |
|
2620 |
+
# Norwegian Bokmål
|
2621 |
#: ../../admin/lang/dynamic_strings.php:221
|
2622 |
msgid "l-nb"
|
2623 |
+
msgstr "Norvégien Bokmål"
|
2624 |
|
2625 |
+
# Norwegian Bokmål
|
2626 |
#: ../../admin/lang/dynamic_strings.php:222
|
2627 |
#, fuzzy
|
2628 |
msgid "l-nb-no"
|
2629 |
+
msgstr "Norvégien Bokmål"
|
2630 |
|
2631 |
# Dutch; Flemish
|
2632 |
#: ../../admin/lang/dynamic_strings.php:223
|
2633 |
msgid "l-nl"
|
2634 |
+
msgstr "Néerlandais; Flamand"
|
2635 |
|
2636 |
# Dutch (Belgium)
|
2637 |
#: ../../admin/lang/dynamic_strings.php:224
|
2638 |
msgid "l-nl-be"
|
2639 |
+
msgstr "Néerlandais (Belgique)"
|
2640 |
|
2641 |
# Dutch (Netherlands)
|
2642 |
#: ../../admin/lang/dynamic_strings.php:225
|
2643 |
msgid "l-nl-nl"
|
2644 |
+
msgstr "Néerlandais (Pays-bas)"
|
2645 |
|
2646 |
# Norwegian Nynorsk
|
2647 |
#: ../../admin/lang/dynamic_strings.php:226
|
2648 |
#, fuzzy
|
2649 |
msgid "l-nn-no"
|
2650 |
+
msgstr "Norvégien Nynorsk"
|
2651 |
|
2652 |
#: ../../admin/lang/dynamic_strings.php:227
|
2653 |
msgid "l-ns"
|
2660 |
# Panjabi; Punjabi
|
2661 |
#: ../../admin/lang/dynamic_strings.php:229
|
2662 |
msgid "l-pa"
|
2663 |
+
msgstr "Panjabi"
|
2664 |
|
2665 |
# Panjabi; Punjabi
|
2666 |
#: ../../admin/lang/dynamic_strings.php:230
|
2667 |
#, fuzzy
|
2668 |
msgid "l-pa-in"
|
2669 |
+
msgstr "Panjabi"
|
2670 |
|
2671 |
# Polish
|
2672 |
#: ../../admin/lang/dynamic_strings.php:231
|
2697 |
# Portuguese (Brazil)
|
2698 |
#: ../../admin/lang/dynamic_strings.php:236
|
2699 |
msgid "l-pt-br"
|
2700 |
+
msgstr "Portugais (Brésil)"
|
2701 |
|
2702 |
# Portuguese
|
2703 |
#: ../../admin/lang/dynamic_strings.php:237
|
2745 |
# Russian (Russia)
|
2746 |
#: ../../admin/lang/dynamic_strings.php:245
|
2747 |
msgid "l-ru-ru"
|
2748 |
+
msgstr "Russe (Fédération de Russie)"
|
2749 |
|
2750 |
# Sanskrit
|
2751 |
#: ../../admin/lang/dynamic_strings.php:246
|
2795 |
# Slovenian
|
2796 |
#: ../../admin/lang/dynamic_strings.php:254
|
2797 |
msgid "l-sl"
|
2798 |
+
msgstr "Slovène"
|
2799 |
|
2800 |
# Slovenian
|
2801 |
#: ../../admin/lang/dynamic_strings.php:255
|
2802 |
#, fuzzy
|
2803 |
msgid "l-sl-si"
|
2804 |
+
msgstr "Slovène"
|
2805 |
|
2806 |
# Albanian
|
2807 |
#: ../../admin/lang/dynamic_strings.php:256
|
2829 |
# Swedish
|
2830 |
#: ../../admin/lang/dynamic_strings.php:260
|
2831 |
msgid "l-sv"
|
2832 |
+
msgstr "Suédois"
|
2833 |
|
2834 |
# Swedish (Finland)
|
2835 |
#: ../../admin/lang/dynamic_strings.php:261
|
2836 |
msgid "l-sv-fi"
|
2837 |
+
msgstr "Suédois (Finlande)"
|
2838 |
|
2839 |
# Swedish (Sweden)
|
2840 |
#: ../../admin/lang/dynamic_strings.php:262
|
2841 |
msgid "l-sv-se"
|
2842 |
+
msgstr "Suédois (Suède)"
|
2843 |
|
2844 |
# Swahili
|
2845 |
#: ../../admin/lang/dynamic_strings.php:263
|
2866 |
# Telugu
|
2867 |
#: ../../admin/lang/dynamic_strings.php:267
|
2868 |
msgid "l-te"
|
2869 |
+
msgstr "Télougou"
|
2870 |
|
2871 |
# Telugu
|
2872 |
#: ../../admin/lang/dynamic_strings.php:268
|
2873 |
#, fuzzy
|
2874 |
msgid "l-te-in"
|
2875 |
+
msgstr "Télougou"
|
2876 |
|
2877 |
# Thai
|
2878 |
#: ../../admin/lang/dynamic_strings.php:269
|
2879 |
msgid "l-th"
|
2880 |
+
msgstr "Thaï"
|
2881 |
|
2882 |
# Thai
|
2883 |
#: ../../admin/lang/dynamic_strings.php:270
|
3013 |
# Chinese (Taiwan)
|
3014 |
#: ../../admin/lang/dynamic_strings.php:295
|
3015 |
msgid "l-zh-tw"
|
3016 |
+
msgstr "Chinois (Taïwan)"
|
3017 |
|
3018 |
# Zulu
|
3019 |
#: ../../admin/lang/dynamic_strings.php:296
|
5663 |
# Azerbaijani
|
5664 |
#, fuzzy
|
5665 |
#~ msgid "l-az-AZ"
|
5666 |
+
#~ msgstr "Azéri"
|
5667 |
|
5668 |
# Belarusian
|
5669 |
#, fuzzy
|
5670 |
#~ msgid "l-be-BY"
|
5671 |
+
#~ msgstr "Biélorusse"
|
5672 |
|
5673 |
# Bulgarian
|
5674 |
#, fuzzy
|
5683 |
# Czech
|
5684 |
#, fuzzy
|
5685 |
#~ msgid "l-cs-CZ"
|
5686 |
+
#~ msgstr "Tchèque"
|
5687 |
|
5688 |
# Welsh
|
5689 |
#, fuzzy
|
5913 |
# Faroese
|
5914 |
#, fuzzy
|
5915 |
#~ msgid "l-fo-FO"
|
5916 |
+
#~ msgstr "Féringien"
|
5917 |
|
5918 |
# French
|
5919 |
#, fuzzy
|
5920 |
#~ msgid "l-fr-BE"
|
5921 |
+
#~ msgstr "Français"
|
5922 |
|
5923 |
# French
|
5924 |
#, fuzzy
|
5925 |
#~ msgid "l-fr-CA"
|
5926 |
+
#~ msgstr "Français"
|
5927 |
|
5928 |
# French
|
5929 |
#, fuzzy
|
5930 |
#~ msgid "l-fr-CH"
|
5931 |
+
#~ msgstr "Français"
|
5932 |
|
5933 |
# French
|
5934 |
#, fuzzy
|
5935 |
#~ msgid "l-fr-FR"
|
5936 |
+
#~ msgstr "Français"
|
5937 |
|
5938 |
# French
|
5939 |
#, fuzzy
|
5940 |
#~ msgid "l-fr-LU"
|
5941 |
+
#~ msgstr "Français"
|
5942 |
|
5943 |
# French
|
5944 |
#, fuzzy
|
5945 |
#~ msgid "l-fr-MC"
|
5946 |
+
#~ msgstr "Français"
|
5947 |
|
5948 |
# Galician
|
5949 |
#, fuzzy
|
5953 |
# Gujarati
|
5954 |
#, fuzzy
|
5955 |
#~ msgid "l-gu-IN"
|
5956 |
+
#~ msgstr "Gujarati"
|
5957 |
|
5958 |
# Hebrew
|
5959 |
#, fuzzy
|
5960 |
#~ msgid "l-he-IL"
|
5961 |
+
#~ msgstr "Hébreu"
|
5962 |
|
5963 |
# Hindi
|
5964 |
#, fuzzy
|
5965 |
#~ msgid "l-hi-IN"
|
5966 |
+
#~ msgstr "Hindi"
|
5967 |
|
5968 |
# Croatian
|
5969 |
#, fuzzy
|
5983 |
# Armenian
|
5984 |
#, fuzzy
|
5985 |
#~ msgid "l-hy-AM"
|
5986 |
+
#~ msgstr "Arménien"
|
5987 |
|
5988 |
# Indonesian
|
5989 |
#, fuzzy
|
5990 |
#~ msgid "l-id-ID"
|
5991 |
+
#~ msgstr "Indonésien"
|
5992 |
|
5993 |
# Icelandic
|
5994 |
#, fuzzy
|
6013 |
# Georgian
|
6014 |
#, fuzzy
|
6015 |
#~ msgid "l-ka-GE"
|
6016 |
+
#~ msgstr "Géorgien"
|
6017 |
|
6018 |
# Kazakh
|
6019 |
#, fuzzy
|
6028 |
# Korean
|
6029 |
#, fuzzy
|
6030 |
#~ msgid "l-ko-KR"
|
6031 |
+
#~ msgstr "Coréen"
|
6032 |
|
6033 |
# Korean
|
6034 |
#, fuzzy
|
6035 |
#~ msgid "l-kok-IN"
|
6036 |
+
#~ msgstr "Coréen"
|
6037 |
|
6038 |
# Kirghiz; Kyrgyz
|
6039 |
#, fuzzy
|
6053 |
# Maori
|
6054 |
#, fuzzy
|
6055 |
#~ msgid "l-mi-NZ"
|
6056 |
+
#~ msgstr "Maori"
|
6057 |
|
6058 |
# Macedonian
|
6059 |
#, fuzzy
|
6060 |
#~ msgid "l-mk-MK"
|
6061 |
+
#~ msgstr "Macédonien"
|
6062 |
|
6063 |
# Mongolian
|
6064 |
#, fuzzy
|
6068 |
# Marathi
|
6069 |
#, fuzzy
|
6070 |
#~ msgid "l-mr-IN"
|
6071 |
+
#~ msgstr "Marathi"
|
6072 |
|
6073 |
# Malay
|
6074 |
#, fuzzy
|
6085 |
#~ msgid "l-mt-MT"
|
6086 |
#~ msgstr "Maltais"
|
6087 |
|
6088 |
+
# Norwegian Bokmål
|
6089 |
#, fuzzy
|
6090 |
#~ msgid "l-nb-NO"
|
6091 |
+
#~ msgstr "Norvégien Bokmål"
|
6092 |
|
6093 |
# Dutch; Flemish
|
6094 |
#, fuzzy
|
6095 |
#~ msgid "l-nl-BE"
|
6096 |
+
#~ msgstr "Néerlandais; Flamand"
|
6097 |
|
6098 |
# Dutch; Flemish
|
6099 |
#, fuzzy
|
6100 |
#~ msgid "l-nl-NL"
|
6101 |
+
#~ msgstr "Néerlandais; Flamand"
|
6102 |
|
6103 |
# Panjabi; Punjabi
|
6104 |
#, fuzzy
|
6105 |
#~ msgid "l-pa-IN"
|
6106 |
+
#~ msgstr "Panjabi"
|
6107 |
|
6108 |
# Polish
|
6109 |
#, fuzzy
|
6178 |
# Slovenian
|
6179 |
#, fuzzy
|
6180 |
#~ msgid "l-sl-SI"
|
6181 |
+
#~ msgstr "Slovène"
|
6182 |
|
6183 |
# Albanian
|
6184 |
#, fuzzy
|
6193 |
# Swedish
|
6194 |
#, fuzzy
|
6195 |
#~ msgid "l-sv-FI"
|
6196 |
+
#~ msgstr "Suédois"
|
6197 |
|
6198 |
# Swedish
|
6199 |
#, fuzzy
|
6200 |
#~ msgid "l-sv-SE"
|
6201 |
+
#~ msgstr "Suédois"
|
6202 |
|
6203 |
# Swahili
|
6204 |
#, fuzzy
|
6213 |
# Telugu
|
6214 |
#, fuzzy
|
6215 |
#~ msgid "l-te-IN"
|
6216 |
+
#~ msgstr "Télougou"
|
6217 |
|
6218 |
# Thai
|
6219 |
#, fuzzy
|
6220 |
#~ msgid "l-th-TH"
|
6221 |
+
#~ msgstr "Thaï"
|
6222 |
|
6223 |
# Tagalog
|
6224 |
#, fuzzy
|
6542 |
|
6543 |
# Bengali
|
6544 |
#~ msgid "l-bn"
|
6545 |
+
#~ msgstr "Bengali"
|
6546 |
|
6547 |
# Tibetan
|
6548 |
#~ msgid "l-bo"
|
6549 |
+
#~ msgstr "Tibétain"
|
6550 |
|
6551 |
# Breton
|
6552 |
#~ msgid "l-br"
|
6554 |
|
6555 |
# Chechen
|
6556 |
#~ msgid "l-ce"
|
6557 |
+
#~ msgstr "Tchétchène"
|
6558 |
|
6559 |
# Corsican
|
6560 |
#~ msgid "l-co"
|
6590 |
|
6591 |
# Scottish Gaelic; Gaelic
|
6592 |
#~ msgid "l-gd"
|
6593 |
+
#~ msgstr "Écossais"
|
6594 |
|
6595 |
# Guarani
|
6596 |
#~ msgid "l-gn"
|
6606 |
|
6607 |
# Haitian; Haitian Creole
|
6608 |
#~ msgid "l-ht"
|
6609 |
+
#~ msgstr "Haïtien; Créole haïtien"
|
6610 |
|
6611 |
# Interlingua (International Auxiliary Language Association)
|
6612 |
#~ msgid "l-ia"
|
6626 |
|
6627 |
# Indonesian
|
6628 |
#~ msgid "l-in"
|
6629 |
+
#~ msgstr "Indonésien"
|
6630 |
|
6631 |
# Ido
|
6632 |
#~ msgid "l-io"
|
6634 |
|
6635 |
# Hebrew
|
6636 |
#~ msgid "l-iw"
|
6637 |
+
#~ msgstr "Hébreu"
|
6638 |
|
6639 |
# Yiddish
|
6640 |
#~ msgid "l-ji"
|
6742 |
|
6743 |
# North Ndebele
|
6744 |
#~ msgid "l-nd"
|
6745 |
+
#~ msgstr "Ndébélé du Nord"
|
6746 |
|
6747 |
# Nepali
|
6748 |
#~ msgid "l-ne"
|
6749 |
+
#~ msgstr "Népalais"
|
6750 |
|
6751 |
# Ndonga
|
6752 |
#~ msgid "l-ng"
|
6754 |
|
6755 |
# Norwegian
|
6756 |
#~ msgid "l-no"
|
6757 |
+
#~ msgstr "Norvégien"
|
6758 |
|
6759 |
# Navajo; Navaho
|
6760 |
#~ msgid "l-nv"
|
6770 |
|
6771 |
# Ojibwa
|
6772 |
#~ msgid "l-oj"
|
6773 |
+
#~ msgstr "Ojibwé"
|
6774 |
|
6775 |
# Oromo
|
6776 |
#~ msgid "l-om"
|
6782 |
|
6783 |
# Ossetian; Ossetic
|
6784 |
#~ msgid "l-os"
|
6785 |
+
#~ msgstr "Ossète"
|
6786 |
|
6787 |
# Pali
|
6788 |
#~ msgid "l-pi"
|
6789 |
+
#~ msgstr "Pali"
|
6790 |
|
6791 |
# Romansh
|
6792 |
#~ msgid "l-rm"
|
6854 |
|
6855 |
# Turkmen
|
6856 |
#~ msgid "l-tk"
|
6857 |
+
#~ msgstr "Turkmène"
|
6858 |
|
6859 |
# Tonga (Tonga Islands)
|
6860 |
#~ msgid "l-to"
|
6866 |
|
6867 |
# Uighur; Uyghur
|
6868 |
#~ msgid "l-ug"
|
6869 |
+
#~ msgstr "Ouïghour"
|
6870 |
|
6871 |
# Venda
|
6872 |
#~ msgid "l-ve"
|
6873 |
#~ msgstr "Venda"
|
6874 |
|
6875 |
+
# Volapük
|
6876 |
#~ msgid "l-vo"
|
6877 |
+
#~ msgstr "Volapük"
|
6878 |
|
6879 |
# Wolof
|
6880 |
#~ msgid "l-wo"
|
6898 |
|
6899 |
# Korean (Democratic People's Republic of Korea)
|
6900 |
#~ msgid "l-ko-kp"
|
6901 |
+
#~ msgstr "Coréen (République populaire démocratique de Corée)"
|
6902 |
|
6903 |
# Romanian (Moldava)
|
6904 |
#~ msgid "l-ro-md"
|
6985 |
|
6986 |
# South Ndebele
|
6987 |
#~ msgid "l-nr"
|
6988 |
+
#~ msgstr "Ndébélé du Sud"
|
6989 |
|
6990 |
# Twi
|
6991 |
#~ msgid "l-tw"
|
admin/view/index.php
CHANGED
@@ -72,12 +72,12 @@
|
|
72 |
}
|
73 |
?>
|
74 |
</select>
|
75 |
-
<input type="text" name="year" id="slimstat-filter-year" class="empty-on-focus empty-on-submit" value="<?php echo !empty(wp_slimstat_db::$filters_normalized['date']['year'])?wp_slimstat_db::$filters_normalized['date']['year']:
|
76 |
<input type="hidden" class="slimstat-filter-date" name="slimstat-filter-date" value=""/>
|
77 |
<br/>+ <input type="text" name="interval" id="slimstat-filter-interval" class="empty-on-focus empty-on-submit" value="<?php echo !empty(wp_slimstat_db::$filters_normalized['date']['interval'])?wp_slimstat_db::$filters_normalized['date']['interval']:__('days', 'wp-slimstat') ?>">
|
78 |
<input type="submit" value="<?php _e('Apply','wp-slimstat') ?>" class="button-secondary">
|
79 |
<?php if (!empty(wp_slimstat_db::$filters_normalized['date']['day']) || !empty(wp_slimstat_db::$filters_normalized['date']['month']) || !empty(wp_slimstat_db::$filters_normalized['date']['year'])): ?>
|
80 |
-
<a class="slimstat-
|
81 |
<?php endif ?>
|
82 |
</span>
|
83 |
</fieldset><!-- .slimstat-date-filters -->
|
72 |
}
|
73 |
?>
|
74 |
</select>
|
75 |
+
<input type="text" name="year" id="slimstat-filter-year" placeholder="<?php _e('Year','wp-slimstat') ?>" class="empty-on-focus empty-on-submit" value="<?php echo !empty(wp_slimstat_db::$filters_normalized['date']['year'])?wp_slimstat_db::$filters_normalized['date']['year']:'' ?>">
|
76 |
<input type="hidden" class="slimstat-filter-date" name="slimstat-filter-date" value=""/>
|
77 |
<br/>+ <input type="text" name="interval" id="slimstat-filter-interval" class="empty-on-focus empty-on-submit" value="<?php echo !empty(wp_slimstat_db::$filters_normalized['date']['interval'])?wp_slimstat_db::$filters_normalized['date']['interval']:__('days', 'wp-slimstat') ?>">
|
78 |
<input type="submit" value="<?php _e('Apply','wp-slimstat') ?>" class="button-secondary">
|
79 |
<?php if (!empty(wp_slimstat_db::$filters_normalized['date']['day']) || !empty(wp_slimstat_db::$filters_normalized['date']['month']) || !empty(wp_slimstat_db::$filters_normalized['date']['year'])): ?>
|
80 |
+
<a class="slimstat-filter-link button-secondary" href="<?php echo wp_slimstat_reports::fs_url('hour equals 0&&&day equals 0&&&month equals '.date_i18n('n').'&&&year equals '.date_i18n('Y').'&&&interval equals 0') ?>"><?php _e('Reset Filters','wp-slimstat') ?></a>
|
81 |
<?php endif ?>
|
82 |
</span>
|
83 |
</fieldset><!-- .slimstat-date-filters -->
|
admin/view/wp-slimstat-db.php
CHANGED
@@ -82,13 +82,13 @@ class wp_slimstat_db {
|
|
82 |
'strtotime' => 0
|
83 |
);
|
84 |
|
85 |
-
//
|
86 |
$_filters = apply_filters('slimstat_db_pre_filters', $_filters);
|
87 |
|
88 |
// Normalize the input (filters)
|
89 |
self::$filters_normalized = self::parse_filters($_filters);
|
90 |
|
91 |
-
//
|
92 |
self::$filters_normalized = apply_filters('slimstat_db_filters_normalized', self::$filters_normalized, $_filters);
|
93 |
|
94 |
if (empty(self::$filters_normalized['date']['interval'])){
|
82 |
'strtotime' => 0
|
83 |
);
|
84 |
|
85 |
+
// Hook for the... filters
|
86 |
$_filters = apply_filters('slimstat_db_pre_filters', $_filters);
|
87 |
|
88 |
// Normalize the input (filters)
|
89 |
self::$filters_normalized = self::parse_filters($_filters);
|
90 |
|
91 |
+
// Hook for the array of normalized filters
|
92 |
self::$filters_normalized = apply_filters('slimstat_db_filters_normalized', self::$filters_normalized, $_filters);
|
93 |
|
94 |
if (empty(self::$filters_normalized['date']['interval'])){
|
admin/wp-slimstat-admin.php
CHANGED
@@ -5,7 +5,7 @@ class wp_slimstat_admin{
|
|
5 |
public static $config_url = '';
|
6 |
public static $faulty_fields = array();
|
7 |
|
8 |
-
protected static $admin_notice = "Version 3.5.7 shipped with a bug that was affecting the rendering of most charts. This update fixes this and other glitched. Please contact our <a href='http://support.getused.to.it/' target='_blank'>support team</a>, if you have any questions.";
|
9 |
|
10 |
/**
|
11 |
* Init -- Sets things up.
|
@@ -43,7 +43,7 @@ class wp_slimstat_admin{
|
|
43 |
add_filter('plugin_action_links_wp-slimstat/wp-slimstat.php', array(__CLASS__, 'plugin_action_links'), 10, 2);
|
44 |
|
45 |
// Display a notice that hightlights this version's features
|
46 |
-
if (
|
47 |
add_action('admin_notices', array(__CLASS__, 'show_admin_notice'));
|
48 |
}
|
49 |
|
@@ -184,8 +184,8 @@ class wp_slimstat_admin{
|
|
184 |
visit_id INT UNSIGNED NOT NULL DEFAULT 0,
|
185 |
dt INT(10) UNSIGNED DEFAULT 0,
|
186 |
PRIMARY KEY id (id),
|
187 |
-
FOREIGN KEY
|
188 |
-
FOREIGN KEY
|
189 |
INDEX dt_idx(dt)
|
190 |
) COLLATE utf8_general_ci $use_innodb";
|
191 |
|
@@ -238,7 +238,7 @@ class wp_slimstat_admin{
|
|
238 |
id INT UNSIGNED NOT NULL DEFAULT 0,
|
239 |
dt INT(10) UNSIGNED DEFAULT 0,
|
240 |
PRIMARY KEY (outbound_id),
|
241 |
-
FOREIGN KEY
|
242 |
INDEX odt_idx(dt)
|
243 |
) COLLATE utf8_general_ci $use_innodb";
|
244 |
|
@@ -292,22 +292,46 @@ class wp_slimstat_admin{
|
|
292 |
// --- Updates for version 3.5.6 ---
|
293 |
if (version_compare(wp_slimstat::$options['version'], '3.5.6', '<')){
|
294 |
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX dt_idx (dt)");
|
295 |
-
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats MODIFY content_info_id INT UNSIGNED NOT NULL DEFAULT 1");
|
296 |
-
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_content_info MODIFY content_info_id INT UNSIGNED");
|
297 |
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_outbound ADD INDEX odt_idx (dt)");
|
298 |
$my_wpdb->query("DELETE tso FROM {$GLOBALS['wpdb']->prefix}slim_outbound tso LEFT JOIN {$GLOBALS['wpdb']->prefix}slim_stats ts ON tso.id = ts.id WHERE ts.id IS NULL");
|
299 |
-
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_outbound ADD CONSTRAINT fk_id FOREIGN KEY (id) REFERENCES {$GLOBALS['wpdb']->prefix}slim_stats (id) ON UPDATE CASCADE ON DELETE CASCADE");
|
300 |
-
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD CONSTRAINT fk_browser_id FOREIGN KEY (browser_id) REFERENCES {$GLOBALS['wpdb']->base_prefix}slim_browsers (browser_id)");
|
301 |
-
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD CONSTRAINT fk_content_info_id FOREIGN KEY (content_info_id) REFERENCES {$GLOBALS['wpdb']->base_prefix}slim_content_info (content_info_id)");
|
302 |
}
|
303 |
// --- END: Updates for version 3.5.6 ---
|
304 |
-
|
305 |
-
// --- Updates for version 3.5.
|
306 |
-
if (version_compare(wp_slimstat::$options['version'], '3.5.
|
307 |
-
|
308 |
-
$my_wpdb->query("
|
309 |
-
|
310 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
311 |
|
312 |
// Now we can update the version stored in the database
|
313 |
if (empty(wp_slimstat::$options['version']) || wp_slimstat::$options['version'] != wp_slimstat::$version){
|
5 |
public static $config_url = '';
|
6 |
public static $faulty_fields = array();
|
7 |
|
8 |
+
protected static $admin_notice = ''; // "Version 3.5.7 shipped with a bug that was affecting the rendering of most charts. This update fixes this and other glitched. Please contact our <a href='http://support.getused.to.it/' target='_blank'>support team</a>, if you have any questions.";
|
9 |
|
10 |
/**
|
11 |
* Init -- Sets things up.
|
43 |
add_filter('plugin_action_links_wp-slimstat/wp-slimstat.php', array(__CLASS__, 'plugin_action_links'), 10, 2);
|
44 |
|
45 |
// Display a notice that hightlights this version's features
|
46 |
+
if (!empty($_GET['page']) && strpos($_GET['page'], 'wp-slim') !== false && !empty(self::$admin_notice) && wp_slimstat::$options['show_admin_notice'] != wp_slimstat::$version) {
|
47 |
add_action('admin_notices', array(__CLASS__, 'show_admin_notice'));
|
48 |
}
|
49 |
|
184 |
visit_id INT UNSIGNED NOT NULL DEFAULT 0,
|
185 |
dt INT(10) UNSIGNED DEFAULT 0,
|
186 |
PRIMARY KEY id (id),
|
187 |
+
CONSTRAINT fk_{$GLOBALS['wpdb']->prefix}browser_id FOREIGN KEY (browser_id) REFERENCES {$GLOBALS['wpdb']->base_prefix}slim_browsers(browser_id),
|
188 |
+
CONSTRAINT fk_{$GLOBALS['wpdb']->prefix}content_info_id FOREIGN KEY (content_info_id) REFERENCES {$GLOBALS['wpdb']->base_prefix}slim_content_info(content_info_id),
|
189 |
INDEX dt_idx(dt)
|
190 |
) COLLATE utf8_general_ci $use_innodb";
|
191 |
|
238 |
id INT UNSIGNED NOT NULL DEFAULT 0,
|
239 |
dt INT(10) UNSIGNED DEFAULT 0,
|
240 |
PRIMARY KEY (outbound_id),
|
241 |
+
CONSTRAINT fk_{$GLOBALS['wpdb']->prefix}id FOREIGN KEY (id) REFERENCES {$GLOBALS['wpdb']->prefix}slim_stats(id) ON UPDATE CASCADE ON DELETE CASCADE,
|
242 |
INDEX odt_idx(dt)
|
243 |
) COLLATE utf8_general_ci $use_innodb";
|
244 |
|
292 |
// --- Updates for version 3.5.6 ---
|
293 |
if (version_compare(wp_slimstat::$options['version'], '3.5.6', '<')){
|
294 |
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD INDEX dt_idx (dt)");
|
|
|
|
|
295 |
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_outbound ADD INDEX odt_idx (dt)");
|
296 |
$my_wpdb->query("DELETE tso FROM {$GLOBALS['wpdb']->prefix}slim_outbound tso LEFT JOIN {$GLOBALS['wpdb']->prefix}slim_stats ts ON tso.id = ts.id WHERE ts.id IS NULL");
|
|
|
|
|
|
|
297 |
}
|
298 |
// --- END: Updates for version 3.5.6 ---
|
299 |
+
|
300 |
+
// --- Updates for version 3.5.9 ---
|
301 |
+
if (version_compare(wp_slimstat::$options['version'], '3.5.9', '<')){
|
302 |
+
// slim_browsers
|
303 |
+
// $my_wpdb->query("DELETE FROM {$GLOBALS['wpdb']->prefix}slim_stats WHERE browser_id <= 0");
|
304 |
+
$my_wpdb->query("DELETE FROM {$GLOBALS['wpdb']->base_prefix}slim_browsers WHERE browser_id <= 0");
|
305 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_stats DROP FOREIGN KEY fk_browser_id");
|
306 |
+
|
307 |
+
// Check if slim_browsers needs to be updated
|
308 |
+
$temp_column = $my_wpdb->get_results("SHOW COLUMNS FROM {$GLOBALS['wpdb']->base_prefix}slim_browsers LIKE 'browser_id'", ARRAY_A);
|
309 |
+
if ($temp_column[0]['Extra'] != 'auto_increment' || stripos($temp_column[0]['Type'], 'smallint') === false){
|
310 |
+
$my_wpdb->query("SET FOREIGN_KEY_CHECKS=0");
|
311 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_browsers MODIFY browser_id SMALLINT UNSIGNED NOT NULL auto_increment");
|
312 |
+
$my_wpdb->query("SET FOREIGN_KEY_CHECKS=1");
|
313 |
+
}
|
314 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD CONSTRAINT fk_{$GLOBALS['wpdb']->prefix}browser_id FOREIGN KEY (browser_id) REFERENCES {$GLOBALS['wpdb']->base_prefix}slim_browsers (browser_id)");
|
315 |
+
|
316 |
+
// slim_content_info
|
317 |
+
// $my_wpdb->query("DELETE FROM {$GLOBALS['wpdb']->prefix}slim_stats WHERE content_info_id <= 0");
|
318 |
+
$my_wpdb->query("DELETE FROM {$GLOBALS['wpdb']->base_prefix}slim_content_info WHERE content_info_id <= 0");
|
319 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_stats DROP FOREIGN KEY fk_content_info_id");
|
320 |
+
|
321 |
+
// Check if slim_content_info needs to be updated
|
322 |
+
$temp_column = $my_wpdb->get_results("SHOW COLUMNS FROM {$GLOBALS['wpdb']->base_prefix}slim_content_info LIKE 'content_info_id'", ARRAY_A);
|
323 |
+
if ($temp_column[0]['Extra'] != 'auto_increment' || stripos($temp_column[0]['Type'], 'int') === false){
|
324 |
+
$my_wpdb->query("SET FOREIGN_KEY_CHECKS=0");
|
325 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->base_prefix}slim_content_info MODIFY content_info_id INT UNSIGNED NOT NULL auto_increment");
|
326 |
+
$my_wpdb->query("SET FOREIGN_KEY_CHECKS=1");
|
327 |
+
}
|
328 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_stats ADD CONSTRAINT fk_{$GLOBALS['wpdb']->prefix}content_info_id FOREIGN KEY (content_info_id) REFERENCES {$GLOBALS['wpdb']->base_prefix}slim_content_info (content_info_id)");
|
329 |
+
|
330 |
+
// slim_outbound
|
331 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_outbound DROP FOREIGN KEY fk_id");
|
332 |
+
$my_wpdb->query("ALTER TABLE {$GLOBALS['wpdb']->prefix}slim_outbound ADD CONSTRAINT fk_{$GLOBALS['wpdb']->prefix}id FOREIGN KEY (id) REFERENCES {$GLOBALS['wpdb']->prefix}slim_stats (id) ON UPDATE CASCADE ON DELETE CASCADE");
|
333 |
+
}
|
334 |
+
// --- END: Updates for version 3.5.9 ---
|
335 |
|
336 |
// Now we can update the version stored in the database
|
337 |
if (empty(wp_slimstat::$options['version']) || wp_slimstat::$options['version'] != wp_slimstat::$version){
|
readme.txt
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
-
=== WP SlimStat ===
|
2 |
Contributors: coolmann
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BNJR5EZNY3W38
|
4 |
Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users, spider, tracker, pageviews, stats, maxmind, statistics, statpress
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 3.9
|
7 |
-
Stable tag: 3.5.
|
8 |
|
9 |
== Description ==
|
10 |
-
The most accurate real
|
11 |
|
12 |
= Key Features =
|
13 |
* Real-time activity log
|
14 |
* Integrates with WooCommerce and other e-commerce plugins
|
15 |
* Compatible with W3 Total Cache, WP SuperCache and HyperCache
|
16 |
* The most accurate IP geolocation, browser and platform detection ever seen (courtesy of [MaxMind](http://www.maxmind.com/) and [Browscap](http://browscap.org))
|
17 |
-
* Available in multiple languages: English, Chinese (沐熙工作室), Farsi ([Dean](http://www.mangallery.net)), French (Michael Bastin, Jean-Michel Venet), German (TechnoViel), Italian, Portuguese, Russian ([Vitaly](http://www.visbiz.org/)), Spanish, Swedish (Per Soderman). Is your language is missing or incomplete? [Contact Us](http://slimstat.getused.to.it/contact-us/) if you would like to share your localization.
|
18 |
* World Map that works on your mobile device, too (courtesy of [amMap](http://www.ammap.com/)).
|
19 |
|
20 |
= What are people saying about WP SlimStat? =
|
@@ -271,6 +271,13 @@ foreach ($results...`
|
|
271 |
|
272 |
== Changelog ==
|
273 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
= 3.5.8 =
|
275 |
* [New] Added support for network-wide settings, premium add-on coming soon!
|
276 |
* [New] New filter `slimstat_footer_thank_you` allows you to remove the thank you note in the admin footer (thank you, [luenez](http://wordpress.org/support/topic/how-to-remove-slimstat-from-dashboard-footer))
|
@@ -306,45 +313,6 @@ foreach ($results...`
|
|
306 |
* [Fix] Filtering by IP Address was not working with our Firewall Fix add-on
|
307 |
* [Fix] Natural language date ranges were being calculated based on UTC, not the blog's timezone (thank you, [haheute](http://wordpress.org/support/topic/pageviews-per-day-not-working))
|
308 |
|
309 |
-
= 3.5.5 =
|
310 |
-
* [Note] Our partnership with HackerNinja.com ended a few days ago, we wish them all the best for their business!
|
311 |
-
* [New] The new DB API supports natural language dates: day equals today, year equals this year, etc. This brings the [Shortcodes](http://wordpress.org/plugins/wp-slimstat-shortcodes/) add-on to a whole new level of flexibility!
|
312 |
-
* [Update] Right Now has been renamed Activity Log
|
313 |
-
* [Fix] We can't believe nobody had noticed a bug in calculating the bounce rate value. Numbers were way off! (thank you, Rob)
|
314 |
-
* [Fix] User Overview add-on had some problems with sorting by certain columns
|
315 |
-
* [Fix] Filters were not being reset when multiple shortcodes were being used on the same page (thank you, [joachimcarrein](http://wordpress.org/support/topic/filters-remembered))
|
316 |
-
* [Fix] Pageviews in the Edit Posts panel were not being properly calculated (thank you, [Aljoscha](http://wordpress.org/support/topic/updated-to-354-no-statistics))
|
317 |
-
* [Fix] The Add-Ons page was not working as expected.
|
318 |
-
|
319 |
-
= 3.5.4 =
|
320 |
-
* [Note] Update your free and premium add-ons to the latest version available!
|
321 |
-
* [New] When Convert IP Addresses is enabled, hostnames are shown along with IP addresses, not instead of (thank you, Simas)
|
322 |
-
* [New] Added a new switch to turn 'Debug Mode' on (under Settings > Advanced)
|
323 |
-
* [New] Consolidated report functions to use the new DB API filter format
|
324 |
-
* [Update] [Browscap](http://browscap.org/) has been updated to version 5023, released on Feb 2, 2014
|
325 |
-
* [Fix] Various bugs related to date filters
|
326 |
-
* [Fix] Layout of our modal window (ip lookup) was being overwritten by other plugins (thank you, [charlieusa](http://wordpress.org/support/topic/infosniper-popup-displays-map-in-narrow-panel))
|
327 |
-
* [Fix] Compatibility issue with WP SlimStat Shortcodes and 'strtotime' filter (our DB API is growing!)
|
328 |
-
* [Fix] Close button had disappeared from modal window (ip lookup service)
|
329 |
-
* [Fix] Added Seychelles to the list of known Countries
|
330 |
-
* [Fix] Bug in displaying the correct time range with some timezones
|
331 |
-
* [Fix] Removed 'Save Options' button on Maintenance page
|
332 |
-
|
333 |
-
= 3.5.3 =
|
334 |
-
* [New] You can finally hide our notices whenever you want and never see them again... until the next update!
|
335 |
-
* [Update] Rolled back change that made the DB API use more SQL queries and less memory, since users were complaining about performance
|
336 |
-
* [Update] [Browscap](http://browscap.org/) has been updated to version 5022 stable, released on Jan 24, 2014
|
337 |
-
* [Update] [SlimScroll](https://github.com/rochal/jQuery-slimScroll) has been updated to version 1.3.2, released on Dec 26, 2013
|
338 |
-
* [Update] More Font Icons replaced those ugly PNGs
|
339 |
-
* [Fix] CDN Schema changed to HTTPS if site is served over HTTPS (thank you, [samatva](http://wordpress.org/support/topic/installed-tracked-nothing))
|
340 |
-
* [Fix] Bug on counter displayed in Edit Posts screen (thank you, [kirksylvester](http://wordpress.org/support/topic/pageviews-column-stats-on-wp-admin-posts-showing-zeros))
|
341 |
-
* [Fix] Bug on expanded details not honored by Spy View
|
342 |
-
* [Fix] Bug on filtering by IP Address (thank you, [rodak](http://wordpress.org/support/topic/can%C2%B4t-filter-by-ip))
|
343 |
-
* [Fix] Bug on filtering Browsers (the new API is still in its infancy, please be kind with the baby!)
|
344 |
-
* [Fix] Date range does not include 'future' dates anymore, since it was confusing some users
|
345 |
-
* [Fix] Is Empty filter was not working as expected
|
346 |
-
* [Fix] Bug on Maintenance > Delete Pageviews Where
|
347 |
-
|
348 |
== Special Thanks To ==
|
349 |
|
350 |
* [Vitaly](http://www.visbiz.org/) - Volunteered quite a lot of time for QA and testing, and provided the complete Russian localization
|
1 |
+
=== WP SlimStat ===
|
2 |
Contributors: coolmann
|
3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BNJR5EZNY3W38
|
4 |
Tags: analytics, tracking, reports, analyze, wassup, geolocation, online users, spider, tracker, pageviews, stats, maxmind, statistics, statpress
|
5 |
Requires at least: 3.8
|
6 |
Tested up to: 3.9
|
7 |
+
Stable tag: 3.5.9
|
8 |
|
9 |
== Description ==
|
10 |
+
The most accurate real-time statistics plugin for WordPress. Visit our [official site](http://slimstat.getused.to.it/) for more information, or find us on [GitHub](https://github.com/getusedtoit/wp-slimstat) (psst, we have Flattr enabled, there: star our project to donate).
|
11 |
|
12 |
= Key Features =
|
13 |
* Real-time activity log
|
14 |
* Integrates with WooCommerce and other e-commerce plugins
|
15 |
* Compatible with W3 Total Cache, WP SuperCache and HyperCache
|
16 |
* The most accurate IP geolocation, browser and platform detection ever seen (courtesy of [MaxMind](http://www.maxmind.com/) and [Browscap](http://browscap.org))
|
17 |
+
* Available in multiple languages: English, Chinese (沐熙工作室), Farsi ([Dean](http://www.mangallery.net)), French (Michael Bastin, Jean-Michel Venet, Yves Pouplard), German (TechnoViel), Italian, Portuguese, Russian ([Vitaly](http://www.visbiz.org/)), Spanish ([WebHostingHub](http://www.webhostinghub.com/)), Swedish (Per Soderman). Is your language is missing or incomplete? [Contact Us](http://slimstat.getused.to.it/contact-us/) if you would like to share your localization.
|
18 |
* World Map that works on your mobile device, too (courtesy of [amMap](http://www.ammap.com/)).
|
19 |
|
20 |
= What are people saying about WP SlimStat? =
|
271 |
|
272 |
== Changelog ==
|
273 |
|
274 |
+
= 3.5.9 =
|
275 |
+
* [Fix] New user agents were not being recorded correctly in some cases (thank you, [fberzau](http://wordpress.org/support/topic/browser-and-os-stats-not-working))
|
276 |
+
* [Fix] Bug affecting the plugin in MU environments (thank you, [27pchrisl](https://github.com/getusedtoit/wp-slimstat/commit/00e389aaa4fc425b8b8ba829a9f6c66f5ba268c8))
|
277 |
+
* [Fix] Filters have a more consistent behavior and are now easier to extend via third party add-ons
|
278 |
+
* [Fix] Date filters were being set to January 1, 1970 under certain circumstances (thank you, Russell and [uewinfo_frm](http://wordpress.org/support/topic/a-problem-for-mouse-hover-on-google-chrome))
|
279 |
+
* [Fix] Our premium Export to Excel add-on was only returning the first 20 records of each report
|
280 |
+
|
281 |
= 3.5.8 =
|
282 |
* [New] Added support for network-wide settings, premium add-on coming soon!
|
283 |
* [New] New filter `slimstat_footer_thank_you` allows you to remove the thank you note in the admin footer (thank you, [luenez](http://wordpress.org/support/topic/how-to-remove-slimstat-from-dashboard-footer))
|
313 |
* [Fix] Filtering by IP Address was not working with our Firewall Fix add-on
|
314 |
* [Fix] Natural language date ranges were being calculated based on UTC, not the blog's timezone (thank you, [haheute](http://wordpress.org/support/topic/pageviews-per-day-not-working))
|
315 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
== Special Thanks To ==
|
317 |
|
318 |
* [Vitaly](http://www.visbiz.org/) - Volunteered quite a lot of time for QA and testing, and provided the complete Russian localization
|
wp-slimstat.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP SlimStat
|
4 |
Plugin URI: http://wordpress.org/plugins/wp-slimstat/
|
5 |
Description: The most accurate real-time statistics plugin for WordPress
|
6 |
-
Version: 3.5.
|
7 |
Author: Camu
|
8 |
Author URI: http://slimstat.getused.to.it/
|
9 |
*/
|
@@ -11,7 +11,7 @@ Author URI: http://slimstat.getused.to.it/
|
|
11 |
if (!empty(wp_slimstat::$options)) return true;
|
12 |
|
13 |
class wp_slimstat{
|
14 |
-
public static $version = '3.5.
|
15 |
public static $options = array();
|
16 |
|
17 |
public static $wpdb = '';
|
@@ -134,7 +134,6 @@ class wp_slimstat{
|
|
134 |
$lt = localtime();
|
135 |
if (!empty($timezone)) date_default_timezone_set('UTC');
|
136 |
self::$stat['dt'] = mktime($lt[2], $lt[1], $lt[0], $lt[4]+1, $lt[3], $lt[5]+1900);
|
137 |
-
|
138 |
self::insert_row(self::$stat, $GLOBALS['wpdb']->prefix.'slim_outbound');
|
139 |
|
140 |
do_action('slimstat_track_success_outbound', self::$stat);
|
@@ -1206,7 +1205,7 @@ class wp_slimstat{
|
|
1206 |
public static function wp_slimstat_enqueue_tracking_script(){
|
1207 |
if (self::$options['enable_cdn'] == 'yes'){
|
1208 |
$schema = is_ssl()?'https':'http';
|
1209 |
-
wp_register_script('wp_slimstat', $schema.'://cdn.jsdelivr.net/wp-slimstat/'.self::$
|
1210 |
}
|
1211 |
else{
|
1212 |
wp_register_script('wp_slimstat', plugins_url('/wp-slimstat.js', __FILE__), array(), null, true);
|
3 |
Plugin Name: WP SlimStat
|
4 |
Plugin URI: http://wordpress.org/plugins/wp-slimstat/
|
5 |
Description: The most accurate real-time statistics plugin for WordPress
|
6 |
+
Version: 3.5.9
|
7 |
Author: Camu
|
8 |
Author URI: http://slimstat.getused.to.it/
|
9 |
*/
|
11 |
if (!empty(wp_slimstat::$options)) return true;
|
12 |
|
13 |
class wp_slimstat{
|
14 |
+
public static $version = '3.5.9';
|
15 |
public static $options = array();
|
16 |
|
17 |
public static $wpdb = '';
|
134 |
$lt = localtime();
|
135 |
if (!empty($timezone)) date_default_timezone_set('UTC');
|
136 |
self::$stat['dt'] = mktime($lt[2], $lt[1], $lt[0], $lt[4]+1, $lt[3], $lt[5]+1900);
|
|
|
137 |
self::insert_row(self::$stat, $GLOBALS['wpdb']->prefix.'slim_outbound');
|
138 |
|
139 |
do_action('slimstat_track_success_outbound', self::$stat);
|
1205 |
public static function wp_slimstat_enqueue_tracking_script(){
|
1206 |
if (self::$options['enable_cdn'] == 'yes'){
|
1207 |
$schema = is_ssl()?'https':'http';
|
1208 |
+
wp_register_script('wp_slimstat', $schema.'://cdn.jsdelivr.net/wp-slimstat/'.self::$version.'/wp-slimstat.js', array(), null, true);
|
1209 |
}
|
1210 |
else{
|
1211 |
wp_register_script('wp_slimstat', plugins_url('/wp-slimstat.js', __FILE__), array(), null, true);
|