diff --git a/cfg/apache.config.php b/cfg/apache.config.php index 1277b49f..fcc96923 100644 --- a/cfg/apache.config.php +++ b/cfg/apache.config.php @@ -1,5 +1,5 @@ __('PHP'), 'desc' => __('PHP'), diff --git a/cfg/php.paths.php b/cfg/php.paths.php index a730568b..8170f256 100644 --- a/cfg/php.paths.php +++ b/cfg/php.paths.php @@ -1,5 +1,5 @@ $fpaths) { + $found = 1; + $tried[ $software ][ $path ] = true; - foreach ( $fpaths as $userfile ) { + foreach ( $files as $type => $fpaths) { - $gfiles = glob( $path . $userfile , GLOB_MARK | GLOB_NOCHECK ); + foreach ( $fpaths as $userfile ) { - foreach( $gfiles as $file ) { + $gfiles = glob( $path . $userfile , GLOB_MARK | GLOB_NOCHECK ); - $file = basename( $file ); - $allfiles[ $file ] = $file; + if ( is_array( $gfiles ) ) { - if ( ( is_readable( $path . $file ) ) && ( ! is_dir( $path . $file ) ) ) { + foreach( $gfiles as $file ) { - if ( ! is_array( $tried[ $software ][ $path ] ) ) { - $tried[ $software ][ $path ] = array(); - } + $file = basename( $file ); + $allfiles[ $file ] = $file; - $tried[ $software ][ $path ][ $type ][] = $file; - $found = 2; - } + if ( ( is_readable( $path . $file ) ) && ( ! is_dir( $path . $file ) ) ) { + + if ( ! is_array( $tried[ $software ][ $path ] ) ) { + $tried[ $software ][ $path ] = array(); + } + $tried[ $software ][ $path ][ $type ][] = $file; + $found = 2; + } + + } + } } } } @@ -459,9 +477,35 @@ } } catch (Exception $e) { - $return['error'] = $e->getMessage(); + // Error message for timezone not configured + if ( strpos( $e->getMessage() , 'date.timezone' ) ) { + $return[ 'error' ] = $e->getMessage() . '
";
';
_e( 'Your Pimp my Log instance is ready to use.' );
echo '
';
diff --git a/inc/error.inc.php b/inc/error.inc.php
index 1eedbaf8..8f904be9 100644
--- a/inc/error.inc.php
+++ b/inc/error.inc.php
@@ -1,5 +1,5 @@
$lastmodified) {
- $files[ $fileid . '_' . $i ] = $file;
- $files[ $fileid . '_' . $i ]['path'] = $path;
- $files[ $fileid . '_' . $i ]['display'].= ' > ' . basename( $path );
+ // The first file id is the ID of the configuration file then others files are suffixed with _2, _3, etc...
+ foreach ( $new_paths as $path => $lastmodified ) {
+ $ext = ( $i > 1 ) ? '_' . $i : '';
+
+ $files[ $fileid . $ext ] = $file;
+ $files[ $fileid . $ext ]['oid'] = $fileid;
+ $files[ $fileid . $ext ]['odisplay'] = $files[ $fileid . $ext ]['display'];
+ $files[ $fileid . $ext ]['path'] = $path;
+ $files[ $fileid . $ext ]['display'] .= ' > ' . basename( $path );
if ($i >= $count) {
break;
}
@@ -489,7 +524,12 @@ function config_load($load_user_configuration_dir = true)
// Anonymous access only
if ( is_null( $username ) ) {
foreach ( $files as $fileid => $file ) {
- if ( Sentinel::isLogAnonymous( $fileid ) ) {
+ $a = $fileid;
+ // glob file
+ if ( isset( $files[ $fileid ]['oid'] ) ) {
+ $a = $files[ $fileid ]['oid'];
+ }
+ if ( Sentinel::isLogAnonymous( $a ) ) {
$final[ $fileid ] = $file;
}
}
@@ -498,7 +538,12 @@ function config_load($load_user_configuration_dir = true)
// Anonymous access + User access
else {
foreach ( $files as $fileid => $file ) {
- if ( ( Sentinel::userCanOnLogs( $fileid , 'r' , true , $username ) ) || ( Sentinel::isLogAnonymous( $fileid ) ) ) {
+ $a = $fileid;
+ // glob file
+ if ( isset( $files[ $fileid ]['oid'] ) ) {
+ $a = $files[ $fileid ]['oid'];
+ }
+ if ( ( Sentinel::userCanOnLogs( $a , 'r' , true , $username ) ) || ( Sentinel::isLogAnonymous( $a ) ) ) {
$final[ $fileid ] = $file;
}
}
@@ -856,8 +901,16 @@ function get_server_user()
{
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
return '';
+ } else if ( SAFE_MODE === true ) {
+ // for Suhosin
+ return '';
} else {
- return @exec( 'whoami' );
+ // for PHP disabled_func
+ set_error_handler( function($errno, $errstr, $errfile, $errline, array $errcontext) {});
+ $a = exec( 'whoami' );
+ restore_error_handler();
+
+ return $a;
}
}
@@ -1146,10 +1199,12 @@ function upgrade_is_git() {
* @return mixed
*/
function upgrade_can_git_pull() {
+ if ( SAFE_MODE === true ) return false;
+
$base = PML_BASE;
// Check if git is callable and if all files are not changed
- $a = @exec('cd ' . escapeshellarg( $base ) . '; git status -s' , $lines , $code );
+ $a = exec('cd ' . escapeshellarg( $base ) . '; git status -s' , $lines , $code );
// Error while executing this comand
if ( $code !== 0 ) return array( $code , $lines);
@@ -1175,7 +1230,7 @@ function upgrade_can_git_pull() {
if ( ! $f->isWritable() ) {
// check if it ignored or not
- $b = @exec( "git ls-files " . escapeshellarg( $f->getPathname() ) );
+ $b = exec( "git ls-files " . escapeshellarg( $f->getPathname() ) );
if ( ! empty( $b ) ) {
$canwrite = false;
$lines[] = $f->getPathname();
@@ -1255,7 +1310,7 @@ function start_session( $path = '' , $lifetime = 0 ) {
$tz = USER_TIME_ZONE;
}
if ( ! in_array( $tz , $tz_available ) ) {
- $tz = date('e');
+ $tz = @date('e');
}
diff --git a/inc/login.inc.php b/inc/login.inc.php
index 111b9dba..21d5edc5 100644
--- a/inc/login.inc.php
+++ b/inc/login.inc.php
@@ -1,5 +1,5 @@
true );
}
}
+ else if ( substr( $fileid , 0 , 2 ) === 't-' ) {
+ if ( (int)$access === 1 ) {
+ $tags[ substr( $fileid , 2 ) ] = array( 'r' => true );
+ }
+ }
}
Sentinel::setUser( $username , $password , array('user') , $logs );
if ( $type === 'add' ) Sentinel::log( 'adduser ' . $username , $current_user );
@@ -410,7 +415,26 @@ function shutdown() {
foreach( $files as $file_id => $file ) {
- $fid = h( $file_id );
+ $fid = h( $file_id );
+ $display = $files[ $file_id ][ 'display' ];
+ $paths = $files[ $file_id ][ 'path' ];
+ $color = 'default';
+
+ if ( isset( $files[ $file_id ][ 'oid' ] ) ) {
+ if ( $files[ $file_id ][ 'oid' ] !== $file_id ) continue;
+ $display = $files[ $file_id ][ 'odisplay' ];
+ if ( isset( $files[ $file_id ][ 'count' ] ) ) {
+ $remain = (int)$files[ $file_id ][ 'count' ] - 1;
+ if ( $remain === 1 ) {
+ $paths .= ' ' . __( 'and an other file defined by glob pattern' );
+ }
+ else if ( $remain > 1 ) {
+ $paths .= ' ' . sprintf( __( 'and %s other possible files defined by glob pattern' ) , $remain );
+ }
+ }
+ $color = 'warning';
+ }
+
if ( Sentinel::isLogAnonymous( $file_id ) ) {
$e = 'active btn-success';
$d = 'btn-default';
@@ -424,7 +448,7 @@ function shutdown() {
}
$r .= '
"+logs.search+"
"):lemma.search_no_regular.replace("%s",""+logs.search+"
")),$("#nolog").html(nolog).show(),$("#logshead").hide()}else $("#nolog").text("").hide(),$("#logshead").show();else logs.logs&&($("#nolog").text("").hide(),$("#logshead").show());if(logs.regsearch?($("#searchctn").addClass("has-success"),$("#searchctn").prop("title",lemma.regex_valid)):($("#searchctn").removeClass("has-success"),$("#searchctn").prop("title",lemma.regex_invalid)),logs.headers){$("#logshead").text(""),$(".thmenucol").remove();var thtr=$("'+c+" ",b+=c>1?lemma.users:lemma.user,b+="
'+lemma.username+" | ",b+=''+lemma.roles+" | ",b+=''+lemma.creationdate+" | ",b+=''+lemma.lastlogin+" | ",b+="
---|---|---|---|
'+f+" | ",b+=""+j+" | ",b+=""+h+" | ",b+=""+i+" | ",b+="
'+a.b.u+"
"+logs.search+"
"):lemma.search_no_regular.replace("%s",""+logs.search+"
")),$("#nolog").html(nolog).show(),$("#logshead").hide()}else $("#nolog").text("").hide(),$("#logshead").show();else logs.logs&&($("#nolog").text("").hide(),$("#logshead").show());if(logs.regsearch?($("#searchctn").addClass("has-success"),$("#searchctn").prop("title",lemma.regex_valid)):($("#searchctn").removeClass("has-success"),$("#searchctn").prop("title",lemma.regex_invalid)),logs.headers){$("#logshead").text(""),$(".thmenucol").remove();var thtr=$("'+c+" ",b+=c>1?lemma.users:lemma.user,b+="
'+lemma.username+" | ",b+=''+lemma.roles+" | ",b+=''+lemma.creationdate+" | ",b+=''+lemma.lastlogin+" | ",b+="
---|---|---|---|
'+f+" | ",b+=""+j+" | ",b+=""+h+" | ",b+=""+i+" | ",b+="
'+a.b.u+"
'+lemma.date+" | ",c+=''+lemma.username+" | ",c+=''+lemma.action+" | ",c+=''+lemma.ip+" | ",c+=''+lemma.useragent+" | ",c+="
---|---|---|---|---|
"+f+" | ",c+=""+h+" | ",c+=""+g+" | ",c+=""+i+" | ",c+='").text(a.b[e][4]).html()+'">'+j+"",c+=" |
error_log
ini parameter."
msgstr "Logs PHP définis par le paramètre ini error_log
."
+#: _build/cfg/php.config.php:20 _site/cfg/php.config.php:10
#: cfg/php.config.php:10
#, php-format
msgid "Pimp My Log has detected %s
on your server."
msgstr "Pimp My Log a détecté %s
sur le serveur."
+#: _build/cfg/php.config.php:28 _site/cfg/php.config.php:18
#: cfg/php.config.php:18
msgid ""
"Pimp My Log has not detected any path in the ini parameter error_log"
@@ -94,6 +115,7 @@ msgstr ""
"Pimp My Log n'a pas détecté de log dans le paramètre ini error_log"
"code>."
+#: _build/cfg/php.config.php:29 _site/cfg/php.config.php:19
#: cfg/php.config.php:19
msgid ""
"Activate this software only if you use ini_set('error_log')
"
@@ -102,11 +124,16 @@ msgstr ""
"Activez ce logiciel que si vous utilisez ini_set('error_log')
"
"directement dans le code de vos scripts."
-#: inc/configure.php:45 inc/configure.php:85 inc/test.php:643
+#: _build/inc/configure.php:66 _build/inc/configure.php:106
+#: _build/inc/test.php:377 _site/inc/configure.php:57
+#: _site/inc/configure.php:97 _site/inc/test.php:643 _tmp/inc/configure.php:67
+#: _tmp/inc/configure.php:107 _tmp/inc/test.php:653 inc/configure.php:57
+#: inc/configure.php:97 inc/test.php:643
msgid "Setup admin account"
msgstr "Configurer un compte administrateur"
-#: inc/configure.php:47
+#: _build/inc/configure.php:68 _site/inc/configure.php:59
+#: _tmp/inc/configure.php:69 inc/configure.php:59
msgid ""
"You can use Pimp my Log without authentication. You will be able to "
"add this feature later from the debugger web interface."
@@ -114,7 +141,8 @@ msgstr ""
"Vous pouvez utiliser Pimp my Log sans authentification. Vous "
"pourrez rajouter cette fonctionnalité plus tard depuis le Debuggeur."
-#: inc/configure.php:49
+#: _build/inc/configure.php:70 _site/inc/configure.php:61
+#: _tmp/inc/configure.php:71 inc/configure.php:61
msgid ""
"Setup an admin account will let you create other users later and give them "
"access to certain log files only."
@@ -123,110 +151,203 @@ msgstr ""
"utilisateurs et de leur donner accès à certains fichiers de log. Vous "
"pourrez aussi régler un accès anonyme."
-#: inc/configure.php:51
+#: _build/inc/configure.php:72 _site/inc/configure.php:63
+#: _tmp/inc/configure.php:73 inc/configure.php:63
msgid "Do you want to create an admin account now?"
msgstr "Voulez-vous créer un compte admin maintenant ?"
-#: inc/configure.php:54
+#: _build/inc/configure.php:75 _site/inc/configure.php:66
+#: _tmp/inc/configure.php:76 inc/configure.php:66
msgid "Create an admin account"
msgstr "Créer un compte administrateur"
-#: inc/configure.php:56 inc/configure.php:478 inc/test.php:514
-#: inc/test.php:515 inc/test.php:547 inc/test.php:556 inc/users.pml.php:425
-#: index.php:772
+#: _build/inc/configure.php:77 _build/inc/configure.php:531
+#: _build/inc/test.php:317 _build/inc/test.php:318 _build/inc/test.php:335
+#: _build/inc/test.php:344 _build/inc/users.pml.php:458 _build/index.php:323
+#: _site/inc/configure.php:68 _site/inc/configure.php:522
+#: _site/inc/test.php:514 _site/inc/test.php:515 _site/inc/test.php:547
+#: _site/inc/test.php:556 _site/inc/users.pml.php:449 _site/index.php:797
+#: _tmp/inc/configure.php:78 _tmp/inc/configure.php:532 _tmp/inc/test.php:524
+#: _tmp/inc/test.php:525 _tmp/inc/test.php:557 _tmp/inc/test.php:566
+#: _tmp/inc/users.pml.php:459 _tmp/index.php:807 inc/configure.php:68
+#: inc/configure.php:522 inc/test.php:514 inc/test.php:515 inc/test.php:547
+#: inc/test.php:556 inc/users.pml.php:449 index.php:797
msgid "No"
msgstr "Non"
-#: inc/configure.php:72
+#: _build/inc/configure.php:93 _site/inc/configure.php:84
+#: _tmp/inc/configure.php:94 inc/configure.php:84
#, php-format
msgid "File %s
already exists!"
msgstr "Le fichier %s
existe déjà."
-#: inc/configure.php:74
+#: _build/inc/configure.php:95 _site/inc/configure.php:86
+#: _tmp/inc/configure.php:96 inc/configure.php:86
msgid "Please remove it from the root directory:"
msgstr "Supprimez le de la racine :"
-#: inc/configure.php:77 inc/configure.php:127 inc/configure.php:163
-#: inc/configure.php:185 inc/test.php:172 inc/test.php:217 inc/test.php:295
+#: _build/inc/configure.php:98 _build/inc/configure.php:148
+#: _build/inc/configure.php:184 _build/inc/configure.php:206
+#: _build/inc/test.php:147 _build/inc/test.php:155 _build/inc/test.php:185
+#: _build/inc/test.php:377 _build/inc/upgrade.pml.php:292
+#: _build/inc/upgrade.pml.php:309 _build/inc/upgrade.pml.php:389
+#: _build/inc/users.pml.php:521 _build/inc/users.pml.php:535
+#: _build/index.php:303 _site/inc/configure.php:89 _site/inc/configure.php:139
+#: _site/inc/configure.php:175 _site/inc/configure.php:197
+#: _site/inc/test.php:172 _site/inc/test.php:217 _site/inc/test.php:295
+#: _site/inc/test.php:635 _site/inc/upgrade.pml.php:283
+#: _site/inc/upgrade.pml.php:300 _site/inc/upgrade.pml.php:380
+#: _site/inc/users.pml.php:512 _site/inc/users.pml.php:526 _site/index.php:574
+#: _site/index.php:596 _tmp/inc/configure.php:99 _tmp/inc/configure.php:149
+#: _tmp/inc/configure.php:185 _tmp/inc/configure.php:207 _tmp/inc/test.php:182
+#: _tmp/inc/test.php:227 _tmp/inc/test.php:305 _tmp/inc/test.php:645
+#: _tmp/inc/upgrade.pml.php:293 _tmp/inc/upgrade.pml.php:310
+#: _tmp/inc/upgrade.pml.php:390 _tmp/inc/users.pml.php:522
+#: _tmp/inc/users.pml.php:536 _tmp/index.php:584 _tmp/index.php:606
+#: inc/configure.php:89 inc/configure.php:139 inc/configure.php:175
+#: inc/configure.php:197 inc/test.php:172 inc/test.php:217 inc/test.php:295
#: inc/test.php:635 inc/upgrade.pml.php:283 inc/upgrade.pml.php:300
-#: inc/upgrade.pml.php:380 inc/users.pml.php:488 inc/users.pml.php:502
-#: index.php:567 index.php:589
+#: inc/upgrade.pml.php:380 inc/users.pml.php:512 inc/users.pml.php:526
+#: index.php:574 index.php:596
msgid "Copy to clipboard"
msgstr "Copier dans le presse-papier"
-#: inc/configure.php:77 inc/configure.php:127 inc/configure.php:163
-#: inc/configure.php:185 inc/upgrade.pml.php:289 inc/upgrade.pml.php:306
-#: inc/upgrade.pml.php:386
+#: _build/inc/configure.php:98 _build/inc/configure.php:148
+#: _build/inc/configure.php:184 _build/inc/configure.php:206
+#: _build/inc/upgrade.pml.php:298 _build/inc/upgrade.pml.php:315
+#: _build/inc/upgrade.pml.php:395 _site/inc/configure.php:89
+#: _site/inc/configure.php:139 _site/inc/configure.php:175
+#: _site/inc/configure.php:197 _site/inc/upgrade.pml.php:289
+#: _site/inc/upgrade.pml.php:306 _site/inc/upgrade.pml.php:386
+#: _tmp/inc/configure.php:99 _tmp/inc/configure.php:149
+#: _tmp/inc/configure.php:185 _tmp/inc/configure.php:207
+#: _tmp/inc/upgrade.pml.php:299 _tmp/inc/upgrade.pml.php:316
+#: _tmp/inc/upgrade.pml.php:396 inc/configure.php:89 inc/configure.php:139
+#: inc/configure.php:175 inc/configure.php:197 inc/upgrade.pml.php:289
+#: inc/upgrade.pml.php:306 inc/upgrade.pml.php:386
msgid "Command copied!"
msgstr "Commande copiée !"
-#: inc/configure.php:87
+#: _build/inc/configure.php:108 _site/inc/configure.php:99
+#: _tmp/inc/configure.php:109 inc/configure.php:99
msgid "Please choose a username and a password for the admin account."
msgstr ""
"Choisissez un nom d'utilisateur et un mot de passe pour le compte admin."
-#: inc/configure.php:92 inc/test.php:648 inc/test.php:713
+#: _build/inc/configure.php:113 _build/inc/test.php:377
+#: _build/inc/test.php:394 _build/inc/users.pml.php:266
+#: _site/inc/configure.php:104 _site/inc/test.php:648 _site/inc/test.php:713
+#: _site/inc/users.pml.php:257 _tmp/inc/configure.php:114
+#: _tmp/inc/test.php:658 _tmp/inc/test.php:723 _tmp/inc/users.pml.php:267
+#: inc/configure.php:104 inc/test.php:648 inc/test.php:713
#: inc/users.pml.php:257
msgid "Username is required"
msgstr "Le nom d'utilisateur est obligatoire"
-#: inc/configure.php:94 inc/login.inc.php:76 inc/login.inc.php:78
-#: inc/test.php:651 inc/test.php:716 index.php:713 index.php:717
+#: _build/inc/configure.php:115 _build/inc/login.inc.php:44
+#: _build/inc/login.inc.php:46 _build/inc/test.php:377 _build/inc/test.php:394
+#: _build/index.php:303 _site/inc/configure.php:106 _site/inc/login.inc.php:76
+#: _site/inc/login.inc.php:78 _site/inc/test.php:651 _site/inc/test.php:716
+#: _site/index.php:720 _site/index.php:724 _tmp/inc/configure.php:116
+#: _tmp/inc/login.inc.php:86 _tmp/inc/login.inc.php:88 _tmp/inc/test.php:661
+#: _tmp/inc/test.php:726 _tmp/index.php:730 _tmp/index.php:734
+#: inc/configure.php:106 inc/login.inc.php:76 inc/login.inc.php:78
+#: inc/test.php:651 inc/test.php:716 index.php:720 index.php:724
msgid "Username"
msgstr "Nom d'utilisateur"
-#: inc/configure.php:99 inc/test.php:614 inc/test.php:657 inc/test.php:700
+#: _build/inc/configure.php:120 _build/inc/test.php:369
+#: _build/inc/test.php:377 _build/inc/test.php:386 _build/inc/test.php:394
+#: _build/inc/users.pml.php:118 _build/inc/users.pml.php:274
+#: _site/inc/configure.php:111 _site/inc/test.php:614 _site/inc/test.php:657
+#: _site/inc/test.php:700 _site/inc/test.php:722 _site/inc/users.pml.php:109
+#: _site/inc/users.pml.php:265 _tmp/inc/configure.php:121
+#: _tmp/inc/test.php:624 _tmp/inc/test.php:667 _tmp/inc/test.php:710
+#: _tmp/inc/test.php:732 _tmp/inc/users.pml.php:119 _tmp/inc/users.pml.php:275
+#: inc/configure.php:111 inc/test.php:614 inc/test.php:657 inc/test.php:700
#: inc/test.php:722 inc/users.pml.php:109 inc/users.pml.php:265
msgid "Password must contain at least 6 chars"
msgstr "Le mot de passe doit contenir au moins 6 caractères"
-#: inc/configure.php:101 inc/login.inc.php:89 inc/login.inc.php:91
-#: inc/test.php:660 inc/test.php:725 index.php:722 index.php:726
+#: _build/inc/configure.php:122 _build/inc/login.inc.php:50
+#: _build/inc/login.inc.php:52 _build/inc/test.php:377 _build/inc/test.php:394
+#: _build/index.php:303 _site/inc/configure.php:113 _site/inc/login.inc.php:89
+#: _site/inc/login.inc.php:91 _site/inc/test.php:660 _site/inc/test.php:725
+#: _site/index.php:729 _site/index.php:733 _tmp/inc/configure.php:123
+#: _tmp/inc/login.inc.php:99 _tmp/inc/login.inc.php:101 _tmp/inc/test.php:670
+#: _tmp/inc/test.php:735 _tmp/index.php:739 _tmp/index.php:743
+#: inc/configure.php:113 inc/login.inc.php:89 inc/login.inc.php:91
+#: inc/test.php:660 inc/test.php:725 index.php:729 index.php:733
msgid "Password"
msgstr "Mot de passe"
-#: inc/configure.php:106 inc/test.php:666 inc/test.php:731
+#: _build/inc/configure.php:127 _build/inc/test.php:377
+#: _build/inc/test.php:394 _site/inc/configure.php:118 _site/inc/test.php:666
+#: _site/inc/test.php:731 _tmp/inc/configure.php:128 _tmp/inc/test.php:676
+#: _tmp/inc/test.php:741 inc/configure.php:118 inc/test.php:666
+#: inc/test.php:731
msgid "Password is not the same"
msgstr "Les mots de passe ne correspondent pas"
-#: inc/configure.php:108 inc/test.php:669 inc/test.php:734 index.php:731
-#: index.php:735
+#: _build/inc/configure.php:129 _build/inc/test.php:377
+#: _build/inc/test.php:394 _build/index.php:303 _site/inc/configure.php:120
+#: _site/inc/test.php:669 _site/inc/test.php:734 _site/index.php:738
+#: _site/index.php:742 _tmp/inc/configure.php:130 _tmp/inc/test.php:679
+#: _tmp/inc/test.php:744 _tmp/index.php:748 _tmp/index.php:752
+#: inc/configure.php:120 inc/test.php:669 inc/test.php:734 index.php:738
+#: index.php:742
msgid "Password Confirmation"
msgstr "Confirmation du mot de passe"
-#: inc/configure.php:113 inc/configure.php:540
+#: _build/inc/configure.php:134 _build/inc/configure.php:556
+#: _site/inc/configure.php:125 _site/inc/configure.php:592
+#: _tmp/inc/configure.php:135 _tmp/inc/configure.php:602 inc/configure.php:125
+#: inc/configure.php:592
msgid "Continue"
msgstr "Continuer"
-#: inc/configure.php:122 inc/configure.php:180
+#: _build/inc/configure.php:143 _build/inc/configure.php:201
+#: _site/inc/configure.php:134 _site/inc/configure.php:192
+#: _tmp/inc/configure.php:144 _tmp/inc/configure.php:202 inc/configure.php:134
+#: inc/configure.php:192
#, php-format
msgid "Unable to create file %s
"
msgstr "Impossible de créer le fichier %s
"
-#: inc/configure.php:124 inc/configure.php:182
+#: _build/inc/configure.php:145 _build/inc/configure.php:203
+#: _site/inc/configure.php:136 _site/inc/configure.php:194
+#: _tmp/inc/configure.php:146 _tmp/inc/configure.php:204 inc/configure.php:136
+#: inc/configure.php:194
msgid "Please give temporary write access to the root directory:"
msgstr ""
"Merci de donner temporairement l'accès en écriture au répertoire racine :"
-#: inc/configure.php:159
+#: _build/inc/configure.php:180 _site/inc/configure.php:171
+#: _tmp/inc/configure.php:181 inc/configure.php:171
msgid "Please remove it manually if you want me to create it:"
msgstr "Supprimez le manuellement si vous souhaitez que je le crée :"
-#: inc/configure.php:165
+#: _build/inc/configure.php:186 _site/inc/configure.php:177
+#: _tmp/inc/configure.php:187 inc/configure.php:177
#, php-format
msgid "File %s
already exists."
msgstr "Le fichier %s
existe déjà."
-#: inc/configure.php:199
+#: _build/inc/configure.php:220 _site/inc/configure.php:211
+#: _tmp/inc/configure.php:221 inc/configure.php:211
msgid "Choose softwares to search log files for"
msgstr "Choisir les logiciels pour lesquels chercher des logs"
-#: inc/configure.php:221
+#: _build/inc/configure.php:242 _site/inc/configure.php:233
+#: _tmp/inc/configure.php:243 inc/configure.php:233
#, php-format
msgid "Software %s"
msgstr "Logiciel %s"
-#: inc/configure.php:231 inc/configure.php:415
+#: _build/inc/configure.php:252 _build/inc/configure.php:442
+#: _site/inc/configure.php:243 _site/inc/configure.php:433
+#: _tmp/inc/configure.php:253 _tmp/inc/configure.php:443 inc/configure.php:243
+#: inc/configure.php:433
#, php-format
msgid ""
"Files %s
or %s
do not exist. Please review your "
@@ -235,11 +356,13 @@ msgstr ""
"Les fichiers %s
ou %s
n'existent pas. Revoyez "
"votre configuration de logiciels."
-#: inc/configure.php:284
+#: _build/inc/configure.php:311 _site/inc/configure.php:302
+#: _tmp/inc/configure.php:312 inc/configure.php:302
msgid "Unable to find any directory."
msgstr "Impossible de trouver un seul répertoire."
-#: inc/configure.php:285
+#: _build/inc/configure.php:312 _site/inc/configure.php:303
+#: _tmp/inc/configure.php:313 inc/configure.php:303
msgid ""
"Check in the following list if these directories are readable by the "
"webserver user and refresh this page"
@@ -247,13 +370,15 @@ msgstr ""
"Vérifiez dans la liste suivante si les répertoires sont lisibles par "
"l'utilisateur qui a lancé le serveur web et rafraichissez la page"
-#: inc/configure.php:288
+#: _build/inc/configure.php:315 _site/inc/configure.php:306
+#: _tmp/inc/configure.php:316 inc/configure.php:306
msgid "Directories are available but unable to find files inside."
msgstr ""
"Les répertoires sont disponibles mais impossible de trouver des fichiers de "
"logs dedans."
-#: inc/configure.php:289
+#: _build/inc/configure.php:316 _site/inc/configure.php:307
+#: _tmp/inc/configure.php:317 inc/configure.php:307
msgid ""
"Check in the following list if these directories contain readable files by "
"the webserver user and refresh this page."
@@ -262,7 +387,8 @@ msgstr ""
"de logs lisibles par l'utilisateur qui a lancé le serveur web et "
"rafraichissez la page."
-#: inc/configure.php:290
+#: _build/inc/configure.php:317 _site/inc/configure.php:308
+#: _tmp/inc/configure.php:318 inc/configure.php:308
msgid ""
"Don't forget that to read a file, ALL parent directories have to be "
"accessible too!"
@@ -270,20 +396,24 @@ msgstr ""
"N'oubliez pas que pour lire un fichier, TOUS les répertoires parents doivent "
"être traversables !"
-#: inc/configure.php:300
+#: _build/inc/configure.php:327 _site/inc/configure.php:318
+#: _tmp/inc/configure.php:328 inc/configure.php:318
#, php-format
msgid "These files have been checked in all paths: %s "
msgstr "Ces fichiers ont été testés dans tous les répertoires : %s"
-#: inc/configure.php:303
+#: _build/inc/configure.php:330 _site/inc/configure.php:321
+#: _tmp/inc/configure.php:331 inc/configure.php:321
msgid "Log files have been found!"
msgstr "Des fichiers de log ont été trouvés !"
-#: inc/configure.php:304
+#: _build/inc/configure.php:331 _site/inc/configure.php:322
+#: _tmp/inc/configure.php:332 inc/configure.php:322
msgid "Check in the following list which files you want to configure."
msgstr "Choisissez dans la liste les fichiers que vous souhaitez configurer."
-#: inc/configure.php:306
+#: _build/inc/configure.php:333 _site/inc/configure.php:324
+#: _tmp/inc/configure.php:334 inc/configure.php:324
msgid ""
"If files or directories are missing, verify that they are readable by the "
"webserver user"
@@ -291,36 +421,53 @@ msgstr ""
"Si des fichiers ou répertoires sont manquants, vérifiez qu'ils sont bien "
"lisibles par l'utilisateur sous lequel tourne le serveur web."
-#: inc/configure.php:311 inc/configure.php:362
+#: _build/inc/configure.php:338 _build/inc/configure.php:389
+#: _site/inc/configure.php:329 _site/inc/configure.php:380
+#: _tmp/inc/configure.php:339 _tmp/inc/configure.php:390 inc/configure.php:329
+#: inc/configure.php:380
msgid "unable to detect web server user"
msgstr "impossible de trouver l'utilisateur sous lequel tourne le serveur web"
-#: inc/configure.php:312 inc/configure.php:363
+#: _build/inc/configure.php:339 _build/inc/configure.php:390
+#: _site/inc/configure.php:330 _site/inc/configure.php:381
+#: _tmp/inc/configure.php:340 _tmp/inc/configure.php:391 inc/configure.php:330
+#: inc/configure.php:381
#, php-format
msgid "web server user seems to be %s
"
msgstr ""
"L'utilisateur sous lequel tourne le serveur web semble être %s
"
-#: inc/configure.php:316
+#: _build/inc/configure.php:343 _site/inc/configure.php:334
+#: _tmp/inc/configure.php:344 inc/configure.php:334
msgid ""
"You can also type log files path in the text area below separated by coma:"
msgstr ""
"Vous pouvez aussi renseigner le chemin de fichiers de log dans les zones de "
"texte si dessous en les séparant par des virgules :"
-#: inc/configure.php:318 inc/configure.php:477
+#: _build/inc/configure.php:345 _build/inc/configure.php:530
+#: _site/inc/configure.php:336 _site/inc/configure.php:521
+#: _tmp/inc/configure.php:346 _tmp/inc/configure.php:531 inc/configure.php:336
+#: inc/configure.php:521
msgid "Type"
msgstr "Type"
-#: inc/configure.php:318
+#: _build/inc/configure.php:345 _site/inc/configure.php:336
+#: _tmp/inc/configure.php:346 inc/configure.php:336
msgid "Custom paths"
msgstr "Chemins personnalisés"
-#: inc/configure.php:340 inc/configure.php:387 inc/configure.php:391
+#: _build/inc/configure.php:367 _build/inc/configure.php:414
+#: _build/inc/configure.php:418 _site/inc/configure.php:358
+#: _site/inc/configure.php:405 _site/inc/configure.php:409
+#: _tmp/inc/configure.php:368 _tmp/inc/configure.php:415
+#: _tmp/inc/configure.php:419 inc/configure.php:358 inc/configure.php:405
+#: inc/configure.php:409
msgid "Unknown error"
msgstr "Erreur inconnue"
-#: inc/configure.php:359
+#: _build/inc/configure.php:386 _site/inc/configure.php:377
+#: _tmp/inc/configure.php:387 inc/configure.php:377
msgid ""
"Custom files below are not readable, please remove them or verify that they "
"are readable by the webserver user"
@@ -328,7 +475,8 @@ msgstr ""
"Les fichiers ci-dessous ne sont pas lisibles. Retirez-les ou vérifiez qu'ils "
"sont bien lisibles par l'utilisateur sous lequel tourne le serveur web"
-#: inc/configure.php:423
+#: _build/inc/configure.php:450 _site/inc/configure.php:441
+#: _tmp/inc/configure.php:451 inc/configure.php:441
#, php-format
msgid ""
"File %s
does not define function %s
. Please review "
@@ -337,92 +485,154 @@ msgstr ""
"Le fichier %s
ne définit pas la fonction %s
. "
"Revoyez votre configuration de logiciels."
-#: inc/configure.php:436
+#: _build/inc/configure.php:463 _site/inc/configure.php:454
+#: _tmp/inc/configure.php:464 inc/configure.php:454
msgid "No configuration found for softwares!"
msgstr "Pas de configuration trouvée pour les logiciels !"
-#: inc/configure.php:448
+#: _build/inc/configure.php:475 _site/inc/configure.php:466
+#: _tmp/inc/configure.php:476 inc/configure.php:466
msgid "Unknown action, abort."
msgstr "Action inconnue, stop."
-#: inc/configure.php:470
+#: _build/inc/configure.php:482 _build/inc/configure.php:486
+#: _build/inc/configure.php:505 _build/inc/configure.php:538
+#: _site/inc/configure.php:473 _site/inc/configure.php:477
+#: _site/inc/configure.php:496 _site/inc/configure.php:529
+#: _tmp/inc/configure.php:483 _tmp/inc/configure.php:487
+#: _tmp/inc/configure.php:506 _tmp/inc/configure.php:539 inc/configure.php:473
+#: inc/configure.php:477 inc/configure.php:496 inc/configure.php:529
+#, php-format
+msgid "You should take a look on this %spage%s."
+msgstr "Vous devriez jeter un coup d'oeil à %scette page%s."
+
+#: _build/inc/configure.php:505 _site/inc/configure.php:496
+#: _tmp/inc/configure.php:506 inc/configure.php:496
+msgid "Your PHP installation is not correctly configured to run Pimp My Log."
+msgstr ""
+"Votre installation PHP n'est pas correctement configurée pour exécuter Pimp "
+"My Log."
+
+#: _build/inc/configure.php:523 _site/inc/configure.php:514
+#: _tmp/inc/configure.php:524 inc/configure.php:514
msgid "%s% Complete"
msgstr "%s% complété"
-#: inc/configure.php:471 index.php:122
+#: _build/inc/configure.php:524 _build/index.php:138
+#: _site/inc/configure.php:515 _site/index.php:129 _tmp/inc/configure.php:525
+#: _tmp/index.php:139 inc/configure.php:515 index.php:129
msgid "An error occurs!"
msgstr "Une erreur est survenue !"
-#: inc/configure.php:472
+#: _build/inc/configure.php:525 _site/inc/configure.php:516
+#: _tmp/inc/configure.php:526 inc/configure.php:516
msgid "Please wait..."
msgstr "Patientez quelques instants..."
-#: inc/configure.php:473
+#: _build/inc/configure.php:526 _site/inc/configure.php:517
+#: _tmp/inc/configure.php:527 inc/configure.php:517
msgid "Software"
msgstr "Logiciel"
-#: inc/configure.php:474 inc/test.php:510
+#: _build/inc/configure.php:527 _build/inc/test.php:313
+#: _site/inc/configure.php:518 _site/inc/test.php:510
+#: _tmp/inc/configure.php:528 _tmp/inc/test.php:520 inc/configure.php:518
+#: inc/test.php:510
msgid "Path"
msgstr "Chemin"
-#: inc/configure.php:475
+#: _build/inc/configure.php:528 _site/inc/configure.php:519
+#: _tmp/inc/configure.php:529 inc/configure.php:519
msgid "File"
msgstr "Fichier"
-#: inc/configure.php:476
+#: _build/inc/configure.php:529 _site/inc/configure.php:520
+#: _tmp/inc/configure.php:530 inc/configure.php:520
msgid "Readable"
msgstr "Lisable"
-#: inc/configure.php:479 inc/test.php:514 inc/test.php:515 inc/test.php:545
-#: inc/test.php:554 inc/users.pml.php:422 index.php:769
+#: _build/inc/configure.php:532 _build/inc/test.php:317
+#: _build/inc/test.php:318 _build/inc/test.php:333 _build/inc/test.php:342
+#: _build/inc/users.pml.php:455 _build/index.php:323
+#: _site/inc/configure.php:523 _site/inc/test.php:514 _site/inc/test.php:515
+#: _site/inc/test.php:545 _site/inc/test.php:554 _site/inc/users.pml.php:446
+#: _site/index.php:794 _tmp/inc/configure.php:533 _tmp/inc/test.php:524
+#: _tmp/inc/test.php:525 _tmp/inc/test.php:555 _tmp/inc/test.php:564
+#: _tmp/inc/users.pml.php:456 _tmp/index.php:804 inc/configure.php:523
+#: inc/test.php:514 inc/test.php:515 inc/test.php:545 inc/test.php:554
+#: inc/users.pml.php:446 index.php:794
msgid "Yes"
msgstr "Oui"
-#: inc/configure.php:480
+#: _build/inc/configure.php:533 _site/inc/configure.php:524
+#: _tmp/inc/configure.php:534 inc/configure.php:524
msgid "Name"
msgstr "Nom"
-#: inc/configure.php:481
+#: _build/inc/configure.php:534 _site/inc/configure.php:525
+#: _tmp/inc/configure.php:535 inc/configure.php:525
msgid "Description"
msgstr "Description"
-#: inc/configure.php:482
+#: _build/inc/configure.php:535 _site/inc/configure.php:526
+#: _tmp/inc/configure.php:536 inc/configure.php:526
msgid "Notes"
msgstr "Remarques"
-#: inc/configure.php:483
+#: _build/inc/configure.php:536 _site/inc/configure.php:527
+#: _tmp/inc/configure.php:537 inc/configure.php:527
msgid "You have to select at least one software to configure!"
msgstr "Vous devez au moins choisir un logiciel à configurer !"
-#: inc/configure.php:484
+#: _build/inc/configure.php:537 _site/inc/configure.php:528
+#: _tmp/inc/configure.php:538 inc/configure.php:528
msgid ""
"You have to select at least one log file or type the path of a log file!"
msgstr ""
"Vous devez sélectionner au moins un fichier de log ou sinon renseignez le "
"chemin d'un fichier de log !"
-#: inc/configure.php:521
+#: _build/inc/configure.php:550 _site/inc/configure.php:566
+#: _tmp/inc/configure.php:576 inc/configure.php:566
msgid "Configurator"
msgstr "Configurateur"
-#: inc/configure.php:542 inc/test.php:175
+#: _build/inc/configure.php:553 _build/index.php:50
+#: _site/inc/configure.php:584 _site/index.php:41 _tmp/inc/configure.php:594
+#: _tmp/index.php:51 inc/configure.php:584 index.php:41
+#, php-format
+msgid ""
+"Suhosin extension is loaded, according to its configuration, Pimp My Log "
+"could not run normally... More information %shere%s."
+msgstr ""
+"L'extension Suhosin est chargée et en fonction de son paramétrage, Pimp My "
+"Log peut ne pas fonctionner normalement. Plus d'info %sici%s."
+
+#: _build/inc/configure.php:556 _build/inc/test.php:150
+#: _site/inc/configure.php:594 _site/inc/test.php:175
+#: _tmp/inc/configure.php:604 _tmp/inc/test.php:185 inc/configure.php:594
+#: inc/test.php:175
msgid "Reload"
msgstr "Recharger"
-#: inc/configure.php:548
+#: _build/inc/configure.php:556 _site/inc/configure.php:600
+#: _tmp/inc/configure.php:610 inc/configure.php:600
msgid "Congratulations!"
msgstr "Félicitations !"
-#: inc/configure.php:552
+#: _build/inc/configure.php:558 _site/inc/configure.php:604
+#: _tmp/inc/configure.php:614 inc/configure.php:604
msgid "Your Pimp my Log instance is ready to use."
msgstr "Pimp my Log est maintenant prêt à être utilisé."
-#: inc/configure.php:555
+#: _build/inc/configure.php:561 _site/inc/configure.php:607
+#: _tmp/inc/configure.php:617 inc/configure.php:607
#, php-format
msgid "You can manually adjust settings in the %s
file."
msgstr "Vous pouvez ajuster les paramètres dans le fichier %s
."
-#: inc/configure.php:557
+#: _build/inc/configure.php:563 _site/inc/configure.php:609
+#: _tmp/inc/configure.php:619 inc/configure.php:609
msgid ""
"Please visit pimpmylog.com for more "
"informations."
@@ -430,16 +640,24 @@ msgstr ""
"Visitez pimpmylog.com pour plus "
"d'informations."
-#: inc/configure.php:560
+#: _build/inc/configure.php:566 _site/inc/configure.php:612
+#: _tmp/inc/configure.php:622 inc/configure.php:612
msgid "Pimp my Logs now!"
msgstr "Pimp my Log maintenant !"
+#: _build/inc/getlog.pml.php:112 _build/inc/rss.pml.php:74
+#: _build/inc/upgrade.pml.php:26 _build/inc/users.pml.php:83
+#: _site/inc/getlog.pml.php:103 _site/inc/rss.pml.php:65
+#: _site/inc/upgrade.pml.php:17 _site/inc/users.pml.php:74
+#: _tmp/inc/getlog.pml.php:113 _tmp/inc/rss.pml.php:75
+#: _tmp/inc/upgrade.pml.php:27 _tmp/inc/users.pml.php:84
#: inc/getlog.pml.php:103 inc/rss.pml.php:65 inc/upgrade.pml.php:17
#: inc/users.pml.php:74
msgid "Please refresh the page."
msgstr "Merci de rafraichir la page."
-#: inc/getlog.pml.php:109
+#: _build/inc/getlog.pml.php:118 _site/inc/getlog.pml.php:109
+#: _tmp/inc/getlog.pml.php:119 inc/getlog.pml.php:109
#, php-format
msgid ""
"File ID %s
does not exist, please review your configuration "
@@ -448,7 +666,8 @@ msgstr ""
"Le fichier d'ID %s
n'existe pas. Revoyez votre configuration et "
"arrêtez de jouer :-) !"
-#: inc/getlog.pml.php:116
+#: _build/inc/getlog.pml.php:125 _site/inc/getlog.pml.php:116
+#: _tmp/inc/getlog.pml.php:126 inc/getlog.pml.php:116
#, php-format
msgid ""
"File %s
for file ID %s
does not exist, please "
@@ -457,21 +676,24 @@ msgstr ""
"Le fichier %s
pour le fichier d'ID %s
n'existe "
"pas. Revoyez votre configuration."
-#: inc/getlog.pml.php:123
+#: _build/inc/getlog.pml.php:132 _site/inc/getlog.pml.php:123
+#: _tmp/inc/getlog.pml.php:133 inc/getlog.pml.php:123
msgid ""
"Configuration file has changed and is buggy now. Please refresh the page."
msgstr ""
"Le fichier de configuration a changé et comporte des erreurs maintenant. "
"Merci de rafraichir la page."
-#: inc/getlog.pml.php:183
+#: _build/inc/getlog.pml.php:192 _site/inc/getlog.pml.php:183
+#: _tmp/inc/getlog.pml.php:193 inc/getlog.pml.php:183
#, php-format
msgid "Log file has been rotated (previous size was %s and new one is %s)"
msgstr ""
"Le fichier de log a été remplacé (la taille précédente était %s et la "
"nouvelle est %s)"
-#: inc/getlog.pml.php:207
+#: _build/inc/getlog.pml.php:216 _site/inc/getlog.pml.php:207
+#: _tmp/inc/getlog.pml.php:217 inc/getlog.pml.php:207
#, php-format
msgid ""
"File %s
for file ID %s
does not exist anymore..."
@@ -479,16 +701,19 @@ msgstr ""
"Le fichier %s
pour le fichier d'ID %s
n'existe "
"plus..."
-#: inc/getlog.pml.php:211
+#: _build/inc/getlog.pml.php:220 _site/inc/getlog.pml.php:211
+#: _tmp/inc/getlog.pml.php:221 inc/getlog.pml.php:211
#, php-format
msgid "Unknown error %s"
msgstr "Erreur inconnue %s"
-#: inc/getlog.pml.php:229
+#: _build/inc/getlog.pml.php:238 _site/inc/getlog.pml.php:229
+#: _tmp/inc/getlog.pml.php:239 inc/getlog.pml.php:229
msgid "Log file has been rotated"
msgstr "Le fichier de log a été remplacé."
-#: inc/getlog.pml.php:263
+#: _build/inc/getlog.pml.php:272 _site/inc/getlog.pml.php:263
+#: _tmp/inc/getlog.pml.php:273 inc/getlog.pml.php:263
#, php-format
msgid ""
"%s in %sms
with %s
of logs, %s
"
@@ -501,63 +726,79 @@ msgstr ""
"%s
a été modifié le %s
(%s
), sa "
"taille est %s
%s"
-#: inc/getlog.pml.php:267
+#: _build/inc/getlog.pml.php:276 _site/inc/getlog.pml.php:267
+#: _tmp/inc/getlog.pml.php:277 inc/getlog.pml.php:267
#, php-format
msgid "%s new logs found"
msgstr "%s nouveaux logs trouvés"
-#: inc/getlog.pml.php:270
+#: _build/inc/getlog.pml.php:279 _site/inc/getlog.pml.php:270
+#: _tmp/inc/getlog.pml.php:280 inc/getlog.pml.php:270
msgid "no new log found"
msgstr "aucun nouveau log"
-#: inc/getlog.pml.php:271
+#: _build/inc/getlog.pml.php:280 _site/inc/getlog.pml.php:271
+#: _tmp/inc/getlog.pml.php:281 inc/getlog.pml.php:271
msgid "1 new log found"
msgstr "1 nouveau log trouvé"
-#: inc/getlog.pml.php:276
+#: _build/inc/getlog.pml.php:285 _site/inc/getlog.pml.php:276
+#: _tmp/inc/getlog.pml.php:286 inc/getlog.pml.php:276
#, php-format
msgid "%s old logs found"
msgstr "%s anciens logs trouvés"
-#: inc/getlog.pml.php:279
+#: _build/inc/getlog.pml.php:288 _site/inc/getlog.pml.php:279
+#: _tmp/inc/getlog.pml.php:289 inc/getlog.pml.php:279
msgid "no old log found"
msgstr "aucun ancien log"
-#: inc/getlog.pml.php:280
+#: _build/inc/getlog.pml.php:289 _site/inc/getlog.pml.php:280
+#: _tmp/inc/getlog.pml.php:290 inc/getlog.pml.php:280
msgid "1 olg log found"
msgstr "1 ancien log trouvé"
-#: inc/getlog.pml.php:292
+#: _build/inc/getlog.pml.php:301 _site/inc/getlog.pml.php:292
+#: _tmp/inc/getlog.pml.php:302 inc/getlog.pml.php:292
#, php-format
msgid "log type is %s
"
msgstr "le type de log est %s
"
-#: inc/global.inc.php:545 inc/global.inc.php:553
+#: _build/inc/global.inc.php:599 _build/inc/global.inc.php:607
+#: _site/inc/global.inc.php:590 _site/inc/global.inc.php:598
+#: _tmp/inc/global.inc.php:600 _tmp/inc/global.inc.php:608
+#: inc/global.inc.php:590 inc/global.inc.php:598
msgid "No file is defined in files
array"
msgstr "Aucun fichier n'est défini dans le tableau files
"
-#: inc/global.inc.php:562
+#: _build/inc/global.inc.php:616 _site/inc/global.inc.php:607
+#: _tmp/inc/global.inc.php:617 inc/global.inc.php:607
#, php-format
msgid "%s
is mandatory for file ID %s
"
msgstr "%s
est obligatoire pour le fichier d'ID %s
"
-#: inc/global.inc.php:727
+#: _build/inc/global.inc.php:781 _site/inc/global.inc.php:772
+#: _tmp/inc/global.inc.php:782 inc/global.inc.php:772
msgid "B KBMBGBTBPB"
msgstr "o KoMoGoToPo"
-#: inc/login.inc.php:42
+#: _build/inc/login.inc.php:21 _site/inc/login.inc.php:42
+#: _tmp/inc/login.inc.php:52 inc/login.inc.php:42
msgid "Your username or password is not correct"
msgstr "Le nom d'utilisateur ou le mot de passe n'est pas correct"
-#: inc/login.inc.php:47
+#: _build/inc/login.inc.php:26 _site/inc/login.inc.php:47
+#: _tmp/inc/login.inc.php:57 inc/login.inc.php:47
msgid "Please try again..."
msgstr "Merci de réessayer..."
-#: inc/login.inc.php:52
+#: _build/inc/login.inc.php:31 _site/inc/login.inc.php:52
+#: _tmp/inc/login.inc.php:62 inc/login.inc.php:52
msgid "You have been logged out"
msgstr "Vous avez bien été déconnecté"
-#: inc/login.inc.php:58
+#: _build/inc/login.inc.php:37 _site/inc/login.inc.php:58
+#: _tmp/inc/login.inc.php:68 inc/login.inc.php:58
#, php-format
msgid ""
"You can use %s as the username and %s as the password to test the demo "
@@ -566,280 +807,361 @@ msgstr ""
"Vous pouvez utiliser le nom d'utilisateur %s et le mot de passe %s pour "
"tester le compte de démo"
-#: inc/login.inc.php:66
+#: _build/inc/login.inc.php:41 _site/inc/login.inc.php:66
+#: _tmp/inc/login.inc.php:76 inc/login.inc.php:66
msgid "Please sign in"
msgstr "Connexion"
-#: inc/login.inc.php:103
+#: _build/inc/login.inc.php:54 _site/inc/login.inc.php:103
+#: _tmp/inc/login.inc.php:113 inc/login.inc.php:103
msgid "Forgotten your password?"
msgstr "Mot de passe oublié ?"
+#: _build/inc/rss.php:140 _site/inc/rss.php:131 _tmp/inc/rss.php:141
#: inc/rss.php:131
#, php-format
msgid "Pimp My Log : %s"
msgstr "Pimp my Log : %s"
+#: _build/inc/rss.php:142 _site/inc/rss.php:133 _tmp/inc/rss.php:143
#: inc/rss.php:133
#, php-format
msgid "Pimp logs for file %s"
msgstr "Pimp logs pour le fichier %s"
+#: _build/inc/rss.php:143 _site/inc/rss.php:134 _tmp/inc/rss.php:144
#: inc/rss.php:134
#, php-format
msgid "Pimp logs for file %s with search %s"
msgstr "Pimp logs pour le fichier %s avec la recherche %s"
+#: _build/inc/rss.php:152 _site/inc/rss.php:143 _tmp/inc/rss.php:153
#: inc/rss.php:143
msgid "Feed provided by Pimp My Log"
msgstr "Flux fourni par Pimp my Log"
-#: inc/rss.pml.php:24 inc/users.pml.php:33
+#: _build/inc/rss.pml.php:33 _build/inc/users.pml.php:42
+#: _site/inc/rss.pml.php:24 _site/inc/users.pml.php:33 _tmp/inc/rss.pml.php:34
+#: _tmp/inc/users.pml.php:43 inc/rss.pml.php:24 inc/users.pml.php:33
#, php-format
msgid "PHP Warning [%s] %s"
msgstr "PHP Attention [%s] %s"
-#: inc/rss.pml.php:28 inc/users.pml.php:37
+#: _build/inc/rss.pml.php:37 _build/inc/users.pml.php:46
+#: _site/inc/rss.pml.php:28 _site/inc/users.pml.php:37 _tmp/inc/rss.pml.php:38
+#: _tmp/inc/users.pml.php:47 inc/rss.pml.php:28 inc/users.pml.php:37
#, php-format
msgid "PHP Notice [%s] %s"
msgstr "PHP Remarque [%s] %s"
-#: inc/rss.pml.php:32 inc/users.pml.php:41
+#: _build/inc/rss.pml.php:41 _build/inc/users.pml.php:50
+#: _site/inc/rss.pml.php:32 _site/inc/users.pml.php:41 _tmp/inc/rss.pml.php:42
+#: _tmp/inc/users.pml.php:51 inc/rss.pml.php:32 inc/users.pml.php:41
#, php-format
msgid "PHP Unknown error [%s] %s"
msgstr "PHP Erreur inconnue [%s] %s"
-#: inc/rss.pml.php:47 inc/users.pml.php:56
+#: _build/inc/rss.pml.php:56 _build/inc/users.pml.php:65
+#: _site/inc/rss.pml.php:47 _site/inc/users.pml.php:56 _tmp/inc/rss.pml.php:57
+#: _tmp/inc/users.pml.php:66 inc/rss.pml.php:47 inc/users.pml.php:56
#, php-format
msgid "PHP Error line %s: %s"
msgstr "PHP Error ligne %s : %s"
+#: _build/inc/rss.pml.php:81 _site/inc/rss.pml.php:72 _tmp/inc/rss.pml.php:82
#: inc/rss.pml.php:72
msgid "This log file does not exist."
msgstr "Le fichier de log n'existe pas."
+#: _build/inc/test.php:102 _build/inc/test.php:109 _build/inc/test.php:116
+#: _site/inc/test.php:93 _site/inc/test.php:100 _site/inc/test.php:107
+#: _tmp/inc/test.php:103 _tmp/inc/test.php:110 _tmp/inc/test.php:117
#: inc/test.php:93 inc/test.php:100 inc/test.php:107
msgid "Error"
msgstr "Erreur"
+#: _build/inc/test.php:102 _site/inc/test.php:93 _tmp/inc/test.php:103
#: inc/test.php:93
msgid "Match is not a valid associative array"
msgstr "Match n'est pas un tableau associatif valide"
+#: _build/inc/test.php:109 _site/inc/test.php:100 _tmp/inc/test.php:110
#: inc/test.php:100
msgid "Types is not a valid associative array"
msgstr "Types n'est pas un tableau associatif valide"
+#: _build/inc/test.php:116 _site/inc/test.php:107 _tmp/inc/test.php:117
#: inc/test.php:107
msgid "RegEx is not a valid PHP PCRE regular expression"
msgstr "L'expression régulière n'est pas valide avec le standard PHP PCRE"
+#: _build/inc/test.php:133 _site/inc/test.php:124 _tmp/inc/test.php:134
#: inc/test.php:124
msgid "Configuration array has been copied to your clipboard!"
msgstr "La configuration a été copiée dans votre presse-papier !"
+#: _build/inc/test.php:137 _site/inc/test.php:154 _tmp/inc/test.php:164
#: inc/test.php:154
msgid "Debugger"
msgstr "Debugger"
+#: _build/inc/test.php:141 _site/inc/test.php:166 _tmp/inc/test.php:176
#: inc/test.php:166
msgid "This page is protected for security reasons."
msgstr "Cette page est protégée pour des raisons de sécurité."
+#: _build/inc/test.php:143 _site/inc/test.php:168 _tmp/inc/test.php:178
#: inc/test.php:168
msgid "To grant access, please create this temporary file on your server:"
msgstr ""
"Pour avoir accès à l'outil de debug, vous devez créer ce fichier temporaire "
"sur votre serveur :"
+#: _build/inc/test.php:149 _site/inc/test.php:174 _tmp/inc/test.php:184
#: inc/test.php:174
msgid "Then reload this page."
msgstr "Recharger ensuite la page."
+#: _build/inc/test.php:155 _site/inc/test.php:188 _tmp/inc/test.php:198
#: inc/test.php:188
msgid "Quit"
msgstr "Quitter"
+#: _build/inc/test.php:155 _site/inc/test.php:189 _tmp/inc/test.php:199
#: inc/test.php:189
msgid "Regex tester"
msgstr "Testeur d'expression régulière"
+#: _build/inc/test.php:155 _site/inc/test.php:190 _tmp/inc/test.php:200
#: inc/test.php:190
msgid "Regex samples"
msgstr "Exemple d'expression régulière"
+#: _build/inc/test.php:155 _site/inc/test.php:191 _tmp/inc/test.php:201
#: inc/test.php:191
msgid "Configuration"
msgstr "Configuration"
+#: _build/inc/test.php:155 _site/inc/test.php:192 _tmp/inc/test.php:202
#: inc/test.php:192
msgid "Password recovery"
msgstr "Récupération mot de passe"
+#: _build/inc/test.php:155 _site/inc/test.php:193 _tmp/inc/test.php:203
#: inc/test.php:193
msgid "Authentication"
msgstr "Authentification"
+#: _build/inc/test.php:155 _site/inc/test.php:213 _tmp/inc/test.php:223
#: inc/test.php:213
msgid ""
"Please remove this temporary file on your server to disable the debugger!"
msgstr "Supprimer ce fichier sur votre serveur pour désactiver le debuggeur !"
+#: _build/inc/test.php:155 _site/inc/test.php:232 _tmp/inc/test.php:242
#: inc/test.php:232
msgid "Log"
msgstr "Log"
+#: _build/inc/test.php:159 _site/inc/test.php:242 _tmp/inc/test.php:252
#: inc/test.php:242
msgid "RegEx"
msgstr "Expression régulière"
+#: _build/inc/test.php:161 _site/inc/test.php:250 _tmp/inc/test.php:260
#: inc/test.php:250
msgid "Match"
msgstr "Match"
+#: _build/inc/test.php:161 _build/inc/test.php:179 _site/inc/test.php:250
+#: _site/inc/test.php:274 _tmp/inc/test.php:260 _tmp/inc/test.php:284
#: inc/test.php:250 inc/test.php:274
msgid "must be json encoded"
msgstr "doit être encodé en JSON"
+#: _build/inc/test.php:179 _site/inc/test.php:274 _tmp/inc/test.php:284
#: inc/test.php:274
msgid "Types"
msgstr "Types"
+#: _build/inc/test.php:185 _site/inc/test.php:286 _tmp/inc/test.php:296
#: inc/test.php:286
msgid "Multiline"
msgstr "Lignes multiples"
+#: _build/inc/test.php:185 _site/inc/test.php:293 _tmp/inc/test.php:303
#: inc/test.php:293
msgid "Use CTRL-R shortcut instead of clicking on this button"
msgstr "Utilisez le raccourci CTRL-R au lieu de cliquer sur ce bouton"
-#: inc/test.php:293 index.php:521 index.php:541 index.php:590
+#: _build/inc/test.php:185 _build/index.php:303 _site/inc/test.php:293
+#: _site/index.php:528 _site/index.php:548 _site/index.php:597
+#: _tmp/inc/test.php:303 _tmp/index.php:538 _tmp/index.php:558
+#: _tmp/index.php:607 inc/test.php:293 index.php:528 index.php:548
+#: index.php:597
msgid "Loading..."
msgstr "Chargement..."
+#: _build/inc/test.php:185 _site/inc/test.php:293 _tmp/inc/test.php:303
#: inc/test.php:293
msgid "Test"
msgstr "Test"
+#: _build/inc/test.php:278 _site/inc/test.php:452 _tmp/inc/test.php:462
#: inc/test.php:452
msgid "Generated files with includes (no user logged in or no auth)"
msgstr ""
"Fichier de configuration généré avec les extensions (pas d'utilisateur "
"connecté ou pas d'authentification)"
+#: _build/inc/test.php:280 _site/inc/test.php:454 _tmp/inc/test.php:464
#: inc/test.php:454
#, php-format
msgid "Generated files with includes for user %s"
msgstr ""
"Fichier de configuration généré avec les extensions pour l'utilisateur %s"
+#: _build/inc/test.php:289 _site/inc/test.php:479 _tmp/inc/test.php:489
#: inc/test.php:479
msgid "Rights"
msgstr "Droits"
+#: _build/inc/test.php:293 _site/inc/test.php:489 _tmp/inc/test.php:499
#: inc/test.php:489
msgid "No POSIX functions..."
msgstr "Pas de fonction POSIX..."
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Read"
msgstr "Lire"
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Write"
msgstr "Ecrire"
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Real path"
msgstr "Chemin réel"
+#: _build/inc/test.php:328 _site/inc/test.php:540 _tmp/inc/test.php:550
#: inc/test.php:540
msgid "To be optimal, Pimp My Log needs all these modules ok:"
msgstr ""
"Pour fonctionner de manière optimale, Pimp My Log a besoin que ces modules "
"soient installés :"
+#: _build/inc/test.php:336 _build/inc/test.php:345 _site/inc/test.php:548
+#: _site/inc/test.php:557 _tmp/inc/test.php:558 _tmp/inc/test.php:567
#: inc/test.php:548 inc/test.php:557
#, php-format
msgid "Follow instructions %shere%s to enable"
msgstr "Suivez les instructions d'installation %sici%s"
+#: _build/inc/test.php:363 _site/inc/test.php:608 _tmp/inc/test.php:618
#: inc/test.php:608
#, php-format
msgid "User %s already exists!"
msgstr "L'utilisateur %s
existe déjà."
-#: inc/test.php:611 inc/test.php:697 inc/users.pml.php:114
-#: inc/users.pml.php:268
+#: _build/inc/test.php:366 _build/inc/test.php:383
+#: _build/inc/users.pml.php:123 _build/inc/users.pml.php:277
+#: _site/inc/test.php:611 _site/inc/test.php:697 _site/inc/users.pml.php:114
+#: _site/inc/users.pml.php:268 _tmp/inc/test.php:621 _tmp/inc/test.php:707
+#: _tmp/inc/users.pml.php:124 _tmp/inc/users.pml.php:278 inc/test.php:611
+#: inc/test.php:697 inc/users.pml.php:114 inc/users.pml.php:268
msgid "Password confirmation is not the same"
msgstr "La confirmation du mot de passe n'est pas correcte"
+#: _build/inc/test.php:374 _site/inc/test.php:619 _tmp/inc/test.php:629
#: inc/test.php:619
msgid "Authentication has been enabled and admin account has been created!"
msgstr ""
"L'authentification a bien été activée et le compte admin a bien été crée !"
+#: _build/inc/test.php:377 _site/inc/test.php:627 _tmp/inc/test.php:637
#: inc/test.php:627
msgid "Authentication is currently enabled"
msgstr "L'authentification est activée"
+#: _build/inc/test.php:377 _site/inc/test.php:631 _tmp/inc/test.php:641
#: inc/test.php:631
msgid "Please remove this file on your server to disable authentication"
msgstr ""
"Supprimer ce fichier sur votre serveur pour désactiver l'authentification"
+#: _build/inc/test.php:377 _site/inc/test.php:642 _tmp/inc/test.php:652
#: inc/test.php:642
msgid "Authentication is currently disabled"
msgstr "L'authentification est desactivée"
+#: _build/inc/test.php:377 _site/inc/test.php:675 _tmp/inc/test.php:685
#: inc/test.php:675
msgid "Enable authentication"
msgstr "Activer authentification"
+#: _build/inc/test.php:377 _site/inc/test.php:690 _tmp/inc/test.php:700
#: inc/test.php:690
msgid "Please fill an existing username and a new password"
msgstr "Renseignez un nom d'utilisateur existant et un nouveau mot de passe"
+#: _build/inc/test.php:380 _site/inc/test.php:694 _tmp/inc/test.php:704
#: inc/test.php:694
#, php-format
msgid "User %s does not exist!"
msgstr "L'utilisateur %s n'existe pas !"
+#: _build/inc/test.php:391 _site/inc/test.php:705 _tmp/inc/test.php:715
#: inc/test.php:705
#, php-format
msgid "Password has been updated for user %s!"
msgstr "Le mot de passe de l'utilisateur %s a bien été mis à jour !"
+#: _build/inc/test.php:394 _site/inc/test.php:740 _tmp/inc/test.php:750
#: inc/test.php:740
msgid "Reset"
msgstr "Réinitialiser"
+#: _build/inc/test.php:394 _site/inc/test.php:744 _tmp/inc/test.php:754
#: inc/test.php:744
msgid "This feature is only available when authentication is enabled."
msgstr ""
"Cette fonctionnalité n'est disponible que quand l'authentification est "
"activée."
+#: _build/inc/upgrade.pml.php:55 _build/inc/upgrade.pml.php:60
+#: _site/inc/upgrade.pml.php:46 _site/inc/upgrade.pml.php:51
+#: _tmp/inc/upgrade.pml.php:56 _tmp/inc/upgrade.pml.php:61
#: inc/upgrade.pml.php:46 inc/upgrade.pml.php:51
msgid "GIT is no more availble, please refresh the page"
msgstr "GIT n'est plus disponible, merci de rafraichir la page."
-#: inc/upgrade.pml.php:80
+#: _build/inc/upgrade.pml.php:89 _site/inc/upgrade.pml.php:80
+#: _tmp/inc/upgrade.pml.php:90 inc/upgrade.pml.php:80
#, php-format
msgid "Current version %s"
msgstr "Version actuelle %s"
-#: inc/upgrade.pml.php:85
+#: _build/inc/upgrade.pml.php:94 _site/inc/upgrade.pml.php:85
+#: _tmp/inc/upgrade.pml.php:95 inc/upgrade.pml.php:85
msgid "Unable to check your current version!"
msgstr "Impossible de vérifier votre version actuelle !"
-#: inc/upgrade.pml.php:165
+#: _build/inc/upgrade.pml.php:174 _site/inc/upgrade.pml.php:165
+#: _tmp/inc/upgrade.pml.php:175 inc/upgrade.pml.php:165
msgid "Messages from the development team"
msgstr "Messages de l'équipe de développement"
-#: inc/upgrade.pml.php:179
+#: _build/inc/upgrade.pml.php:188 _site/inc/upgrade.pml.php:179
+#: _tmp/inc/upgrade.pml.php:189 inc/upgrade.pml.php:179
msgid "Mark as read"
msgstr "Marquer comme lu"
+#: _build/inc/upgrade.pml.php:213 _build/inc/upgrade.pml.php:219
+#: _site/inc/upgrade.pml.php:204 _site/inc/upgrade.pml.php:210
+#: _tmp/inc/upgrade.pml.php:214 _tmp/inc/upgrade.pml.php:220
#: inc/upgrade.pml.php:204 inc/upgrade.pml.php:210
#, php-format
msgid ""
@@ -849,44 +1171,62 @@ msgstr ""
"Erreur en essayant de récupérer le contenu de l'adresse %s depuis le serveur "
"qui héberge cette instance de Pimp my Log."
+#: _build/inc/upgrade.pml.php:213 _build/inc/upgrade.pml.php:219
+#: _site/inc/upgrade.pml.php:204 _site/inc/upgrade.pml.php:210
+#: _tmp/inc/upgrade.pml.php:214 _tmp/inc/upgrade.pml.php:220
#: inc/upgrade.pml.php:204 inc/upgrade.pml.php:210
msgid "Remote version broken!"
msgstr "Version distance cassée !"
-#: inc/upgrade.pml.php:231
+#: _build/inc/upgrade.pml.php:240 _site/inc/upgrade.pml.php:231
+#: _tmp/inc/upgrade.pml.php:241 inc/upgrade.pml.php:231
#, php-format
msgid "Version %s released on %s"
msgstr "Version %s sortie le %s"
-#: inc/upgrade.pml.php:232
+#: _build/inc/upgrade.pml.php:241 _site/inc/upgrade.pml.php:232
+#: _tmp/inc/upgrade.pml.php:242 inc/upgrade.pml.php:232
#, php-format
msgid "Version %s"
msgstr "Version %s"
-#: inc/upgrade.pml.php:268
+#: _build/inc/upgrade.pml.php:277 _site/inc/upgrade.pml.php:268
+#: _tmp/inc/upgrade.pml.php:278 inc/upgrade.pml.php:268
msgid "An upgrade is available !"
msgstr "Une mise à jour est disponible !"
-#: inc/upgrade.pml.php:269
+#: _build/inc/upgrade.pml.php:278 _site/inc/upgrade.pml.php:269
+#: _tmp/inc/upgrade.pml.php:279 inc/upgrade.pml.php:269
#, php-format
msgid "You have version %s and version %s is available"
msgstr "Vous avez la version %s et la version %s est disponible"
-#: inc/upgrade.pml.php:270
+#: _build/inc/upgrade.pml.php:279 _site/inc/upgrade.pml.php:270
+#: _tmp/inc/upgrade.pml.php:280 inc/upgrade.pml.php:270
msgid "release notes"
msgstr "Remarques de mise à jour"
-#: inc/upgrade.pml.php:276
+#: _build/inc/upgrade.pml.php:285 _site/inc/upgrade.pml.php:276
+#: _tmp/inc/upgrade.pml.php:286 inc/upgrade.pml.php:276
msgid "Simply composer update
in the installation directory"
msgstr ""
"Faites un composer update
dans le répertoire d'installation."
-#: inc/upgrade.pml.php:286 inc/upgrade.pml.php:303 inc/upgrade.pml.php:323
-#: inc/upgrade.pml.php:383 inc/upgrade.pml.php:396
+#: _build/inc/upgrade.pml.php:295 _build/inc/upgrade.pml.php:312
+#: _build/inc/upgrade.pml.php:332 _build/inc/upgrade.pml.php:392
+#: _build/inc/upgrade.pml.php:405 _site/inc/upgrade.pml.php:286
+#: _site/inc/upgrade.pml.php:303 _site/inc/upgrade.pml.php:323
+#: _site/inc/upgrade.pml.php:383 _site/inc/upgrade.pml.php:396
+#: _tmp/inc/upgrade.pml.php:296 _tmp/inc/upgrade.pml.php:313
+#: _tmp/inc/upgrade.pml.php:333 _tmp/inc/upgrade.pml.php:393
+#: _tmp/inc/upgrade.pml.php:406 inc/upgrade.pml.php:286
+#: inc/upgrade.pml.php:303 inc/upgrade.pml.php:323 inc/upgrade.pml.php:383
+#: inc/upgrade.pml.php:396
msgid "Skip this upgrade"
msgstr "Passer cette mise à jour"
-#: inc/upgrade.pml.php:294
+#: _build/inc/upgrade.pml.php:303 _site/inc/upgrade.pml.php:294
+#: _tmp/inc/upgrade.pml.php:304 inc/upgrade.pml.php:294
#, php-format
msgid ""
"Simply git pull
in your directory or follow instructions %shere"
@@ -895,15 +1235,18 @@ msgstr ""
"Faites simplement un git pull
dans le répertoire d'installation "
"ou suivez les instructions %sici%s"
-#: inc/upgrade.pml.php:320
+#: _build/inc/upgrade.pml.php:329 _site/inc/upgrade.pml.php:320
+#: _tmp/inc/upgrade.pml.php:330 inc/upgrade.pml.php:320
msgid "Upgrading..."
msgstr "Mise à jour..."
-#: inc/upgrade.pml.php:320
+#: _build/inc/upgrade.pml.php:329 _site/inc/upgrade.pml.php:320
+#: _tmp/inc/upgrade.pml.php:330 inc/upgrade.pml.php:320
msgid "Upgrade now"
msgstr "Mettre à jour"
-#: inc/upgrade.pml.php:331
+#: _build/inc/upgrade.pml.php:340 _site/inc/upgrade.pml.php:331
+#: _tmp/inc/upgrade.pml.php:341 inc/upgrade.pml.php:331
#, php-format
msgid ""
"Your GIT installation cannot be upgraded automatically because of %sthese "
@@ -912,50 +1255,60 @@ msgstr ""
"Votre installation ne pas être automatiquement mise à jour avec GIT à cause "
"de %sces problèmes%s."
-#: inc/upgrade.pml.php:338
+#: _build/inc/upgrade.pml.php:347 _site/inc/upgrade.pml.php:338
+#: _tmp/inc/upgrade.pml.php:348 inc/upgrade.pml.php:338
msgid "These files are not writable by the web server user:"
msgstr ""
"Ces fichiers ne sont pas accessible en écriture par l'utilisateur sous "
"lequel tourne le serveur web :"
-#: inc/upgrade.pml.php:348
+#: _build/inc/upgrade.pml.php:357 _site/inc/upgrade.pml.php:348
+#: _tmp/inc/upgrade.pml.php:358 inc/upgrade.pml.php:348
msgid "The git
command is not in the webserver path"
msgstr ""
"La commande git
n'est pas disponible pour l'utilisateur sous "
"lequel tourne le serveur web"
-#: inc/upgrade.pml.php:353
+#: _build/inc/upgrade.pml.php:362 _site/inc/upgrade.pml.php:353
+#: _tmp/inc/upgrade.pml.php:363 inc/upgrade.pml.php:353
msgid "You have modified these files:"
msgstr "Les fichiers suivants ont été modifies :"
-#: inc/upgrade.pml.php:363
+#: _build/inc/upgrade.pml.php:372 _site/inc/upgrade.pml.php:363
+#: _tmp/inc/upgrade.pml.php:373 inc/upgrade.pml.php:363
msgid "Unknown error, here is the problem output:"
msgstr "Erreur inconnue, voici le retour :"
-#: inc/upgrade.pml.php:374
+#: _build/inc/upgrade.pml.php:383 _site/inc/upgrade.pml.php:374
+#: _tmp/inc/upgrade.pml.php:384 inc/upgrade.pml.php:374
msgid "Simply git pull
in your installation directory."
msgstr "Faites un git pull
dans le répertoire d'installation."
-#: inc/upgrade.pml.php:392
+#: _build/inc/upgrade.pml.php:401 _site/inc/upgrade.pml.php:392
+#: _tmp/inc/upgrade.pml.php:402 inc/upgrade.pml.php:392
#, php-format
msgid "Follow instructions %shere%s"
msgstr "Suivez les instructions %sici%s"
-#: inc/upgrade.pml.php:405
+#: _build/inc/upgrade.pml.php:414 _site/inc/upgrade.pml.php:405
+#: _tmp/inc/upgrade.pml.php:415 inc/upgrade.pml.php:405
msgid "You should upgrade right now:"
msgstr "Vous devriez mettre à jour dès maintenant :"
-#: inc/upgrade.pml.php:416
+#: _build/inc/upgrade.pml.php:425 _site/inc/upgrade.pml.php:416
+#: _tmp/inc/upgrade.pml.php:426 inc/upgrade.pml.php:416
#, php-format
msgid "Your version %s is out of date"
msgstr "Votre version %s n'est à jour"
-#: inc/upgrade.pml.php:421
+#: _build/inc/upgrade.pml.php:430 _site/inc/upgrade.pml.php:421
+#: _tmp/inc/upgrade.pml.php:431 inc/upgrade.pml.php:421
#, php-format
msgid "Your version %s is up to date"
msgstr "Votre version %s est à jour"
-#: inc/upgrade.pml.php:427
+#: _build/inc/upgrade.pml.php:436 _site/inc/upgrade.pml.php:427
+#: _tmp/inc/upgrade.pml.php:437 inc/upgrade.pml.php:427
#, php-format
msgid ""
"Unable to fetch URL %s from the server hosting this Pimp my Log instance."
@@ -963,37 +1316,47 @@ msgstr ""
"Impossible de récupérer le contenu de l'adresse %s depuis le serveur qui "
"héberge cette instance de Pimp my Log."
-#: inc/upgrade.pml.php:427
+#: _build/inc/upgrade.pml.php:436 _site/inc/upgrade.pml.php:427
+#: _tmp/inc/upgrade.pml.php:437 inc/upgrade.pml.php:427
msgid "Unable to check remote version!"
msgstr "Vérification de la version impossible !"
-#: inc/users.pml.php:104
+#: _build/inc/users.pml.php:113 _site/inc/users.pml.php:104
+#: _tmp/inc/users.pml.php:114 inc/users.pml.php:104
msgid "Current password is not valid"
msgstr "Le mot de passe actuel n'est pas correct"
-#: inc/users.pml.php:121
+#: _build/inc/users.pml.php:130 _site/inc/users.pml.php:121
+#: _tmp/inc/users.pml.php:131 inc/users.pml.php:121
msgid "Password has been fakely changed on the demo!"
msgstr "Le mot de passe a bien été changé pour de faux avec le compte demo !"
-#: inc/users.pml.php:123
+#: _build/inc/users.pml.php:132 _site/inc/users.pml.php:123
+#: _tmp/inc/users.pml.php:133 inc/users.pml.php:123
msgid "Password has been successfully changed!"
msgstr "Le mot de passe a bien été changé !"
-#: inc/users.pml.php:178 inc/users.pml.php:209
+#: _build/inc/users.pml.php:187 _build/inc/users.pml.php:218
+#: _site/inc/users.pml.php:178 _site/inc/users.pml.php:209
+#: _tmp/inc/users.pml.php:188 _tmp/inc/users.pml.php:219 inc/users.pml.php:178
+#: inc/users.pml.php:209
#, php-format
msgid "User %s does not exist"
msgstr "L'utilisateur %s n'existe pas"
-#: inc/users.pml.php:260
+#: _build/inc/users.pml.php:269 _site/inc/users.pml.php:260
+#: _tmp/inc/users.pml.php:270 inc/users.pml.php:260
#, php-format
msgid "User %s already exists"
msgstr "L'utilisateur %s
existe déjà"
-#: inc/users.pml.php:317
+#: _build/inc/users.pml.php:331 _site/inc/users.pml.php:322
+#: _tmp/inc/users.pml.php:332 inc/users.pml.php:322
msgid "Please do not shoot yourself in the foot!"
msgstr "Ne te tire pas une balle dans le pied quand même !"
-#: inc/users.pml.php:389
+#: _build/inc/users.pml.php:403 _site/inc/users.pml.php:394
+#: _tmp/inc/users.pml.php:404 inc/users.pml.php:394
msgid ""
"Anonymous access is enabled. Genuine users have to click on "
"the user menu to sign in and access more logs."
@@ -1001,7 +1364,8 @@ msgstr ""
"L'accès anonyme est activé. Les utilisateurs disposant d'un "
"compte doivent se connecter pour accéder à davantage de logs."
-#: inc/users.pml.php:391
+#: _build/inc/users.pml.php:405 _site/inc/users.pml.php:396
+#: _tmp/inc/users.pml.php:406 inc/users.pml.php:396
msgid ""
"Anonymous access is disabled. All users have to sign in "
"from the sign in screen."
@@ -1009,50 +1373,77 @@ msgstr ""
"L'accès anonyme est desactivé. Tous les utilisateurs "
"doivent se connecter."
-#: inc/users.pml.php:397
+#: _build/inc/users.pml.php:411 _site/inc/users.pml.php:402
+#: _tmp/inc/users.pml.php:412 inc/users.pml.php:402
msgid "Select which log files can be viewed without being logged."
msgstr ""
"Sélectionnez les fichiers de logs qui peuvent être visualisés sans être "
"connecté."
-#: inc/users.pml.php:398 index.php:758
+#: _build/inc/users.pml.php:412 _build/index.php:303
+#: _site/inc/users.pml.php:403 _site/index.php:765 _tmp/inc/users.pml.php:413
+#: _tmp/index.php:775 inc/users.pml.php:403 index.php:765
msgid "Toggle all log files"
msgstr "Inverser tous les fichiers"
-#: inc/users.pml.php:480 index.php:154
+#: _build/inc/users.pml.php:429 _build/index.php:315
+#: _site/inc/users.pml.php:420 _site/index.php:780 _tmp/inc/users.pml.php:430
+#: _tmp/index.php:790 inc/users.pml.php:420 index.php:780
+msgid "and an other file defined by glob pattern"
+msgstr "an 1 autre fichier possible défini par le glob pattern"
+
+#: _build/inc/users.pml.php:432 _build/index.php:318
+#: _site/inc/users.pml.php:423 _site/index.php:783 _tmp/inc/users.pml.php:433
+#: _tmp/index.php:793 inc/users.pml.php:423 index.php:783
+#, php-format
+msgid "and %s other possible files defined by glob pattern"
+msgstr "et %s autres fichiers possibles définis par le glob pattern"
+
+#: _build/inc/users.pml.php:513 _build/index.php:170
+#: _site/inc/users.pml.php:504 _site/index.php:161 _tmp/inc/users.pml.php:514
+#: _tmp/index.php:171 inc/users.pml.php:504 index.php:161
msgid "Access token"
msgstr "Jeton d'accès"
-#: inc/users.pml.php:491
+#: _build/inc/users.pml.php:524 _site/inc/users.pml.php:515
+#: _tmp/inc/users.pml.php:525 inc/users.pml.php:515
msgid "Access token copied!"
msgstr "Jeton d'accès copié !"
-#: inc/users.pml.php:494 index.php:158
+#: _build/inc/users.pml.php:527 _build/index.php:174
+#: _site/inc/users.pml.php:518 _site/index.php:165 _tmp/inc/users.pml.php:528
+#: _tmp/index.php:175 inc/users.pml.php:518 index.php:165
msgid "Presalt key"
msgstr "Clé de salage"
-#: inc/users.pml.php:505
+#: _build/inc/users.pml.php:538 _site/inc/users.pml.php:529
+#: _tmp/inc/users.pml.php:539 inc/users.pml.php:529
msgid "Presalt key copied!"
msgstr "Clé de salage copiée !"
-#: inc/users.pml.php:510
+#: _build/inc/users.pml.php:543 _site/inc/users.pml.php:534
+#: _tmp/inc/users.pml.php:544 inc/users.pml.php:534
msgid "Check to generate both new Access token and new Presalt key"
msgstr "Cochez pour régénérer des nouveaux jeton d'accès et clé de salage"
-#: inc/users.pml.php:517
+#: _build/inc/users.pml.php:550 _site/inc/users.pml.php:541
+#: _tmp/inc/users.pml.php:551 inc/users.pml.php:541
msgid "Your credentials have not been used"
msgstr "Vos identifiants n'ont pas encore été utilisés"
-#: inc/users.pml.php:522
+#: _build/inc/users.pml.php:555 _site/inc/users.pml.php:546
+#: _tmp/inc/users.pml.php:556 inc/users.pml.php:546
msgid "API has been called 1 time"
msgstr "L'API a été appelée 1 fois"
-#: inc/users.pml.php:524
+#: _build/inc/users.pml.php:557 _site/inc/users.pml.php:548
+#: _tmp/inc/users.pml.php:558 inc/users.pml.php:548
#, php-format
msgid "API has been called %s times"
msgstr "L'API a été appelée %s fois"
-#: inc/users.pml.php:528
+#: _build/inc/users.pml.php:561 _site/inc/users.pml.php:552
+#: _tmp/inc/users.pml.php:562 inc/users.pml.php:552
#, php-format
msgid ""
"Last API call has been done at %s by IP address %s with user agent %s on URL "
@@ -1061,29 +1452,31 @@ msgstr ""
"Le dernier appel à l'API a été fait le %s par l'adresse IP %s avec le user "
"agent %s à l'adresse %s"
-#: index.php:11 index.php:72 index.php:85
+#: _build/index.php:20 _build/index.php:88 _build/index.php:101
+#: _site/index.php:11 _site/index.php:79 _site/index.php:92 _tmp/index.php:21
+#: _tmp/index.php:89 _tmp/index.php:102 index.php:11 index.php:79 index.php:92
msgid "Oups!"
msgstr "Oups!"
-#: index.php:12
+#: _build/index.php:21 _site/index.php:12 _tmp/index.php:22 index.php:12
#, php-format
msgid "PHP version %s is required but your server run %s."
msgstr ""
"La version %s au minimum de PHP est requise mais votre serveur est en %s."
-#: index.php:14
+#: _build/index.php:23 _site/index.php:14 _tmp/index.php:24 index.php:14
msgid "Learn more"
msgstr "Plus d'info"
-#: index.php:28
+#: _build/index.php:37 _site/index.php:28 _tmp/index.php:38 index.php:28
msgid "Welcome!"
msgstr "Bienvenue !"
-#: index.php:30
+#: _build/index.php:40 _site/index.php:31 _tmp/index.php:41 index.php:31
msgid "Pimp my Log is not configured."
msgstr "Pimp my Log n'est pas configuré."
-#: index.php:33
+#: _build/index.php:43 _site/index.php:34 _tmp/index.php:44 index.php:34
#, php-format
msgid ""
"You can manually copy cfg/config.example.php
to %s in the root "
@@ -1093,33 +1486,38 @@ msgstr ""
"code> vers %s à la racine et changer les paramètres. Rafraichissez ensuite "
"la page."
-#: index.php:36
+#: _build/index.php:46 _site/index.php:37 _tmp/index.php:47 index.php:37
msgid "Or let me try to configure it for you!"
msgstr "Ou sinon, laissez-moi le configurer pour vous !"
-#: index.php:39 index.php:96
+#: _build/index.php:55 _build/index.php:112 _site/index.php:46
+#: _site/index.php:103 _tmp/index.php:56 _tmp/index.php:113 index.php:46
+#: index.php:103
msgid "Configure now"
msgstr "Configurer maintenant"
-#: index.php:74
+#: _build/index.php:90 _site/index.php:81 _tmp/index.php:91 index.php:81
msgid "Your access is disabled, you cannot view any log file."
msgstr "Votre accès est désactivé, vous n'avez accès à aucun fichier de log"
-#: index.php:76
+#: _build/index.php:92 _site/index.php:83 _tmp/index.php:93 index.php:83
msgid "Please contact your administrator."
msgstr "Merci de contacter votre administrateur"
-#: index.php:79 index.php:146 index.php:461
+#: _build/index.php:95 _build/index.php:162 _build/index.php:294
+#: _site/index.php:86 _site/index.php:153 _site/index.php:468
+#: _tmp/index.php:96 _tmp/index.php:163 _tmp/index.php:478 index.php:86
+#: index.php:153 index.php:468
msgid "Sign out"
msgstr "Déconnexion"
-#: index.php:87
+#: _build/index.php:103 _site/index.php:94 _tmp/index.php:104 index.php:94
msgid "config.user.json
configuration file is buggy:"
msgstr ""
"Le fichier de configuration config.user.json
comporte des "
"erreurs :"
-#: index.php:93
+#: _build/index.php:109 _site/index.php:100 _tmp/index.php:110 index.php:100
msgid ""
"If you want me to build the configuration for you, please remove file "
"config.user.json
at root and click below."
@@ -1128,27 +1526,27 @@ msgstr ""
"config.user.json
à la racine et cliquez en dessous s'il vous "
"plait."
-#: index.php:109
+#: _build/index.php:125 _site/index.php:116 _tmp/index.php:126 index.php:116
msgid "Action"
msgstr "Action"
-#: index.php:110
+#: _build/index.php:126 _site/index.php:117 _tmp/index.php:127 index.php:117
msgid "Add admin"
msgstr "Ajouter un admin"
-#: index.php:111
+#: _build/index.php:127 _site/index.php:118 _tmp/index.php:128 index.php:118
msgid "Add user"
msgstr "Ajouter un utilisateur"
-#: index.php:112
+#: _build/index.php:128 _site/index.php:119 _tmp/index.php:129 index.php:119
msgid "All accesses granted"
msgstr "Accès total"
-#: index.php:113
+#: _build/index.php:129 _site/index.php:120 _tmp/index.php:130 index.php:120
msgid "Anonymous access has been successfully saved!"
msgstr "L'accès anonyme a bien été enregistré !"
-#: index.php:114
+#: _build/index.php:130 _site/index.php:121 _tmp/index.php:131 index.php:121
msgid ""
"There is no log to display and your are connected... It seems that global "
"parameter AUTH_LOG_FILE_COUNT
is set to 0. Change this "
@@ -1158,74 +1556,84 @@ msgstr ""
"que le paramètre global AUTH_LOG_FILE_COUNT
est réglé à 0. "
"Réglez ce paramètre à une valeur plus grande pour afficher les lois."
-#: index.php:115
+#: _build/index.php:131 _site/index.php:122 _tmp/index.php:132 index.php:122
msgid "Password changed"
msgstr "Mot de passe changé"
-#: index.php:116 index.php:155
+#: _build/index.php:132 _build/index.php:171 _site/index.php:123
+#: _site/index.php:162 _tmp/index.php:133 _tmp/index.php:172 index.php:123
+#: index.php:162
msgid "Created by"
msgstr "Crée par"
-#: index.php:117 index.php:156
+#: _build/index.php:133 _build/index.php:172 _site/index.php:124
+#: _site/index.php:163 _tmp/index.php:134 _tmp/index.php:173 index.php:124
+#: index.php:163
msgid "Created at"
msgstr "Crée le"
-#: index.php:118
+#: _build/index.php:134 _site/index.php:125 _tmp/index.php:135 index.php:125
msgid "Date"
msgstr "Date"
-#: index.php:119
+#: _build/index.php:135 _site/index.php:126 _tmp/index.php:136 index.php:126
msgid "Delete user"
msgstr "Supprimer"
-#: index.php:120
+#: _build/index.php:136 _site/index.php:127 _tmp/index.php:137 index.php:127
msgid "1 log displayed,"
msgstr "1 log affiché"
-#: index.php:121
+#: _build/index.php:137 _site/index.php:128 _tmp/index.php:138 index.php:128
#, php-format
msgid "%s logs displayed,"
msgstr "%s logs affichés,"
-#: index.php:123 index.php:613
+#: _build/index.php:139 _build/index.php:303 _site/index.php:130
+#: _site/index.php:620 _tmp/index.php:140 _tmp/index.php:630 index.php:130
+#: index.php:620
msgid "Form is invalid:"
msgstr "Le formulaire n'est pas valide :"
-#: index.php:124
+#: _build/index.php:140 _site/index.php:131 _tmp/index.php:141 index.php:131
msgid "IP"
msgstr "IP"
-#: index.php:125 index.php:159
+#: _build/index.php:141 _build/index.php:175 _site/index.php:132
+#: _site/index.php:166 _tmp/index.php:142 _tmp/index.php:176 index.php:132
+#: index.php:166
msgid "Last login"
msgstr "Dernière connexion"
-#: index.php:126
+#: _build/index.php:142 _site/index.php:133 _tmp/index.php:143 index.php:133
#, php-format
msgid "Still %s to load"
msgstr "Encore %s à charger"
-#: index.php:127 index.php:160
+#: _build/index.php:143 _build/index.php:176 _site/index.php:134
+#: _site/index.php:167 _tmp/index.php:144 _tmp/index.php:177 index.php:134
+#: index.php:167
msgid "Logins"
msgstr "Connexions"
-#: index.php:128
+#: _build/index.php:144 _site/index.php:135 _tmp/index.php:145 index.php:135
msgid "1 new log is available"
msgstr "1 nouveau log disponible"
-#: index.php:129
+#: _build/index.php:145 _site/index.php:136 _tmp/index.php:146 index.php:136
msgid "New logs are available"
msgstr "Nouveaux logs disponibles"
-#: index.php:130
+#: _build/index.php:146 _site/index.php:137 _tmp/index.php:147 index.php:137
#, php-format
msgid "%s new logs are available"
msgstr "%s nouveaux logs disponibles"
-#: index.php:131
+#: _build/index.php:147 _site/index.php:138 _tmp/index.php:148 index.php:138
msgid "No log has been found."
msgstr "Aucun log n'a été trouvé."
-#: index.php:132
+#: _build/index.php:148 _site/index.php:139 _tmp/index.php:149 index.php:139
msgid ""
"Notifications are denied for this site. Go to your browser preferences to "
"enable notifications for this site."
@@ -1233,258 +1641,284 @@ msgstr ""
"Les notifications de bureau sont interdites pour cet site. Activez les dans "
"les préférences de votre navigateur."
-#: index.php:133
+#: _build/index.php:149 _site/index.php:140 _tmp/index.php:150 index.php:140
msgid "Your profile has been successfully saved!"
msgstr "Votre profil a bien été enregistré !"
-#: index.php:134 index.php:135
+#: _build/index.php:150 _build/index.php:151 _site/index.php:141
+#: _site/index.php:142 _tmp/index.php:151 _tmp/index.php:152 index.php:141
+#: index.php:142
msgid "Confirm"
msgstr "Confirmer"
-#: index.php:136
+#: _build/index.php:152 _site/index.php:143 _tmp/index.php:153 index.php:143
msgid "Search was done with regular engine"
msgstr "Recherche régulière effectuée"
-#: index.php:137
+#: _build/index.php:153 _site/index.php:144 _tmp/index.php:154 index.php:144
msgid "Search was done with RegEx engine"
msgstr "Recherche effectuée avec Expression Regulière"
-#: index.php:138
+#: _build/index.php:154 _site/index.php:145 _tmp/index.php:155 index.php:145
msgid "Result copied!"
msgstr "Résultat copié !"
-#: index.php:139 index.php:162 index.php:741
+#: _build/index.php:155 _build/index.php:178 _build/index.php:303
+#: _site/index.php:146 _site/index.php:169 _site/index.php:748
+#: _tmp/index.php:156 _tmp/index.php:179 _tmp/index.php:758 index.php:146
+#: index.php:169 index.php:748
msgid "Roles"
msgstr "Rôles"
-#: index.php:140
+#: _build/index.php:156 _site/index.php:147 _tmp/index.php:157 index.php:147
#, php-format
msgid "No log has been found with Reg Ex search %s"
msgstr ""
"Aucun log n'a été trouvé avec la recherche de type Expression Regulière %s"
-#: index.php:141
+#: _build/index.php:157 _site/index.php:148 _tmp/index.php:158 index.php:148
#, php-format
msgid "No log has been found with regular search %s"
msgstr "Aucun log n'a été trouvé avec la recherche régulière %s"
-#: index.php:142 index.php:342
+#: _build/index.php:158 _build/index.php:274 _site/index.php:149
+#: _site/index.php:349 _tmp/index.php:159 _tmp/index.php:359 index.php:149
+#: index.php:349
msgid "Sign in"
msgstr "Connexion"
-#: index.php:143 index.php:145
+#: _build/index.php:159 _build/index.php:161 _site/index.php:150
+#: _site/index.php:152 _tmp/index.php:160 _tmp/index.php:162 index.php:150
+#: index.php:152
msgid "Sign in as"
msgstr "Connexion en tant que"
-#: index.php:144
+#: _build/index.php:160 _site/index.php:151 _tmp/index.php:161 index.php:151
msgid "Sign in error"
msgstr "Erreur de connexion"
-#: index.php:147
+#: _build/index.php:163 _site/index.php:154 _tmp/index.php:164 index.php:154
msgid "System"
msgstr "Système"
-#: index.php:148
+#: _build/index.php:164 _site/index.php:155 _tmp/index.php:165 index.php:155
#, php-format
msgid "Toggle column %s"
msgstr "Montrer/Cacher la colonne %s"
-#: index.php:149
+#: _build/index.php:165 _site/index.php:156 _tmp/index.php:166 index.php:156
msgid "URL copied!"
msgstr "Adresse copiée !"
-#: index.php:150 index.php:745
+#: _build/index.php:166 _build/index.php:303 _site/index.php:157
+#: _site/index.php:752 _tmp/index.php:167 _tmp/index.php:762 index.php:157
+#: index.php:752
msgid "User"
msgstr "Utilisateur"
-#: index.php:151
+#: _build/index.php:167 _site/index.php:158 _tmp/index.php:168 index.php:158
msgid "User has been successfully saved!"
msgstr "L'utilisateur a bien été enregistré !"
-#: index.php:152
+#: _build/index.php:168 _site/index.php:159 _tmp/index.php:169 index.php:159
msgid "Last API call"
msgstr "Dernier appel API"
-#: index.php:153
+#: _build/index.php:169 _site/index.php:160 _tmp/index.php:170 index.php:160
msgid "API calls"
msgstr "Appels API"
-#: index.php:157
+#: _build/index.php:173 _site/index.php:164 _tmp/index.php:174 index.php:164
msgid "User has been successfully deleted!"
msgstr "L'utilisateur a bien été supprimé !"
-#: index.php:161
+#: _build/index.php:177 _site/index.php:168 _tmp/index.php:178 index.php:168
msgid "Log access"
msgstr "Accès aux logs"
-#: index.php:163
+#: _build/index.php:179 _site/index.php:170 _tmp/index.php:180 index.php:170
msgid "User agent"
msgstr "User agent"
-#: index.php:164
+#: _build/index.php:180 _site/index.php:171 _tmp/index.php:181 index.php:171
msgid "User name"
msgstr "Nom d'utilisateur"
-#: index.php:165 index.php:680
+#: _build/index.php:181 _build/index.php:303 _site/index.php:172
+#: _site/index.php:687 _tmp/index.php:182 _tmp/index.php:697 index.php:172
+#: index.php:687
msgid "Users"
msgstr "Utilisateurs"
-#: index.php:166
+#: _build/index.php:182 _site/index.php:173 _tmp/index.php:183 index.php:173
msgid "You need to sign in"
msgstr "Vous devez vous connecter"
-#: index.php:233
+#: _build/index.php:225 _site/index.php:240 _tmp/index.php:250 index.php:240
msgid "Reload the page with default parameters"
msgstr "Recharger la page avec les paramètres par défaut"
-#: index.php:243
+#: _build/index.php:225 _site/index.php:250 _tmp/index.php:260 index.php:250
msgid "Click to refresh or press the R key"
msgstr "Cliquez pour rafraichir ou appuyez sur la touche R"
-#: index.php:256 index.php:307
+#: _build/index.php:225 _build/index.php:263 _site/index.php:263
+#: _site/index.php:314 _tmp/index.php:273 _tmp/index.php:324 index.php:263
+#: index.php:314
msgid "Select a log file to display"
msgstr "Sélectionnez un fichier de log à afficher"
-#: index.php:268 index.php:279
+#: _build/index.php:234 _build/index.php:245 _site/index.php:275
+#: _site/index.php:286 _tmp/index.php:285 _tmp/index.php:296 index.php:275
+#: index.php:286
#, php-format
msgid "Log file #%s defined in %s"
msgstr "Fichier de log #%s défini dans %s"
-#: index.php:268 index.php:279
+#: _build/index.php:234 _build/index.php:245 _site/index.php:275
+#: _site/index.php:286 _tmp/index.php:285 _tmp/index.php:296 index.php:275
+#: index.php:286
#, php-format
msgid "Log file #%s defined in main configuration file"
msgstr "Fichier de log #%s défini dans le fichier de configuration principal"
-#: index.php:347
+#: _build/index.php:274 _site/index.php:354 _tmp/index.php:364 index.php:354
msgid "Search in logs"
msgstr "Recherche"
-#: index.php:351
+#: _build/index.php:274 _site/index.php:358 _tmp/index.php:368 index.php:358
msgid "Select a duration to check for new logs automatically"
msgstr "Sélectionner une durée pour chercher de nouveaux logs automatiquement"
-#: index.php:352
+#: _build/index.php:274 _site/index.php:359 _tmp/index.php:369 index.php:359
msgid "No refresh"
msgstr "Pas de rechargement"
-#: index.php:355
+#: _build/index.php:276 _site/index.php:362 _tmp/index.php:372 index.php:362
#, php-format
msgid "Refresh %ss"
msgstr "Recharge %ss"
-#: index.php:362
+#: _build/index.php:278 _site/index.php:369 _tmp/index.php:379 index.php:369
msgid "Max count of logs to display"
msgstr "Nombre maximal de lignes à afficher"
-#: index.php:365
+#: _build/index.php:280 _site/index.php:372 _tmp/index.php:382 index.php:372
#, php-format
msgid "%s logs"
msgstr "%s logs"
-#: index.php:365
+#: _build/index.php:280 _site/index.php:372 _tmp/index.php:382 index.php:372
#, php-format
msgid "%s log"
msgstr "%s log"
-#: index.php:372
+#: _build/index.php:282 _site/index.php:379 _tmp/index.php:389 index.php:379
msgid "Desktop notifications on supported modern browsers"
msgstr "Notifications de bureau pour les navigateurs récents"
-#: index.php:374
+#: _build/index.php:282 _site/index.php:381 _tmp/index.php:391 index.php:381
msgid "Notifications"
msgstr "Notifications"
-#: index.php:385 index.php:389
+#: _build/index.php:282 _site/index.php:392 _site/index.php:396
+#: _tmp/index.php:402 _tmp/index.php:406 index.php:392 index.php:396
msgid "Displayed columns"
msgstr "Colonnes affichées"
-#: index.php:397
+#: _build/index.php:282 _site/index.php:404 _tmp/index.php:414 index.php:404
msgid "Settings"
msgstr "Paramètres"
-#: index.php:403
+#: _build/index.php:282 _site/index.php:410 _tmp/index.php:420 index.php:410
msgid "Wide view"
msgstr "Vue élargie"
-#: index.php:404
+#: _build/index.php:282 _site/index.php:411 _tmp/index.php:421 index.php:411
msgid "on"
msgstr "oui"
-#: index.php:405
+#: _build/index.php:282 _site/index.php:412 _tmp/index.php:422 index.php:412
msgid "off"
msgstr "non"
-#: index.php:410
+#: _build/index.php:282 _site/index.php:417 _tmp/index.php:427 index.php:417
msgid "Click on a date field to mark a row"
msgstr "Cliquer sur une date pour marquer une ligne"
-#: index.php:411
+#: _build/index.php:282 _site/index.php:418 _tmp/index.php:428 index.php:418
msgid "Clear markers"
msgstr "Effacer les marqueurs"
-#: index.php:416
+#: _build/index.php:282 _site/index.php:423 _tmp/index.php:433 index.php:423
msgid "Language"
msgstr "Langue"
-#: index.php:418
+#: _build/index.php:282 _site/index.php:425 _tmp/index.php:435 index.php:425
msgid "Change language..."
msgstr "Choisir une langue"
-#: index.php:427
+#: _build/index.php:288 _site/index.php:434 _tmp/index.php:444 index.php:434
msgid "Language cannot be changed"
msgstr "La langue ne peut pas être changée"
-#: index.php:433
+#: _build/index.php:288 _site/index.php:440 _tmp/index.php:450 index.php:440
msgid "Timezone"
msgstr "Fuseau horaire"
-#: index.php:434
+#: _build/index.php:288 _site/index.php:441 _tmp/index.php:451 index.php:441
msgid "Change timezone..."
msgstr "Changer fuseau horaire"
-#: index.php:451 index.php:616
+#: _build/index.php:294 _build/index.php:303 _site/index.php:458
+#: _site/index.php:623 _tmp/index.php:468 _tmp/index.php:633 index.php:458
+#: index.php:623
#, php-format
msgid "You are currently connected as %s"
msgstr "Vous êtes actuellement connecté en tant que %s"
-#: index.php:453
+#: _build/index.php:294 _site/index.php:460 _tmp/index.php:470 index.php:460
msgid "User settings"
msgstr "Paramètres utilisateur"
-#: index.php:457
+#: _build/index.php:294 _site/index.php:464 _tmp/index.php:474 index.php:464
msgid "Click here to manager users"
msgstr "Cliquez ici pour gérer les utilisateurs"
-#: index.php:457
+#: _build/index.php:294 _site/index.php:464 _tmp/index.php:474 index.php:464
msgid "Manage users"
msgstr "Gérer les utilisateurs"
-#: index.php:459
+#: _build/index.php:294 _site/index.php:466 _tmp/index.php:476 index.php:466
msgid "Click here to view your profile"
msgstr "Cliquez ici pour voir votre profil"
-#: index.php:459 index.php:656
+#: _build/index.php:294 _build/index.php:303 _site/index.php:466
+#: _site/index.php:663 _tmp/index.php:476 _tmp/index.php:673 index.php:466
+#: index.php:663
msgid "Profile"
msgstr "Profil"
-#: index.php:460
+#: _build/index.php:294 _site/index.php:467 _tmp/index.php:477 index.php:467
msgid "Click here to change your password"
msgstr "Cliquez ici pour changer votre mot de passe"
-#: index.php:460 index.php:609
+#: _build/index.php:294 _build/index.php:303 _site/index.php:467
+#: _site/index.php:616 _tmp/index.php:477 _tmp/index.php:626 index.php:467
+#: index.php:616
msgid "Change password"
msgstr "Mot de passe"
-#: index.php:461
+#: _build/index.php:294 _site/index.php:468 _tmp/index.php:478 index.php:468
msgid "Click here to sign out"
msgstr "Cliquez ici pour vous déconnecter"
-#: index.php:487
+#: _build/index.php:297 _site/index.php:494 _tmp/index.php:504 index.php:494
#, php-format
msgid "Welcome in version %s"
msgstr "Bienvenue en version %s"
-#: index.php:492
+#: _build/index.php:302 _site/index.php:499 _tmp/index.php:509 index.php:499
#, php-format
msgid ""
"The changelog and all informations about this version are available on the "
@@ -1493,56 +1927,66 @@ msgstr ""
"Toutes les informations à propos de cette version sont disponibles sur le "
"%sblog%s."
-#: index.php:521 index.php:541
+#: _build/index.php:303 _site/index.php:528 _site/index.php:548
+#: _tmp/index.php:538 _tmp/index.php:558 index.php:528 index.php:548
msgid "No more data"
msgstr "Pas plus de données"
-#: index.php:521 index.php:541
+#: _build/index.php:303 _site/index.php:528 _site/index.php:548
+#: _tmp/index.php:538 _tmp/index.php:558 index.php:528 index.php:548
msgid "Load more"
msgstr "Plus de logs"
-#: index.php:526 index.php:560
+#: _build/index.php:303 _site/index.php:533 _site/index.php:567
+#: _tmp/index.php:543 _tmp/index.php:577 index.php:533 index.php:567
msgid "Export"
msgstr "Exporter"
-#: index.php:528
+#: _build/index.php:303 _site/index.php:535 _tmp/index.php:545 index.php:535
msgid "ATOM"
msgstr "ATOM"
-#: index.php:529
+#: _build/index.php:303 _site/index.php:536 _tmp/index.php:546 index.php:536
msgid "CSV"
msgstr "CSV"
-#: index.php:530
+#: _build/index.php:303 _site/index.php:537 _tmp/index.php:547 index.php:537
msgid "JSON"
msgstr "JSON"
-#: index.php:531
+#: _build/index.php:303 _site/index.php:538 _tmp/index.php:548 index.php:538
msgid "JSONP (with callback)"
msgstr "JSONP (avec callback)"
-#: index.php:532
+#: _build/index.php:303 _site/index.php:539 _tmp/index.php:549 index.php:539
msgid "JSON Pretty Print"
msgstr "JSON Affichage humain"
-#: index.php:533
+#: _build/index.php:303 _site/index.php:540 _tmp/index.php:550 index.php:540
msgid "RSS"
msgstr "RSS"
-#: index.php:534
+#: _build/index.php:303 _site/index.php:541 _tmp/index.php:551 index.php:541
msgid "XML"
msgstr "XML"
-#: index.php:559 index.php:595 index.php:608 index.php:642 index.php:655
-#: index.php:663 index.php:678 index.php:694 index.php:800 index.php:809
+#: _build/index.php:303 _build/index.php:323 _site/index.php:566
+#: _site/index.php:602 _site/index.php:615 _site/index.php:649
+#: _site/index.php:662 _site/index.php:670 _site/index.php:685
+#: _site/index.php:701 _site/index.php:825 _site/index.php:834
+#: _tmp/index.php:576 _tmp/index.php:612 _tmp/index.php:625 _tmp/index.php:659
+#: _tmp/index.php:672 _tmp/index.php:680 _tmp/index.php:695 _tmp/index.php:711
+#: _tmp/index.php:835 _tmp/index.php:844 index.php:566 index.php:602
+#: index.php:615 index.php:649 index.php:662 index.php:670 index.php:685
+#: index.php:701 index.php:825 index.php:834
msgid "Close"
msgstr "Fermer"
-#: index.php:563
+#: _build/index.php:303 _site/index.php:570 _tmp/index.php:580 index.php:570
msgid "Webservice URL"
msgstr "Adresse web service"
-#: index.php:564
+#: _build/index.php:303 _site/index.php:571 _tmp/index.php:581 index.php:571
msgid ""
"Your URL seems to be local so it won't be reachable by external browsers and "
"services"
@@ -1550,31 +1994,31 @@ msgstr ""
"L'URL semble être une adresse locale. Elle risque de ne pas être joignable "
"par des services externes"
-#: index.php:568
+#: _build/index.php:303 _site/index.php:575 _tmp/index.php:585 index.php:575
msgid "Open"
msgstr "Ouvrir"
-#: index.php:572
+#: _build/index.php:303 _site/index.php:579 _tmp/index.php:589 index.php:579
msgid "Feel free to change these parameters in the URL:"
msgstr "Vous pouvez changer librement les paramètres suivants dans l'adresse :"
-#: index.php:574
+#: _build/index.php:303 _site/index.php:581 _tmp/index.php:591 index.php:581
msgid "language"
msgstr "langue"
-#: index.php:575
+#: _build/index.php:303 _site/index.php:582 _tmp/index.php:592 index.php:582
msgid "timezone to convert dates"
msgstr "fuseau horaire pour convertir les dates"
-#: index.php:576
+#: _build/index.php:303 _site/index.php:583 _tmp/index.php:593 index.php:583
msgid "available formats are CSV, JSON, JSONPR and XML"
msgstr "les formats disponibles sont CSV, JSON, JSONPR et XML"
-#: index.php:577
+#: _build/index.php:303 _site/index.php:584 _tmp/index.php:594 index.php:584
msgid "the maximum count of returned log lines"
msgstr "le nombre maximal de logs voulus"
-#: index.php:578
+#: _build/index.php:303 _site/index.php:585 _tmp/index.php:595 index.php:585
msgid ""
"the timeout in seconds to return log lines. Increase this value for big "
"counts or when using search"
@@ -1582,14 +2026,14 @@ msgstr ""
"le temps maximal pour retourner les logs. Augmentez cette valeur si vous "
"affichez beaucoup de lignes en retour ou si vous utilisez la recherche"
-#: index.php:579
+#: _build/index.php:303 _site/index.php:586 _tmp/index.php:596 index.php:586
msgid ""
"search this value in log lines. It can be a regular expression or a regex one"
msgstr ""
"expression à rechercher dans les loges. L'expression peut aussi être une "
"expression régulière"
-#: index.php:580
+#: _build/index.php:303 _site/index.php:587 _tmp/index.php:597 index.php:587
msgid ""
"this field is optional and is used to specify a callback function when "
"format is JSONP"
@@ -1597,63 +2041,71 @@ msgstr ""
"ce paramètre est optionnel et sert à préciser le nom de la fonction de "
"callback quand vous utilisez le format JSONP"
-#: index.php:586
+#: _build/index.php:303 _site/index.php:593 _tmp/index.php:603 index.php:593
msgid "Current result"
msgstr "Résultat actuel"
-#: index.php:590
+#: _build/index.php:303 _site/index.php:597 _tmp/index.php:607 index.php:597
msgid "Refresh"
msgstr "Rafraichir"
-#: index.php:622
+#: _build/index.php:303 _site/index.php:629 _tmp/index.php:639 index.php:629
msgid "Current password"
msgstr "Mot de passe actuel"
-#: index.php:629
+#: _build/index.php:303 _site/index.php:636 _tmp/index.php:646 index.php:636
msgid "New password"
msgstr "Nouveau mot de passe"
-#: index.php:636
+#: _build/index.php:303 _site/index.php:643 _tmp/index.php:653 index.php:643
msgid "New password confirmation"
msgstr "Confirmation du nouveau mot de passe"
-#: index.php:643 index.php:664 index.php:786 index.php:801
+#: _build/index.php:303 _build/index.php:323 _site/index.php:650
+#: _site/index.php:671 _site/index.php:811 _site/index.php:826
+#: _tmp/index.php:660 _tmp/index.php:681 _tmp/index.php:821 _tmp/index.php:836
+#: index.php:650 index.php:671 index.php:811 index.php:826
msgid "Saving..."
msgstr "Enregistrement..."
-#: index.php:643 index.php:664 index.php:786 index.php:801
+#: _build/index.php:303 _build/index.php:323 _site/index.php:650
+#: _site/index.php:671 _site/index.php:811 _site/index.php:826
+#: _tmp/index.php:660 _tmp/index.php:681 _tmp/index.php:821 _tmp/index.php:836
+#: index.php:650 index.php:671 index.php:811 index.php:826
msgid "Save"
msgstr "Enregistrer"
-#: index.php:681
+#: _build/index.php:303 _site/index.php:688 _tmp/index.php:698 index.php:688
msgid "Anonymous access"
msgstr "Accès anonyme"
-#: index.php:682
+#: _build/index.php:303 _site/index.php:689 _tmp/index.php:699 index.php:689
msgid "History"
msgstr "Historique"
-#: index.php:703 index.php:784
+#: _build/index.php:303 _build/index.php:323 _site/index.php:710
+#: _site/index.php:809 _tmp/index.php:720 _tmp/index.php:819 index.php:710
+#: index.php:809
msgid "« Back"
msgstr "« Retour"
-#: index.php:704
+#: _build/index.php:303 _site/index.php:711 _tmp/index.php:721 index.php:711
msgid "Edit"
msgstr "Modifier"
-#: index.php:737
+#: _build/index.php:303 _site/index.php:744 _tmp/index.php:754 index.php:744
msgid "Leave password fields blank if you don't want to change it"
msgstr "Laisser les champs de mot de passe vide pour ne pas les changer"
-#: index.php:748
+#: _build/index.php:303 _site/index.php:755 _tmp/index.php:765 index.php:755
msgid "Admin"
msgstr "Admin"
-#: index.php:757
+#: _build/index.php:303 _site/index.php:764 _tmp/index.php:774 index.php:764
msgid "Select which log files user can view"
msgstr "Sélectionnez les fichiers de logs que l'utilisateur peut voir"
-#: index.php:785
+#: _build/index.php:323 _site/index.php:810 _tmp/index.php:820 index.php:810
msgid "Cancel"
msgstr "Annuler"
diff --git a/lang/messages.mo b/lang/messages.mo
index 17d46cf1..9c19056d 100644
Binary files a/lang/messages.mo and b/lang/messages.mo differ
diff --git a/lang/messages.po b/lang/messages.po
index e56568bb..235fb98f 100644
--- a/lang/messages.po
+++ b/lang/messages.po
@@ -1,8 +1,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Pimp my Log\n"
-"POT-Creation-Date: 2014-11-22 15:03+0100\n"
-"PO-Revision-Date: 2014-11-22 15:03+0100\n"
+"POT-Creation-Date: 2014-11-27 17:40+0100\n"
+"PO-Revision-Date: 2014-11-27 17:40+0100\n"
"Last-Translator: Potsky \n"
"Language-Team: potsky \n"
"Language: en_GB\n"
@@ -17,430 +17,652 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Poedit-SearchPath-0: .\n"
+#: _build/cfg/apache.config.php:15 _site/cfg/apache.config.php:5
#: cfg/apache.config.php:5
msgid "Apache"
msgstr ""
+#: _build/cfg/apache.config.php:16 _site/cfg/apache.config.php:6
#: cfg/apache.config.php:6
msgid "Apache Hypertext Transfer Protocol Server"
msgstr ""
+#: _build/cfg/apache.config.php:17 _site/cfg/apache.config.php:7
#: cfg/apache.config.php:7
msgid "http://httpd.apache.org"
msgstr ""
+#: _build/cfg/apache.config.php:18 _site/cfg/apache.config.php:8
#: cfg/apache.config.php:8
msgid "All versions 2.x are supported."
msgstr ""
+#: _build/cfg/iis.config.php:14 _site/cfg/iis.config.php:4
#: cfg/iis.config.php:4
msgid "IIS"
msgstr ""
+#: _build/cfg/iis.config.php:15 _site/cfg/iis.config.php:5
#: cfg/iis.config.php:5
msgid "A flexible & easy-to-manage web server..."
msgstr ""
+#: _build/cfg/iis.config.php:16 _site/cfg/iis.config.php:6
#: cfg/iis.config.php:6
msgid "http://www.iis.net"
msgstr ""
+#: _build/cfg/iis.config.php:17 _site/cfg/iis.config.php:7
#: cfg/iis.config.php:7
msgid "NCSA, IIS and W3C log formats are supported"
msgstr ""
+#: _build/cfg/nginx.config.php:15 _site/cfg/nginx.config.php:5
#: cfg/nginx.config.php:5
msgid "NGINX"
msgstr ""
+#: _build/cfg/nginx.config.php:16 _site/cfg/nginx.config.php:6
#: cfg/nginx.config.php:6
msgid ""
"The high performance reverse proxy, load balancer, edge cache, origin server"
msgstr ""
+#: _build/cfg/nginx.config.php:17 _site/cfg/nginx.config.php:7
#: cfg/nginx.config.php:7
msgid "http://nginx.com"
msgstr ""
+#: _build/cfg/nginx.config.php:18 _site/cfg/nginx.config.php:8
#: cfg/nginx.config.php:8
msgid "Default log formats are supported"
msgstr ""
+#: _build/cfg/php.config.php:16 _build/cfg/php.config.php:17
+#: _build/cfg/php.config.php:25 _build/cfg/php.config.php:26
+#: _site/cfg/php.config.php:6 _site/cfg/php.config.php:7
+#: _site/cfg/php.config.php:15 _site/cfg/php.config.php:16
#: cfg/php.config.php:6 cfg/php.config.php:7 cfg/php.config.php:15
#: cfg/php.config.php:16
msgid "PHP"
msgstr ""
-#: cfg/php.config.php:8 cfg/php.config.php:17
+#: _build/cfg/php.config.php:18 _build/cfg/php.config.php:27
+#: _site/cfg/php.config.php:8 _site/cfg/php.config.php:17 cfg/php.config.php:8
+#: cfg/php.config.php:17
msgid "http://www.php.net/manual/errorfunc.configuration.php#ini.error-log"
msgstr ""
+#: _build/cfg/php.config.php:19 _site/cfg/php.config.php:9
#: cfg/php.config.php:9
msgid "PHP logs defined via the error_log
ini parameter."
msgstr ""
+#: _build/cfg/php.config.php:20 _site/cfg/php.config.php:10
#: cfg/php.config.php:10
#, php-format
msgid "Pimp My Log has detected %s
on your server."
msgstr ""
+#: _build/cfg/php.config.php:28 _site/cfg/php.config.php:18
#: cfg/php.config.php:18
msgid ""
"Pimp My Log has not detected any path in the ini parameter error_log"
"code>."
msgstr ""
+#: _build/cfg/php.config.php:29 _site/cfg/php.config.php:19
#: cfg/php.config.php:19
msgid ""
"Activate this software only if you use ini_set('error_log')
"
"directly in your scripts for example."
msgstr ""
-#: inc/configure.php:45 inc/configure.php:85 inc/test.php:604
+#: _build/inc/configure.php:66 _build/inc/configure.php:106
+#: _build/inc/test.php:377 _site/inc/configure.php:57
+#: _site/inc/configure.php:97 _site/inc/test.php:643 _tmp/inc/configure.php:67
+#: _tmp/inc/configure.php:107 _tmp/inc/test.php:653 inc/configure.php:57
+#: inc/configure.php:97 inc/test.php:643
msgid "Setup admin account"
msgstr ""
-#: inc/configure.php:47
+#: _build/inc/configure.php:68 _site/inc/configure.php:59
+#: _tmp/inc/configure.php:69 inc/configure.php:59
msgid ""
"You can use Pimp my Log without authentication. You will be able to "
"add this feature later from the debugger web interface."
msgstr ""
-#: inc/configure.php:49
+#: _build/inc/configure.php:70 _site/inc/configure.php:61
+#: _tmp/inc/configure.php:71 inc/configure.php:61
msgid ""
"Setup an admin account will let you create other users later and give them "
"access to certain log files only."
msgstr ""
-#: inc/configure.php:51
+#: _build/inc/configure.php:72 _site/inc/configure.php:63
+#: _tmp/inc/configure.php:73 inc/configure.php:63
msgid "Do you want to create an admin account now?"
msgstr ""
-#: inc/configure.php:54
+#: _build/inc/configure.php:75 _site/inc/configure.php:66
+#: _tmp/inc/configure.php:76 inc/configure.php:66
msgid "Create an admin account"
msgstr ""
-#: inc/configure.php:56 inc/configure.php:476 inc/test.php:514
-#: inc/test.php:515 inc/users.pml.php:425 index.php:775
+#: _build/inc/configure.php:77 _build/inc/configure.php:531
+#: _build/inc/test.php:317 _build/inc/test.php:318 _build/inc/test.php:335
+#: _build/inc/test.php:344 _build/inc/users.pml.php:458 _build/index.php:323
+#: _site/inc/configure.php:68 _site/inc/configure.php:522
+#: _site/inc/test.php:514 _site/inc/test.php:515 _site/inc/test.php:547
+#: _site/inc/test.php:556 _site/inc/users.pml.php:449 _site/index.php:797
+#: _tmp/inc/configure.php:78 _tmp/inc/configure.php:532 _tmp/inc/test.php:524
+#: _tmp/inc/test.php:525 _tmp/inc/test.php:557 _tmp/inc/test.php:566
+#: _tmp/inc/users.pml.php:459 _tmp/index.php:807 inc/configure.php:68
+#: inc/configure.php:522 inc/test.php:514 inc/test.php:515 inc/test.php:547
+#: inc/test.php:556 inc/users.pml.php:449 index.php:797
msgid "No"
msgstr ""
-#: inc/configure.php:72
+#: _build/inc/configure.php:93 _site/inc/configure.php:84
+#: _tmp/inc/configure.php:94 inc/configure.php:84
#, php-format
msgid "File %s
already exists!"
msgstr ""
-#: inc/configure.php:74
+#: _build/inc/configure.php:95 _site/inc/configure.php:86
+#: _tmp/inc/configure.php:96 inc/configure.php:86
msgid "Please remove it from the root directory:"
msgstr ""
-#: inc/configure.php:77 inc/configure.php:126 inc/configure.php:162
-#: inc/configure.php:183 inc/test.php:172 inc/test.php:217 inc/test.php:295
-#: inc/test.php:596 inc/upgrade.pml.php:283 inc/upgrade.pml.php:300
-#: inc/upgrade.pml.php:380 inc/users.pml.php:485 inc/users.pml.php:499
-#: index.php:570 index.php:592
+#: _build/inc/configure.php:98 _build/inc/configure.php:148
+#: _build/inc/configure.php:184 _build/inc/configure.php:206
+#: _build/inc/test.php:147 _build/inc/test.php:155 _build/inc/test.php:185
+#: _build/inc/test.php:377 _build/inc/upgrade.pml.php:292
+#: _build/inc/upgrade.pml.php:309 _build/inc/upgrade.pml.php:389
+#: _build/inc/users.pml.php:521 _build/inc/users.pml.php:535
+#: _build/index.php:303 _site/inc/configure.php:89 _site/inc/configure.php:139
+#: _site/inc/configure.php:175 _site/inc/configure.php:197
+#: _site/inc/test.php:172 _site/inc/test.php:217 _site/inc/test.php:295
+#: _site/inc/test.php:635 _site/inc/upgrade.pml.php:283
+#: _site/inc/upgrade.pml.php:300 _site/inc/upgrade.pml.php:380
+#: _site/inc/users.pml.php:512 _site/inc/users.pml.php:526 _site/index.php:574
+#: _site/index.php:596 _tmp/inc/configure.php:99 _tmp/inc/configure.php:149
+#: _tmp/inc/configure.php:185 _tmp/inc/configure.php:207 _tmp/inc/test.php:182
+#: _tmp/inc/test.php:227 _tmp/inc/test.php:305 _tmp/inc/test.php:645
+#: _tmp/inc/upgrade.pml.php:293 _tmp/inc/upgrade.pml.php:310
+#: _tmp/inc/upgrade.pml.php:390 _tmp/inc/users.pml.php:522
+#: _tmp/inc/users.pml.php:536 _tmp/index.php:584 _tmp/index.php:606
+#: inc/configure.php:89 inc/configure.php:139 inc/configure.php:175
+#: inc/configure.php:197 inc/test.php:172 inc/test.php:217 inc/test.php:295
+#: inc/test.php:635 inc/upgrade.pml.php:283 inc/upgrade.pml.php:300
+#: inc/upgrade.pml.php:380 inc/users.pml.php:512 inc/users.pml.php:526
+#: index.php:574 index.php:596
msgid "Copy to clipboard"
msgstr ""
-#: inc/configure.php:77 inc/configure.php:126 inc/configure.php:162
-#: inc/configure.php:183 inc/upgrade.pml.php:289 inc/upgrade.pml.php:306
-#: inc/upgrade.pml.php:386
+#: _build/inc/configure.php:98 _build/inc/configure.php:148
+#: _build/inc/configure.php:184 _build/inc/configure.php:206
+#: _build/inc/upgrade.pml.php:298 _build/inc/upgrade.pml.php:315
+#: _build/inc/upgrade.pml.php:395 _site/inc/configure.php:89
+#: _site/inc/configure.php:139 _site/inc/configure.php:175
+#: _site/inc/configure.php:197 _site/inc/upgrade.pml.php:289
+#: _site/inc/upgrade.pml.php:306 _site/inc/upgrade.pml.php:386
+#: _tmp/inc/configure.php:99 _tmp/inc/configure.php:149
+#: _tmp/inc/configure.php:185 _tmp/inc/configure.php:207
+#: _tmp/inc/upgrade.pml.php:299 _tmp/inc/upgrade.pml.php:316
+#: _tmp/inc/upgrade.pml.php:396 inc/configure.php:89 inc/configure.php:139
+#: inc/configure.php:175 inc/configure.php:197 inc/upgrade.pml.php:289
+#: inc/upgrade.pml.php:306 inc/upgrade.pml.php:386
msgid "Command copied!"
msgstr ""
-#: inc/configure.php:87
+#: _build/inc/configure.php:108 _site/inc/configure.php:99
+#: _tmp/inc/configure.php:109 inc/configure.php:99
msgid "Please choose a username and a password for the admin account."
msgstr ""
-#: inc/configure.php:92 inc/test.php:609 inc/test.php:674
+#: _build/inc/configure.php:113 _build/inc/test.php:377
+#: _build/inc/test.php:394 _build/inc/users.pml.php:266
+#: _site/inc/configure.php:104 _site/inc/test.php:648 _site/inc/test.php:713
+#: _site/inc/users.pml.php:257 _tmp/inc/configure.php:114
+#: _tmp/inc/test.php:658 _tmp/inc/test.php:723 _tmp/inc/users.pml.php:267
+#: inc/configure.php:104 inc/test.php:648 inc/test.php:713
#: inc/users.pml.php:257
msgid "Username is required"
msgstr ""
-#: inc/configure.php:94 inc/login.inc.php:76 inc/login.inc.php:78
-#: inc/test.php:612 inc/test.php:677 index.php:716 index.php:720
+#: _build/inc/configure.php:115 _build/inc/login.inc.php:44
+#: _build/inc/login.inc.php:46 _build/inc/test.php:377 _build/inc/test.php:394
+#: _build/index.php:303 _site/inc/configure.php:106 _site/inc/login.inc.php:76
+#: _site/inc/login.inc.php:78 _site/inc/test.php:651 _site/inc/test.php:716
+#: _site/index.php:720 _site/index.php:724 _tmp/inc/configure.php:116
+#: _tmp/inc/login.inc.php:86 _tmp/inc/login.inc.php:88 _tmp/inc/test.php:661
+#: _tmp/inc/test.php:726 _tmp/index.php:730 _tmp/index.php:734
+#: inc/configure.php:106 inc/login.inc.php:76 inc/login.inc.php:78
+#: inc/test.php:651 inc/test.php:716 index.php:720 index.php:724
msgid "Username"
msgstr ""
-#: inc/configure.php:99 inc/test.php:575 inc/test.php:618 inc/test.php:661
-#: inc/test.php:683 inc/users.pml.php:109 inc/users.pml.php:265
+#: _build/inc/configure.php:120 _build/inc/test.php:369
+#: _build/inc/test.php:377 _build/inc/test.php:386 _build/inc/test.php:394
+#: _build/inc/users.pml.php:118 _build/inc/users.pml.php:274
+#: _site/inc/configure.php:111 _site/inc/test.php:614 _site/inc/test.php:657
+#: _site/inc/test.php:700 _site/inc/test.php:722 _site/inc/users.pml.php:109
+#: _site/inc/users.pml.php:265 _tmp/inc/configure.php:121
+#: _tmp/inc/test.php:624 _tmp/inc/test.php:667 _tmp/inc/test.php:710
+#: _tmp/inc/test.php:732 _tmp/inc/users.pml.php:119 _tmp/inc/users.pml.php:275
+#: inc/configure.php:111 inc/test.php:614 inc/test.php:657 inc/test.php:700
+#: inc/test.php:722 inc/users.pml.php:109 inc/users.pml.php:265
msgid "Password must contain at least 6 chars"
msgstr ""
-#: inc/configure.php:101 inc/login.inc.php:89 inc/login.inc.php:91
-#: inc/test.php:621 inc/test.php:686 index.php:725 index.php:729
+#: _build/inc/configure.php:122 _build/inc/login.inc.php:50
+#: _build/inc/login.inc.php:52 _build/inc/test.php:377 _build/inc/test.php:394
+#: _build/index.php:303 _site/inc/configure.php:113 _site/inc/login.inc.php:89
+#: _site/inc/login.inc.php:91 _site/inc/test.php:660 _site/inc/test.php:725
+#: _site/index.php:729 _site/index.php:733 _tmp/inc/configure.php:123
+#: _tmp/inc/login.inc.php:99 _tmp/inc/login.inc.php:101 _tmp/inc/test.php:670
+#: _tmp/inc/test.php:735 _tmp/index.php:739 _tmp/index.php:743
+#: inc/configure.php:113 inc/login.inc.php:89 inc/login.inc.php:91
+#: inc/test.php:660 inc/test.php:725 index.php:729 index.php:733
msgid "Password"
msgstr ""
-#: inc/configure.php:106 inc/test.php:627 inc/test.php:692
+#: _build/inc/configure.php:127 _build/inc/test.php:377
+#: _build/inc/test.php:394 _site/inc/configure.php:118 _site/inc/test.php:666
+#: _site/inc/test.php:731 _tmp/inc/configure.php:128 _tmp/inc/test.php:676
+#: _tmp/inc/test.php:741 inc/configure.php:118 inc/test.php:666
+#: inc/test.php:731
msgid "Password is not the same"
msgstr ""
-#: inc/configure.php:108 inc/test.php:630 inc/test.php:695 index.php:734
-#: index.php:738
+#: _build/inc/configure.php:129 _build/inc/test.php:377
+#: _build/inc/test.php:394 _build/index.php:303 _site/inc/configure.php:120
+#: _site/inc/test.php:669 _site/inc/test.php:734 _site/index.php:738
+#: _site/index.php:742 _tmp/inc/configure.php:130 _tmp/inc/test.php:679
+#: _tmp/inc/test.php:744 _tmp/index.php:748 _tmp/index.php:752
+#: inc/configure.php:120 inc/test.php:669 inc/test.php:734 index.php:738
+#: index.php:742
msgid "Password Confirmation"
msgstr ""
-#: inc/configure.php:113 inc/configure.php:538
+#: _build/inc/configure.php:134 _build/inc/configure.php:556
+#: _site/inc/configure.php:125 _site/inc/configure.php:592
+#: _tmp/inc/configure.php:135 _tmp/inc/configure.php:602 inc/configure.php:125
+#: inc/configure.php:592
msgid "Continue"
msgstr ""
-#: inc/configure.php:121 inc/configure.php:178
+#: _build/inc/configure.php:143 _build/inc/configure.php:201
+#: _site/inc/configure.php:134 _site/inc/configure.php:192
+#: _tmp/inc/configure.php:144 _tmp/inc/configure.php:202 inc/configure.php:134
+#: inc/configure.php:192
#, php-format
msgid "Unable to create file %s
"
msgstr ""
-#: inc/configure.php:123 inc/configure.php:180
+#: _build/inc/configure.php:145 _build/inc/configure.php:203
+#: _site/inc/configure.php:136 _site/inc/configure.php:194
+#: _tmp/inc/configure.php:146 _tmp/inc/configure.php:204 inc/configure.php:136
+#: inc/configure.php:194
msgid "Please give temporary write access to the root directory:"
msgstr ""
-#: inc/configure.php:158
+#: _build/inc/configure.php:180 _site/inc/configure.php:171
+#: _tmp/inc/configure.php:181 inc/configure.php:171
msgid "Please remove it manually if you want me to create it:"
msgstr ""
-#: inc/configure.php:164
+#: _build/inc/configure.php:186 _site/inc/configure.php:177
+#: _tmp/inc/configure.php:187 inc/configure.php:177
#, php-format
msgid "File %s
already exists."
msgstr ""
-#: inc/configure.php:197
+#: _build/inc/configure.php:220 _site/inc/configure.php:211
+#: _tmp/inc/configure.php:221 inc/configure.php:211
msgid "Choose softwares to search log files for"
msgstr ""
-#: inc/configure.php:219
+#: _build/inc/configure.php:242 _site/inc/configure.php:233
+#: _tmp/inc/configure.php:243 inc/configure.php:233
#, php-format
msgid "Software %s"
msgstr ""
-#: inc/configure.php:229 inc/configure.php:413
+#: _build/inc/configure.php:252 _build/inc/configure.php:442
+#: _site/inc/configure.php:243 _site/inc/configure.php:433
+#: _tmp/inc/configure.php:253 _tmp/inc/configure.php:443 inc/configure.php:243
+#: inc/configure.php:433
#, php-format
msgid ""
"Files %s
or %s
do not exist. Please review your "
"software configuration."
msgstr ""
-#: inc/configure.php:282
+#: _build/inc/configure.php:311 _site/inc/configure.php:302
+#: _tmp/inc/configure.php:312 inc/configure.php:302
msgid "Unable to find any directory."
msgstr ""
-#: inc/configure.php:283
+#: _build/inc/configure.php:312 _site/inc/configure.php:303
+#: _tmp/inc/configure.php:313 inc/configure.php:303
msgid ""
"Check in the following list if these directories are readable by the "
"webserver user and refresh this page"
msgstr ""
-#: inc/configure.php:286
+#: _build/inc/configure.php:315 _site/inc/configure.php:306
+#: _tmp/inc/configure.php:316 inc/configure.php:306
msgid "Directories are available but unable to find files inside."
msgstr ""
-#: inc/configure.php:287
+#: _build/inc/configure.php:316 _site/inc/configure.php:307
+#: _tmp/inc/configure.php:317 inc/configure.php:307
msgid ""
"Check in the following list if these directories contain readable files by "
"the webserver user and refresh this page."
msgstr ""
-#: inc/configure.php:288
+#: _build/inc/configure.php:317 _site/inc/configure.php:308
+#: _tmp/inc/configure.php:318 inc/configure.php:308
msgid ""
"Don't forget that to read a file, ALL parent directories have to be "
"accessible too!"
msgstr ""
-#: inc/configure.php:298
+#: _build/inc/configure.php:327 _site/inc/configure.php:318
+#: _tmp/inc/configure.php:328 inc/configure.php:318
#, php-format
msgid "These files have been checked in all paths: %s "
msgstr ""
-#: inc/configure.php:301
+#: _build/inc/configure.php:330 _site/inc/configure.php:321
+#: _tmp/inc/configure.php:331 inc/configure.php:321
msgid "Log files have been found!"
msgstr ""
-#: inc/configure.php:302
+#: _build/inc/configure.php:331 _site/inc/configure.php:322
+#: _tmp/inc/configure.php:332 inc/configure.php:322
msgid "Check in the following list which files you want to configure."
msgstr ""
-#: inc/configure.php:304
+#: _build/inc/configure.php:333 _site/inc/configure.php:324
+#: _tmp/inc/configure.php:334 inc/configure.php:324
msgid ""
"If files or directories are missing, verify that they are readable by the "
"webserver user"
msgstr ""
-#: inc/configure.php:309 inc/configure.php:360
+#: _build/inc/configure.php:338 _build/inc/configure.php:389
+#: _site/inc/configure.php:329 _site/inc/configure.php:380
+#: _tmp/inc/configure.php:339 _tmp/inc/configure.php:390 inc/configure.php:329
+#: inc/configure.php:380
msgid "unable to detect web server user"
msgstr ""
-#: inc/configure.php:310 inc/configure.php:361
+#: _build/inc/configure.php:339 _build/inc/configure.php:390
+#: _site/inc/configure.php:330 _site/inc/configure.php:381
+#: _tmp/inc/configure.php:340 _tmp/inc/configure.php:391 inc/configure.php:330
+#: inc/configure.php:381
#, php-format
msgid "web server user seems to be %s
"
msgstr ""
-#: inc/configure.php:314
+#: _build/inc/configure.php:343 _site/inc/configure.php:334
+#: _tmp/inc/configure.php:344 inc/configure.php:334
msgid ""
"You can also type log files path in the text area below separated by coma:"
msgstr ""
-#: inc/configure.php:316 inc/configure.php:475
+#: _build/inc/configure.php:345 _build/inc/configure.php:530
+#: _site/inc/configure.php:336 _site/inc/configure.php:521
+#: _tmp/inc/configure.php:346 _tmp/inc/configure.php:531 inc/configure.php:336
+#: inc/configure.php:521
msgid "Type"
msgstr ""
-#: inc/configure.php:316
+#: _build/inc/configure.php:345 _site/inc/configure.php:336
+#: _tmp/inc/configure.php:346 inc/configure.php:336
msgid "Custom paths"
msgstr ""
-#: inc/configure.php:338 inc/configure.php:385 inc/configure.php:389
+#: _build/inc/configure.php:367 _build/inc/configure.php:414
+#: _build/inc/configure.php:418 _site/inc/configure.php:358
+#: _site/inc/configure.php:405 _site/inc/configure.php:409
+#: _tmp/inc/configure.php:368 _tmp/inc/configure.php:415
+#: _tmp/inc/configure.php:419 inc/configure.php:358 inc/configure.php:405
+#: inc/configure.php:409
msgid "Unknown error"
msgstr ""
-#: inc/configure.php:357
+#: _build/inc/configure.php:386 _site/inc/configure.php:377
+#: _tmp/inc/configure.php:387 inc/configure.php:377
msgid ""
"Custom files below are not readable, please remove them or verify that they "
"are readable by the webserver user"
msgstr ""
-#: inc/configure.php:421
+#: _build/inc/configure.php:450 _site/inc/configure.php:441
+#: _tmp/inc/configure.php:451 inc/configure.php:441
#, php-format
msgid ""
"File %s
does not define function %s
. Please review "
"your software configuration."
msgstr ""
-#: inc/configure.php:434
+#: _build/inc/configure.php:463 _site/inc/configure.php:454
+#: _tmp/inc/configure.php:464 inc/configure.php:454
msgid "No configuration found for softwares!"
msgstr ""
-#: inc/configure.php:446
+#: _build/inc/configure.php:475 _site/inc/configure.php:466
+#: _tmp/inc/configure.php:476 inc/configure.php:466
msgid "Unknown action, abort."
msgstr ""
-#: inc/configure.php:468
+#: _build/inc/configure.php:482 _build/inc/configure.php:486
+#: _build/inc/configure.php:505 _build/inc/configure.php:538
+#: _site/inc/configure.php:473 _site/inc/configure.php:477
+#: _site/inc/configure.php:496 _site/inc/configure.php:529
+#: _tmp/inc/configure.php:483 _tmp/inc/configure.php:487
+#: _tmp/inc/configure.php:506 _tmp/inc/configure.php:539 inc/configure.php:473
+#: inc/configure.php:477 inc/configure.php:496 inc/configure.php:529
+#, php-format
+msgid "You should take a look on this %spage%s."
+msgstr ""
+
+#: _build/inc/configure.php:505 _site/inc/configure.php:496
+#: _tmp/inc/configure.php:506 inc/configure.php:496
+msgid "Your PHP installation is not correctly configured to run Pimp My Log."
+msgstr ""
+
+#: _build/inc/configure.php:523 _site/inc/configure.php:514
+#: _tmp/inc/configure.php:524 inc/configure.php:514
msgid "%s% Complete"
msgstr ""
-#: inc/configure.php:469 index.php:122
+#: _build/inc/configure.php:524 _build/index.php:138
+#: _site/inc/configure.php:515 _site/index.php:129 _tmp/inc/configure.php:525
+#: _tmp/index.php:139 inc/configure.php:515 index.php:129
msgid "An error occurs!"
msgstr ""
-#: inc/configure.php:470
+#: _build/inc/configure.php:525 _site/inc/configure.php:516
+#: _tmp/inc/configure.php:526 inc/configure.php:516
msgid "Please wait..."
msgstr ""
-#: inc/configure.php:471
+#: _build/inc/configure.php:526 _site/inc/configure.php:517
+#: _tmp/inc/configure.php:527 inc/configure.php:517
msgid "Software"
msgstr ""
-#: inc/configure.php:472 inc/test.php:510
+#: _build/inc/configure.php:527 _build/inc/test.php:313
+#: _site/inc/configure.php:518 _site/inc/test.php:510
+#: _tmp/inc/configure.php:528 _tmp/inc/test.php:520 inc/configure.php:518
+#: inc/test.php:510
msgid "Path"
msgstr ""
-#: inc/configure.php:473
+#: _build/inc/configure.php:528 _site/inc/configure.php:519
+#: _tmp/inc/configure.php:529 inc/configure.php:519
msgid "File"
msgstr ""
-#: inc/configure.php:474
+#: _build/inc/configure.php:529 _site/inc/configure.php:520
+#: _tmp/inc/configure.php:530 inc/configure.php:520
msgid "Readable"
msgstr ""
-#: inc/configure.php:477 inc/test.php:514 inc/test.php:515
-#: inc/users.pml.php:422 index.php:772
+#: _build/inc/configure.php:532 _build/inc/test.php:317
+#: _build/inc/test.php:318 _build/inc/test.php:333 _build/inc/test.php:342
+#: _build/inc/users.pml.php:455 _build/index.php:323
+#: _site/inc/configure.php:523 _site/inc/test.php:514 _site/inc/test.php:515
+#: _site/inc/test.php:545 _site/inc/test.php:554 _site/inc/users.pml.php:446
+#: _site/index.php:794 _tmp/inc/configure.php:533 _tmp/inc/test.php:524
+#: _tmp/inc/test.php:525 _tmp/inc/test.php:555 _tmp/inc/test.php:564
+#: _tmp/inc/users.pml.php:456 _tmp/index.php:804 inc/configure.php:523
+#: inc/test.php:514 inc/test.php:515 inc/test.php:545 inc/test.php:554
+#: inc/users.pml.php:446 index.php:794
msgid "Yes"
msgstr ""
-#: inc/configure.php:478
+#: _build/inc/configure.php:533 _site/inc/configure.php:524
+#: _tmp/inc/configure.php:534 inc/configure.php:524
msgid "Name"
msgstr ""
-#: inc/configure.php:479
+#: _build/inc/configure.php:534 _site/inc/configure.php:525
+#: _tmp/inc/configure.php:535 inc/configure.php:525
msgid "Description"
msgstr ""
-#: inc/configure.php:480
+#: _build/inc/configure.php:535 _site/inc/configure.php:526
+#: _tmp/inc/configure.php:536 inc/configure.php:526
msgid "Notes"
msgstr ""
-#: inc/configure.php:481
+#: _build/inc/configure.php:536 _site/inc/configure.php:527
+#: _tmp/inc/configure.php:537 inc/configure.php:527
msgid "You have to select at least one software to configure!"
msgstr ""
-#: inc/configure.php:482
+#: _build/inc/configure.php:537 _site/inc/configure.php:528
+#: _tmp/inc/configure.php:538 inc/configure.php:528
msgid ""
"You have to select at least one log file or type the path of a log file!"
msgstr ""
-#: inc/configure.php:519
+#: _build/inc/configure.php:550 _site/inc/configure.php:566
+#: _tmp/inc/configure.php:576 inc/configure.php:566
msgid "Configurator"
msgstr ""
-#: inc/configure.php:540 inc/test.php:175
+#: _build/inc/configure.php:553 _build/index.php:50
+#: _site/inc/configure.php:584 _site/index.php:41 _tmp/inc/configure.php:594
+#: _tmp/index.php:51 inc/configure.php:584 index.php:41
+#, php-format
+msgid ""
+"Suhosin extension is loaded, according to its configuration, Pimp My Log "
+"could not run normally... More information %shere%s."
+msgstr ""
+
+#: _build/inc/configure.php:556 _build/inc/test.php:150
+#: _site/inc/configure.php:594 _site/inc/test.php:175
+#: _tmp/inc/configure.php:604 _tmp/inc/test.php:185 inc/configure.php:594
+#: inc/test.php:175
msgid "Reload"
msgstr ""
-#: inc/configure.php:546
+#: _build/inc/configure.php:556 _site/inc/configure.php:600
+#: _tmp/inc/configure.php:610 inc/configure.php:600
msgid "Congratulations!"
msgstr ""
-#: inc/configure.php:550
+#: _build/inc/configure.php:558 _site/inc/configure.php:604
+#: _tmp/inc/configure.php:614 inc/configure.php:604
msgid "Your Pimp my Log instance is ready to use."
msgstr ""
-#: inc/configure.php:553
+#: _build/inc/configure.php:561 _site/inc/configure.php:607
+#: _tmp/inc/configure.php:617 inc/configure.php:607
#, php-format
msgid "You can manually adjust settings in the %s
file."
msgstr ""
-#: inc/configure.php:555
+#: _build/inc/configure.php:563 _site/inc/configure.php:609
+#: _tmp/inc/configure.php:619 inc/configure.php:609
msgid ""
"Please visit pimpmylog.com for more "
"informations."
msgstr ""
-#: inc/configure.php:558
+#: _build/inc/configure.php:566 _site/inc/configure.php:612
+#: _tmp/inc/configure.php:622 inc/configure.php:612
msgid "Pimp my Logs now!"
msgstr ""
+#: _build/inc/getlog.pml.php:112 _build/inc/rss.pml.php:74
+#: _build/inc/upgrade.pml.php:26 _build/inc/users.pml.php:83
+#: _site/inc/getlog.pml.php:103 _site/inc/rss.pml.php:65
+#: _site/inc/upgrade.pml.php:17 _site/inc/users.pml.php:74
+#: _tmp/inc/getlog.pml.php:113 _tmp/inc/rss.pml.php:75
+#: _tmp/inc/upgrade.pml.php:27 _tmp/inc/users.pml.php:84
#: inc/getlog.pml.php:103 inc/rss.pml.php:65 inc/upgrade.pml.php:17
#: inc/users.pml.php:74
msgid "Please refresh the page."
msgstr ""
-#: inc/getlog.pml.php:109
+#: _build/inc/getlog.pml.php:118 _site/inc/getlog.pml.php:109
+#: _tmp/inc/getlog.pml.php:119 inc/getlog.pml.php:109
#, php-format
msgid ""
"File ID %s
does not exist, please review your configuration "
"file and stop playing!"
msgstr ""
-#: inc/getlog.pml.php:116
+#: _build/inc/getlog.pml.php:125 _site/inc/getlog.pml.php:116
+#: _tmp/inc/getlog.pml.php:126 inc/getlog.pml.php:116
#, php-format
msgid ""
"File %s
for file ID %s
does not exist, please "
"review your configuration file."
msgstr ""
-#: inc/getlog.pml.php:123
+#: _build/inc/getlog.pml.php:132 _site/inc/getlog.pml.php:123
+#: _tmp/inc/getlog.pml.php:133 inc/getlog.pml.php:123
msgid ""
"Configuration file has changed and is buggy now. Please refresh the page."
msgstr ""
-#: inc/getlog.pml.php:183
+#: _build/inc/getlog.pml.php:192 _site/inc/getlog.pml.php:183
+#: _tmp/inc/getlog.pml.php:193 inc/getlog.pml.php:183
#, php-format
msgid "Log file has been rotated (previous size was %s and new one is %s)"
msgstr ""
-#: inc/getlog.pml.php:207
+#: _build/inc/getlog.pml.php:216 _site/inc/getlog.pml.php:207
+#: _tmp/inc/getlog.pml.php:217 inc/getlog.pml.php:207
#, php-format
msgid ""
"File %s
for file ID %s
does not exist anymore..."
msgstr ""
-#: inc/getlog.pml.php:211
+#: _build/inc/getlog.pml.php:220 _site/inc/getlog.pml.php:211
+#: _tmp/inc/getlog.pml.php:221 inc/getlog.pml.php:211
#, php-format
msgid "Unknown error %s"
msgstr ""
-#: inc/getlog.pml.php:229
+#: _build/inc/getlog.pml.php:238 _site/inc/getlog.pml.php:229
+#: _tmp/inc/getlog.pml.php:239 inc/getlog.pml.php:229
msgid "Log file has been rotated"
msgstr ""
-#: inc/getlog.pml.php:263
+#: _build/inc/getlog.pml.php:272 _site/inc/getlog.pml.php:263
+#: _tmp/inc/getlog.pml.php:273 inc/getlog.pml.php:263
#, php-format
msgid ""
"%s in %sms
with %s
of logs, %s
"
@@ -449,323 +671,429 @@ msgid ""
"%s
%s"
msgstr ""
-#: inc/getlog.pml.php:267
+#: _build/inc/getlog.pml.php:276 _site/inc/getlog.pml.php:267
+#: _tmp/inc/getlog.pml.php:277 inc/getlog.pml.php:267
#, php-format
msgid "%s new logs found"
msgstr ""
-#: inc/getlog.pml.php:270
+#: _build/inc/getlog.pml.php:279 _site/inc/getlog.pml.php:270
+#: _tmp/inc/getlog.pml.php:280 inc/getlog.pml.php:270
msgid "no new log found"
msgstr ""
-#: inc/getlog.pml.php:271
+#: _build/inc/getlog.pml.php:280 _site/inc/getlog.pml.php:271
+#: _tmp/inc/getlog.pml.php:281 inc/getlog.pml.php:271
msgid "1 new log found"
msgstr ""
-#: inc/getlog.pml.php:276
+#: _build/inc/getlog.pml.php:285 _site/inc/getlog.pml.php:276
+#: _tmp/inc/getlog.pml.php:286 inc/getlog.pml.php:276
#, php-format
msgid "%s old logs found"
msgstr ""
-#: inc/getlog.pml.php:279
+#: _build/inc/getlog.pml.php:288 _site/inc/getlog.pml.php:279
+#: _tmp/inc/getlog.pml.php:289 inc/getlog.pml.php:279
msgid "no old log found"
msgstr ""
-#: inc/getlog.pml.php:280
+#: _build/inc/getlog.pml.php:289 _site/inc/getlog.pml.php:280
+#: _tmp/inc/getlog.pml.php:290 inc/getlog.pml.php:280
msgid "1 olg log found"
msgstr ""
-#: inc/getlog.pml.php:292
+#: _build/inc/getlog.pml.php:301 _site/inc/getlog.pml.php:292
+#: _tmp/inc/getlog.pml.php:302 inc/getlog.pml.php:292
#, php-format
msgid "log type is %s
"
msgstr ""
-#: inc/global.inc.php:505 inc/global.inc.php:513
+#: _build/inc/global.inc.php:599 _build/inc/global.inc.php:607
+#: _site/inc/global.inc.php:590 _site/inc/global.inc.php:598
+#: _tmp/inc/global.inc.php:600 _tmp/inc/global.inc.php:608
+#: inc/global.inc.php:590 inc/global.inc.php:598
msgid "No file is defined in files
array"
msgstr ""
-#: inc/global.inc.php:522
+#: _build/inc/global.inc.php:616 _site/inc/global.inc.php:607
+#: _tmp/inc/global.inc.php:617 inc/global.inc.php:607
#, php-format
msgid "%s
is mandatory for file ID %s
"
msgstr ""
-#: inc/global.inc.php:687
+#: _build/inc/global.inc.php:781 _site/inc/global.inc.php:772
+#: _tmp/inc/global.inc.php:782 inc/global.inc.php:772
msgid "B KBMBGBTBPB"
msgstr ""
-#: inc/login.inc.php:42
+#: _build/inc/login.inc.php:21 _site/inc/login.inc.php:42
+#: _tmp/inc/login.inc.php:52 inc/login.inc.php:42
msgid "Your username or password is not correct"
msgstr ""
-#: inc/login.inc.php:47
+#: _build/inc/login.inc.php:26 _site/inc/login.inc.php:47
+#: _tmp/inc/login.inc.php:57 inc/login.inc.php:47
msgid "Please try again..."
msgstr ""
-#: inc/login.inc.php:52
+#: _build/inc/login.inc.php:31 _site/inc/login.inc.php:52
+#: _tmp/inc/login.inc.php:62 inc/login.inc.php:52
msgid "You have been logged out"
msgstr ""
-#: inc/login.inc.php:58
+#: _build/inc/login.inc.php:37 _site/inc/login.inc.php:58
+#: _tmp/inc/login.inc.php:68 inc/login.inc.php:58
#, php-format
msgid ""
"You can use %s as the username and %s as the password to test the demo "
"account"
msgstr ""
-#: inc/login.inc.php:66
+#: _build/inc/login.inc.php:41 _site/inc/login.inc.php:66
+#: _tmp/inc/login.inc.php:76 inc/login.inc.php:66
msgid "Please sign in"
msgstr ""
-#: inc/login.inc.php:103
+#: _build/inc/login.inc.php:54 _site/inc/login.inc.php:103
+#: _tmp/inc/login.inc.php:113 inc/login.inc.php:103
msgid "Forgotten your password?"
msgstr ""
+#: _build/inc/rss.php:140 _site/inc/rss.php:131 _tmp/inc/rss.php:141
#: inc/rss.php:131
#, php-format
msgid "Pimp My Log : %s"
msgstr ""
+#: _build/inc/rss.php:142 _site/inc/rss.php:133 _tmp/inc/rss.php:143
#: inc/rss.php:133
#, php-format
msgid "Pimp logs for file %s"
msgstr ""
+#: _build/inc/rss.php:143 _site/inc/rss.php:134 _tmp/inc/rss.php:144
#: inc/rss.php:134
#, php-format
msgid "Pimp logs for file %s with search %s"
msgstr ""
+#: _build/inc/rss.php:152 _site/inc/rss.php:143 _tmp/inc/rss.php:153
#: inc/rss.php:143
msgid "Feed provided by Pimp My Log"
msgstr ""
-#: inc/rss.pml.php:24 inc/users.pml.php:33
+#: _build/inc/rss.pml.php:33 _build/inc/users.pml.php:42
+#: _site/inc/rss.pml.php:24 _site/inc/users.pml.php:33 _tmp/inc/rss.pml.php:34
+#: _tmp/inc/users.pml.php:43 inc/rss.pml.php:24 inc/users.pml.php:33
#, php-format
msgid "PHP Warning [%s] %s"
msgstr ""
-#: inc/rss.pml.php:28 inc/users.pml.php:37
+#: _build/inc/rss.pml.php:37 _build/inc/users.pml.php:46
+#: _site/inc/rss.pml.php:28 _site/inc/users.pml.php:37 _tmp/inc/rss.pml.php:38
+#: _tmp/inc/users.pml.php:47 inc/rss.pml.php:28 inc/users.pml.php:37
#, php-format
msgid "PHP Notice [%s] %s"
msgstr ""
-#: inc/rss.pml.php:32 inc/users.pml.php:41
+#: _build/inc/rss.pml.php:41 _build/inc/users.pml.php:50
+#: _site/inc/rss.pml.php:32 _site/inc/users.pml.php:41 _tmp/inc/rss.pml.php:42
+#: _tmp/inc/users.pml.php:51 inc/rss.pml.php:32 inc/users.pml.php:41
#, php-format
msgid "PHP Unknown error [%s] %s"
msgstr ""
-#: inc/rss.pml.php:47 inc/users.pml.php:56
+#: _build/inc/rss.pml.php:56 _build/inc/users.pml.php:65
+#: _site/inc/rss.pml.php:47 _site/inc/users.pml.php:56 _tmp/inc/rss.pml.php:57
+#: _tmp/inc/users.pml.php:66 inc/rss.pml.php:47 inc/users.pml.php:56
#, php-format
msgid "PHP Error line %s: %s"
msgstr ""
+#: _build/inc/rss.pml.php:81 _site/inc/rss.pml.php:72 _tmp/inc/rss.pml.php:82
#: inc/rss.pml.php:72
msgid "This log file does not exist."
msgstr ""
+#: _build/inc/test.php:102 _build/inc/test.php:109 _build/inc/test.php:116
+#: _site/inc/test.php:93 _site/inc/test.php:100 _site/inc/test.php:107
+#: _tmp/inc/test.php:103 _tmp/inc/test.php:110 _tmp/inc/test.php:117
#: inc/test.php:93 inc/test.php:100 inc/test.php:107
msgid "Error"
msgstr ""
+#: _build/inc/test.php:102 _site/inc/test.php:93 _tmp/inc/test.php:103
#: inc/test.php:93
msgid "Match is not a valid associative array"
msgstr ""
+#: _build/inc/test.php:109 _site/inc/test.php:100 _tmp/inc/test.php:110
#: inc/test.php:100
msgid "Types is not a valid associative array"
msgstr ""
+#: _build/inc/test.php:116 _site/inc/test.php:107 _tmp/inc/test.php:117
#: inc/test.php:107
msgid "RegEx is not a valid PHP PCRE regular expression"
msgstr ""
+#: _build/inc/test.php:133 _site/inc/test.php:124 _tmp/inc/test.php:134
#: inc/test.php:124
msgid "Configuration array has been copied to your clipboard!"
msgstr ""
+#: _build/inc/test.php:137 _site/inc/test.php:154 _tmp/inc/test.php:164
#: inc/test.php:154
msgid "Debugger"
msgstr ""
+#: _build/inc/test.php:141 _site/inc/test.php:166 _tmp/inc/test.php:176
#: inc/test.php:166
msgid "This page is protected for security reasons."
msgstr ""
+#: _build/inc/test.php:143 _site/inc/test.php:168 _tmp/inc/test.php:178
#: inc/test.php:168
msgid "To grant access, please create this temporary file on your server:"
msgstr ""
+#: _build/inc/test.php:149 _site/inc/test.php:174 _tmp/inc/test.php:184
#: inc/test.php:174
msgid "Then reload this page."
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:188 _tmp/inc/test.php:198
#: inc/test.php:188
msgid "Quit"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:189 _tmp/inc/test.php:199
#: inc/test.php:189
msgid "Regex tester"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:190 _tmp/inc/test.php:200
#: inc/test.php:190
msgid "Regex samples"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:191 _tmp/inc/test.php:201
#: inc/test.php:191
msgid "Configuration"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:192 _tmp/inc/test.php:202
#: inc/test.php:192
msgid "Password recovery"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:193 _tmp/inc/test.php:203
#: inc/test.php:193
msgid "Authentication"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:213 _tmp/inc/test.php:223
#: inc/test.php:213
msgid ""
"Please remove this temporary file on your server to disable the debugger!"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:232 _tmp/inc/test.php:242
#: inc/test.php:232
msgid "Log"
msgstr ""
+#: _build/inc/test.php:159 _site/inc/test.php:242 _tmp/inc/test.php:252
#: inc/test.php:242
msgid "RegEx"
msgstr ""
+#: _build/inc/test.php:161 _site/inc/test.php:250 _tmp/inc/test.php:260
#: inc/test.php:250
msgid "Match"
msgstr ""
+#: _build/inc/test.php:161 _build/inc/test.php:179 _site/inc/test.php:250
+#: _site/inc/test.php:274 _tmp/inc/test.php:260 _tmp/inc/test.php:284
#: inc/test.php:250 inc/test.php:274
msgid "must be json encoded"
msgstr ""
+#: _build/inc/test.php:179 _site/inc/test.php:274 _tmp/inc/test.php:284
#: inc/test.php:274
msgid "Types"
msgstr ""
+#: _build/inc/test.php:185 _site/inc/test.php:286 _tmp/inc/test.php:296
#: inc/test.php:286
msgid "Multiline"
msgstr ""
+#: _build/inc/test.php:185 _site/inc/test.php:293 _tmp/inc/test.php:303
#: inc/test.php:293
msgid "Use CTRL-R shortcut instead of clicking on this button"
msgstr ""
-#: inc/test.php:293 index.php:524 index.php:544 index.php:593
+#: _build/inc/test.php:185 _build/index.php:303 _site/inc/test.php:293
+#: _site/index.php:528 _site/index.php:548 _site/index.php:597
+#: _tmp/inc/test.php:303 _tmp/index.php:538 _tmp/index.php:558
+#: _tmp/index.php:607 inc/test.php:293 index.php:528 index.php:548
+#: index.php:597
msgid "Loading..."
msgstr ""
+#: _build/inc/test.php:185 _site/inc/test.php:293 _tmp/inc/test.php:303
#: inc/test.php:293
msgid "Test"
msgstr ""
+#: _build/inc/test.php:278 _site/inc/test.php:452 _tmp/inc/test.php:462
#: inc/test.php:452
msgid "Generated files with includes (no user logged in or no auth)"
msgstr ""
+#: _build/inc/test.php:280 _site/inc/test.php:454 _tmp/inc/test.php:464
#: inc/test.php:454
#, php-format
msgid "Generated files with includes for user %s"
msgstr ""
+#: _build/inc/test.php:289 _site/inc/test.php:479 _tmp/inc/test.php:489
#: inc/test.php:479
msgid "Rights"
msgstr ""
+#: _build/inc/test.php:293 _site/inc/test.php:489 _tmp/inc/test.php:499
#: inc/test.php:489
msgid "No POSIX functions..."
msgstr ""
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Read"
msgstr ""
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Write"
msgstr ""
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Real path"
msgstr ""
-#: inc/test.php:569
+#: _build/inc/test.php:328 _site/inc/test.php:540 _tmp/inc/test.php:550
+#: inc/test.php:540
+msgid "To be optimal, Pimp My Log needs all these modules ok:"
+msgstr ""
+
+#: _build/inc/test.php:336 _build/inc/test.php:345 _site/inc/test.php:548
+#: _site/inc/test.php:557 _tmp/inc/test.php:558 _tmp/inc/test.php:567
+#: inc/test.php:548 inc/test.php:557
+#, php-format
+msgid "Follow instructions %shere%s to enable"
+msgstr ""
+
+#: _build/inc/test.php:363 _site/inc/test.php:608 _tmp/inc/test.php:618
+#: inc/test.php:608
#, php-format
msgid "User %s already exists!"
msgstr ""
-#: inc/test.php:572 inc/test.php:658 inc/users.pml.php:114
-#: inc/users.pml.php:268
+#: _build/inc/test.php:366 _build/inc/test.php:383
+#: _build/inc/users.pml.php:123 _build/inc/users.pml.php:277
+#: _site/inc/test.php:611 _site/inc/test.php:697 _site/inc/users.pml.php:114
+#: _site/inc/users.pml.php:268 _tmp/inc/test.php:621 _tmp/inc/test.php:707
+#: _tmp/inc/users.pml.php:124 _tmp/inc/users.pml.php:278 inc/test.php:611
+#: inc/test.php:697 inc/users.pml.php:114 inc/users.pml.php:268
msgid "Password confirmation is not the same"
msgstr ""
-#: inc/test.php:580
+#: _build/inc/test.php:374 _site/inc/test.php:619 _tmp/inc/test.php:629
+#: inc/test.php:619
msgid "Authentication has been enabled and admin account has been created!"
msgstr ""
-#: inc/test.php:588
+#: _build/inc/test.php:377 _site/inc/test.php:627 _tmp/inc/test.php:637
+#: inc/test.php:627
msgid "Authentication is currently enabled"
msgstr ""
-#: inc/test.php:592
+#: _build/inc/test.php:377 _site/inc/test.php:631 _tmp/inc/test.php:641
+#: inc/test.php:631
msgid "Please remove this file on your server to disable authentication"
msgstr ""
-#: inc/test.php:603
+#: _build/inc/test.php:377 _site/inc/test.php:642 _tmp/inc/test.php:652
+#: inc/test.php:642
msgid "Authentication is currently disabled"
msgstr ""
-#: inc/test.php:636
+#: _build/inc/test.php:377 _site/inc/test.php:675 _tmp/inc/test.php:685
+#: inc/test.php:675
msgid "Enable authentication"
msgstr ""
-#: inc/test.php:651
+#: _build/inc/test.php:377 _site/inc/test.php:690 _tmp/inc/test.php:700
+#: inc/test.php:690
msgid "Please fill an existing username and a new password"
msgstr ""
-#: inc/test.php:655
+#: _build/inc/test.php:380 _site/inc/test.php:694 _tmp/inc/test.php:704
+#: inc/test.php:694
#, php-format
msgid "User %s does not exist!"
msgstr ""
-#: inc/test.php:666
+#: _build/inc/test.php:391 _site/inc/test.php:705 _tmp/inc/test.php:715
+#: inc/test.php:705
#, php-format
msgid "Password has been updated for user %s!"
msgstr ""
-#: inc/test.php:701
+#: _build/inc/test.php:394 _site/inc/test.php:740 _tmp/inc/test.php:750
+#: inc/test.php:740
msgid "Reset"
msgstr ""
-#: inc/test.php:705
+#: _build/inc/test.php:394 _site/inc/test.php:744 _tmp/inc/test.php:754
+#: inc/test.php:744
msgid "This feature is only available when authentication is enabled."
msgstr ""
+#: _build/inc/upgrade.pml.php:55 _build/inc/upgrade.pml.php:60
+#: _site/inc/upgrade.pml.php:46 _site/inc/upgrade.pml.php:51
+#: _tmp/inc/upgrade.pml.php:56 _tmp/inc/upgrade.pml.php:61
#: inc/upgrade.pml.php:46 inc/upgrade.pml.php:51
msgid "GIT is no more availble, please refresh the page"
msgstr ""
-#: inc/upgrade.pml.php:80
+#: _build/inc/upgrade.pml.php:89 _site/inc/upgrade.pml.php:80
+#: _tmp/inc/upgrade.pml.php:90 inc/upgrade.pml.php:80
#, php-format
msgid "Current version %s"
msgstr ""
-#: inc/upgrade.pml.php:85
+#: _build/inc/upgrade.pml.php:94 _site/inc/upgrade.pml.php:85
+#: _tmp/inc/upgrade.pml.php:95 inc/upgrade.pml.php:85
msgid "Unable to check your current version!"
msgstr ""
-#: inc/upgrade.pml.php:165
+#: _build/inc/upgrade.pml.php:174 _site/inc/upgrade.pml.php:165
+#: _tmp/inc/upgrade.pml.php:175 inc/upgrade.pml.php:165
msgid "Messages from the development team"
msgstr ""
-#: inc/upgrade.pml.php:179
+#: _build/inc/upgrade.pml.php:188 _site/inc/upgrade.pml.php:179
+#: _tmp/inc/upgrade.pml.php:189 inc/upgrade.pml.php:179
msgid "Mark as read"
msgstr ""
+#: _build/inc/upgrade.pml.php:213 _build/inc/upgrade.pml.php:219
+#: _site/inc/upgrade.pml.php:204 _site/inc/upgrade.pml.php:210
+#: _tmp/inc/upgrade.pml.php:214 _tmp/inc/upgrade.pml.php:220
#: inc/upgrade.pml.php:204 inc/upgrade.pml.php:210
#, php-format
msgid ""
@@ -773,762 +1101,896 @@ msgid ""
"instance."
msgstr ""
+#: _build/inc/upgrade.pml.php:213 _build/inc/upgrade.pml.php:219
+#: _site/inc/upgrade.pml.php:204 _site/inc/upgrade.pml.php:210
+#: _tmp/inc/upgrade.pml.php:214 _tmp/inc/upgrade.pml.php:220
#: inc/upgrade.pml.php:204 inc/upgrade.pml.php:210
msgid "Remote version broken!"
msgstr ""
-#: inc/upgrade.pml.php:231
+#: _build/inc/upgrade.pml.php:240 _site/inc/upgrade.pml.php:231
+#: _tmp/inc/upgrade.pml.php:241 inc/upgrade.pml.php:231
#, php-format
msgid "Version %s released on %s"
msgstr ""
-#: inc/upgrade.pml.php:232
+#: _build/inc/upgrade.pml.php:241 _site/inc/upgrade.pml.php:232
+#: _tmp/inc/upgrade.pml.php:242 inc/upgrade.pml.php:232
#, php-format
msgid "Version %s"
msgstr ""
-#: inc/upgrade.pml.php:268
+#: _build/inc/upgrade.pml.php:277 _site/inc/upgrade.pml.php:268
+#: _tmp/inc/upgrade.pml.php:278 inc/upgrade.pml.php:268
msgid "An upgrade is available !"
msgstr ""
-#: inc/upgrade.pml.php:269
+#: _build/inc/upgrade.pml.php:278 _site/inc/upgrade.pml.php:269
+#: _tmp/inc/upgrade.pml.php:279 inc/upgrade.pml.php:269
#, php-format
msgid "You have version %s and version %s is available"
msgstr ""
-#: inc/upgrade.pml.php:270
+#: _build/inc/upgrade.pml.php:279 _site/inc/upgrade.pml.php:270
+#: _tmp/inc/upgrade.pml.php:280 inc/upgrade.pml.php:270
msgid "release notes"
msgstr ""
-#: inc/upgrade.pml.php:276
+#: _build/inc/upgrade.pml.php:285 _site/inc/upgrade.pml.php:276
+#: _tmp/inc/upgrade.pml.php:286 inc/upgrade.pml.php:276
msgid "Simply composer update
in the installation directory"
msgstr ""
-#: inc/upgrade.pml.php:286 inc/upgrade.pml.php:303 inc/upgrade.pml.php:323
-#: inc/upgrade.pml.php:383 inc/upgrade.pml.php:396
+#: _build/inc/upgrade.pml.php:295 _build/inc/upgrade.pml.php:312
+#: _build/inc/upgrade.pml.php:332 _build/inc/upgrade.pml.php:392
+#: _build/inc/upgrade.pml.php:405 _site/inc/upgrade.pml.php:286
+#: _site/inc/upgrade.pml.php:303 _site/inc/upgrade.pml.php:323
+#: _site/inc/upgrade.pml.php:383 _site/inc/upgrade.pml.php:396
+#: _tmp/inc/upgrade.pml.php:296 _tmp/inc/upgrade.pml.php:313
+#: _tmp/inc/upgrade.pml.php:333 _tmp/inc/upgrade.pml.php:393
+#: _tmp/inc/upgrade.pml.php:406 inc/upgrade.pml.php:286
+#: inc/upgrade.pml.php:303 inc/upgrade.pml.php:323 inc/upgrade.pml.php:383
+#: inc/upgrade.pml.php:396
msgid "Skip this upgrade"
msgstr ""
-#: inc/upgrade.pml.php:294
+#: _build/inc/upgrade.pml.php:303 _site/inc/upgrade.pml.php:294
+#: _tmp/inc/upgrade.pml.php:304 inc/upgrade.pml.php:294
#, php-format
msgid ""
"Simply git pull
in your directory or follow instructions %shere"
"%s"
msgstr ""
-#: inc/upgrade.pml.php:320
+#: _build/inc/upgrade.pml.php:329 _site/inc/upgrade.pml.php:320
+#: _tmp/inc/upgrade.pml.php:330 inc/upgrade.pml.php:320
msgid "Upgrading..."
msgstr ""
-#: inc/upgrade.pml.php:320
+#: _build/inc/upgrade.pml.php:329 _site/inc/upgrade.pml.php:320
+#: _tmp/inc/upgrade.pml.php:330 inc/upgrade.pml.php:320
msgid "Upgrade now"
msgstr ""
-#: inc/upgrade.pml.php:331
+#: _build/inc/upgrade.pml.php:340 _site/inc/upgrade.pml.php:331
+#: _tmp/inc/upgrade.pml.php:341 inc/upgrade.pml.php:331
#, php-format
msgid ""
"Your GIT installation cannot be upgraded automatically because of %sthese "
"problems%s."
msgstr ""
-#: inc/upgrade.pml.php:338
+#: _build/inc/upgrade.pml.php:347 _site/inc/upgrade.pml.php:338
+#: _tmp/inc/upgrade.pml.php:348 inc/upgrade.pml.php:338
msgid "These files are not writable by the web server user:"
msgstr ""
-#: inc/upgrade.pml.php:348
+#: _build/inc/upgrade.pml.php:357 _site/inc/upgrade.pml.php:348
+#: _tmp/inc/upgrade.pml.php:358 inc/upgrade.pml.php:348
msgid "The git
command is not in the webserver path"
msgstr ""
-#: inc/upgrade.pml.php:353
+#: _build/inc/upgrade.pml.php:362 _site/inc/upgrade.pml.php:353
+#: _tmp/inc/upgrade.pml.php:363 inc/upgrade.pml.php:353
msgid "You have modified these files:"
msgstr ""
-#: inc/upgrade.pml.php:363
+#: _build/inc/upgrade.pml.php:372 _site/inc/upgrade.pml.php:363
+#: _tmp/inc/upgrade.pml.php:373 inc/upgrade.pml.php:363
msgid "Unknown error, here is the problem output:"
msgstr ""
-#: inc/upgrade.pml.php:374
+#: _build/inc/upgrade.pml.php:383 _site/inc/upgrade.pml.php:374
+#: _tmp/inc/upgrade.pml.php:384 inc/upgrade.pml.php:374
msgid "Simply git pull
in your installation directory."
msgstr ""
-#: inc/upgrade.pml.php:392
+#: _build/inc/upgrade.pml.php:401 _site/inc/upgrade.pml.php:392
+#: _tmp/inc/upgrade.pml.php:402 inc/upgrade.pml.php:392
#, php-format
msgid "Follow instructions %shere%s"
msgstr ""
-#: inc/upgrade.pml.php:405
+#: _build/inc/upgrade.pml.php:414 _site/inc/upgrade.pml.php:405
+#: _tmp/inc/upgrade.pml.php:415 inc/upgrade.pml.php:405
msgid "You should upgrade right now:"
msgstr ""
-#: inc/upgrade.pml.php:416
+#: _build/inc/upgrade.pml.php:425 _site/inc/upgrade.pml.php:416
+#: _tmp/inc/upgrade.pml.php:426 inc/upgrade.pml.php:416
#, php-format
msgid "Your version %s is out of date"
msgstr ""
-#: inc/upgrade.pml.php:421
+#: _build/inc/upgrade.pml.php:430 _site/inc/upgrade.pml.php:421
+#: _tmp/inc/upgrade.pml.php:431 inc/upgrade.pml.php:421
#, php-format
msgid "Your version %s is up to date"
msgstr ""
-#: inc/upgrade.pml.php:427
+#: _build/inc/upgrade.pml.php:436 _site/inc/upgrade.pml.php:427
+#: _tmp/inc/upgrade.pml.php:437 inc/upgrade.pml.php:427
#, php-format
msgid ""
"Unable to fetch URL %s from the server hosting this Pimp my Log instance."
msgstr ""
-#: inc/upgrade.pml.php:427
+#: _build/inc/upgrade.pml.php:436 _site/inc/upgrade.pml.php:427
+#: _tmp/inc/upgrade.pml.php:437 inc/upgrade.pml.php:427
msgid "Unable to check remote version!"
msgstr ""
-#: inc/users.pml.php:104
+#: _build/inc/users.pml.php:113 _site/inc/users.pml.php:104
+#: _tmp/inc/users.pml.php:114 inc/users.pml.php:104
msgid "Current password is not valid"
msgstr ""
-#: inc/users.pml.php:121
+#: _build/inc/users.pml.php:130 _site/inc/users.pml.php:121
+#: _tmp/inc/users.pml.php:131 inc/users.pml.php:121
msgid "Password has been fakely changed on the demo!"
msgstr ""
-#: inc/users.pml.php:123
+#: _build/inc/users.pml.php:132 _site/inc/users.pml.php:123
+#: _tmp/inc/users.pml.php:133 inc/users.pml.php:123
msgid "Password has been successfully changed!"
msgstr ""
-#: inc/users.pml.php:178 inc/users.pml.php:209
+#: _build/inc/users.pml.php:187 _build/inc/users.pml.php:218
+#: _site/inc/users.pml.php:178 _site/inc/users.pml.php:209
+#: _tmp/inc/users.pml.php:188 _tmp/inc/users.pml.php:219 inc/users.pml.php:178
+#: inc/users.pml.php:209
#, php-format
msgid "User %s does not exist"
msgstr ""
-#: inc/users.pml.php:260
+#: _build/inc/users.pml.php:269 _site/inc/users.pml.php:260
+#: _tmp/inc/users.pml.php:270 inc/users.pml.php:260
#, php-format
msgid "User %s already exists"
msgstr ""
-#: inc/users.pml.php:317
+#: _build/inc/users.pml.php:331 _site/inc/users.pml.php:322
+#: _tmp/inc/users.pml.php:332 inc/users.pml.php:322
msgid "Please do not shoot yourself in the foot!"
msgstr ""
-#: inc/users.pml.php:389
+#: _build/inc/users.pml.php:403 _site/inc/users.pml.php:394
+#: _tmp/inc/users.pml.php:404 inc/users.pml.php:394
msgid ""
"Anonymous access is enabled. Genuine users have to click on "
"the user menu to sign in and access more logs."
msgstr ""
-#: inc/users.pml.php:391
+#: _build/inc/users.pml.php:405 _site/inc/users.pml.php:396
+#: _tmp/inc/users.pml.php:406 inc/users.pml.php:396
msgid ""
"Anonymous access is disabled. All users have to sign in "
"from the sign in screen."
msgstr ""
-#: inc/users.pml.php:397
+#: _build/inc/users.pml.php:411 _site/inc/users.pml.php:402
+#: _tmp/inc/users.pml.php:412 inc/users.pml.php:402
msgid "Select which log files can be viewed without being logged."
msgstr ""
-#: inc/users.pml.php:398 index.php:761
+#: _build/inc/users.pml.php:412 _build/index.php:303
+#: _site/inc/users.pml.php:403 _site/index.php:765 _tmp/inc/users.pml.php:413
+#: _tmp/index.php:775 inc/users.pml.php:403 index.php:765
msgid "Toggle all log files"
msgstr ""
-#: inc/users.pml.php:477 index.php:154
+#: _build/inc/users.pml.php:429 _build/index.php:315
+#: _site/inc/users.pml.php:420 _site/index.php:780 _tmp/inc/users.pml.php:430
+#: _tmp/index.php:790 inc/users.pml.php:420 index.php:780
+msgid "and an other file defined by glob pattern"
+msgstr ""
+
+#: _build/inc/users.pml.php:432 _build/index.php:318
+#: _site/inc/users.pml.php:423 _site/index.php:783 _tmp/inc/users.pml.php:433
+#: _tmp/index.php:793 inc/users.pml.php:423 index.php:783
+#, php-format
+msgid "and %s other possible files defined by glob pattern"
+msgstr ""
+
+#: _build/inc/users.pml.php:513 _build/index.php:170
+#: _site/inc/users.pml.php:504 _site/index.php:161 _tmp/inc/users.pml.php:514
+#: _tmp/index.php:171 inc/users.pml.php:504 index.php:161
msgid "Access token"
msgstr ""
-#: inc/users.pml.php:488
+#: _build/inc/users.pml.php:524 _site/inc/users.pml.php:515
+#: _tmp/inc/users.pml.php:525 inc/users.pml.php:515
msgid "Access token copied!"
msgstr ""
-#: inc/users.pml.php:491 index.php:158
+#: _build/inc/users.pml.php:527 _build/index.php:174
+#: _site/inc/users.pml.php:518 _site/index.php:165 _tmp/inc/users.pml.php:528
+#: _tmp/index.php:175 inc/users.pml.php:518 index.php:165
msgid "Presalt key"
msgstr ""
-#: inc/users.pml.php:502
+#: _build/inc/users.pml.php:538 _site/inc/users.pml.php:529
+#: _tmp/inc/users.pml.php:539 inc/users.pml.php:529
msgid "Presalt key copied!"
msgstr ""
-#: inc/users.pml.php:507
+#: _build/inc/users.pml.php:543 _site/inc/users.pml.php:534
+#: _tmp/inc/users.pml.php:544 inc/users.pml.php:534
msgid "Check to generate both new Access token and new Presalt key"
msgstr ""
-#: inc/users.pml.php:514
+#: _build/inc/users.pml.php:550 _site/inc/users.pml.php:541
+#: _tmp/inc/users.pml.php:551 inc/users.pml.php:541
msgid "Your credentials have not been used"
msgstr ""
-#: inc/users.pml.php:519
+#: _build/inc/users.pml.php:555 _site/inc/users.pml.php:546
+#: _tmp/inc/users.pml.php:556 inc/users.pml.php:546
msgid "API has been called 1 time"
msgstr ""
-#: inc/users.pml.php:521
+#: _build/inc/users.pml.php:557 _site/inc/users.pml.php:548
+#: _tmp/inc/users.pml.php:558 inc/users.pml.php:548
#, php-format
msgid "API has been called %s times"
msgstr ""
-#: inc/users.pml.php:525
+#: _build/inc/users.pml.php:561 _site/inc/users.pml.php:552
+#: _tmp/inc/users.pml.php:562 inc/users.pml.php:552
#, php-format
msgid ""
"Last API call has been done at %s by IP address %s with user agent %s on URL "
"%s"
msgstr ""
-#: index.php:11 index.php:72 index.php:85
+#: _build/index.php:20 _build/index.php:88 _build/index.php:101
+#: _site/index.php:11 _site/index.php:79 _site/index.php:92 _tmp/index.php:21
+#: _tmp/index.php:89 _tmp/index.php:102 index.php:11 index.php:79 index.php:92
msgid "Oups!"
msgstr ""
-#: index.php:12
+#: _build/index.php:21 _site/index.php:12 _tmp/index.php:22 index.php:12
#, php-format
msgid "PHP version %s is required but your server run %s."
msgstr ""
-#: index.php:14
+#: _build/index.php:23 _site/index.php:14 _tmp/index.php:24 index.php:14
msgid "Learn more"
msgstr ""
-#: index.php:28
+#: _build/index.php:37 _site/index.php:28 _tmp/index.php:38 index.php:28
msgid "Welcome!"
msgstr ""
-#: index.php:30
+#: _build/index.php:40 _site/index.php:31 _tmp/index.php:41 index.php:31
msgid "Pimp my Log is not configured."
msgstr ""
-#: index.php:33
+#: _build/index.php:43 _site/index.php:34 _tmp/index.php:44 index.php:34
#, php-format
msgid ""
"You can manually copy cfg/config.example.php
to %s in the root "
"directory and change parameters. Then refresh this page."
msgstr ""
-#: index.php:36
+#: _build/index.php:46 _site/index.php:37 _tmp/index.php:47 index.php:37
msgid "Or let me try to configure it for you!"
msgstr ""
-#: index.php:39 index.php:96
+#: _build/index.php:55 _build/index.php:112 _site/index.php:46
+#: _site/index.php:103 _tmp/index.php:56 _tmp/index.php:113 index.php:46
+#: index.php:103
msgid "Configure now"
msgstr ""
-#: index.php:74
+#: _build/index.php:90 _site/index.php:81 _tmp/index.php:91 index.php:81
msgid "Your access is disabled, you cannot view any log file."
msgstr ""
-#: index.php:76
+#: _build/index.php:92 _site/index.php:83 _tmp/index.php:93 index.php:83
msgid "Please contact your administrator."
msgstr ""
-#: index.php:79 index.php:146 index.php:464
+#: _build/index.php:95 _build/index.php:162 _build/index.php:294
+#: _site/index.php:86 _site/index.php:153 _site/index.php:468
+#: _tmp/index.php:96 _tmp/index.php:163 _tmp/index.php:478 index.php:86
+#: index.php:153 index.php:468
msgid "Sign out"
msgstr ""
-#: index.php:87
+#: _build/index.php:103 _site/index.php:94 _tmp/index.php:104 index.php:94
msgid "config.user.json
configuration file is buggy:"
msgstr ""
-#: index.php:93
+#: _build/index.php:109 _site/index.php:100 _tmp/index.php:110 index.php:100
msgid ""
"If you want me to build the configuration for you, please remove file "
"config.user.json
at root and click below."
msgstr ""
-#: index.php:109
+#: _build/index.php:125 _site/index.php:116 _tmp/index.php:126 index.php:116
msgid "Action"
msgstr ""
-#: index.php:110
+#: _build/index.php:126 _site/index.php:117 _tmp/index.php:127 index.php:117
msgid "Add admin"
msgstr ""
-#: index.php:111
+#: _build/index.php:127 _site/index.php:118 _tmp/index.php:128 index.php:118
msgid "Add user"
msgstr ""
-#: index.php:112
+#: _build/index.php:128 _site/index.php:119 _tmp/index.php:129 index.php:119
msgid "All accesses granted"
msgstr ""
-#: index.php:113
+#: _build/index.php:129 _site/index.php:120 _tmp/index.php:130 index.php:120
msgid "Anonymous access has been successfully saved!"
msgstr ""
-#: index.php:114
+#: _build/index.php:130 _site/index.php:121 _tmp/index.php:131 index.php:121
msgid ""
"There is no log to display and your are connected... It seems that global "
"parameter AUTH_LOG_FILE_COUNT
is set to 0. Change this "
"parameter to a higher value to display logs."
msgstr ""
-#: index.php:115
+#: _build/index.php:131 _site/index.php:122 _tmp/index.php:132 index.php:122
msgid "Password changed"
msgstr ""
-#: index.php:116 index.php:155
+#: _build/index.php:132 _build/index.php:171 _site/index.php:123
+#: _site/index.php:162 _tmp/index.php:133 _tmp/index.php:172 index.php:123
+#: index.php:162
msgid "Created by"
msgstr ""
-#: index.php:117 index.php:156
+#: _build/index.php:133 _build/index.php:172 _site/index.php:124
+#: _site/index.php:163 _tmp/index.php:134 _tmp/index.php:173 index.php:124
+#: index.php:163
msgid "Created at"
msgstr ""
-#: index.php:118
+#: _build/index.php:134 _site/index.php:125 _tmp/index.php:135 index.php:125
msgid "Date"
msgstr ""
-#: index.php:119
+#: _build/index.php:135 _site/index.php:126 _tmp/index.php:136 index.php:126
msgid "Delete user"
msgstr ""
-#: index.php:120
+#: _build/index.php:136 _site/index.php:127 _tmp/index.php:137 index.php:127
msgid "1 log displayed,"
msgstr ""
-#: index.php:121
+#: _build/index.php:137 _site/index.php:128 _tmp/index.php:138 index.php:128
#, php-format
msgid "%s logs displayed,"
msgstr ""
-#: index.php:123 index.php:616
+#: _build/index.php:139 _build/index.php:303 _site/index.php:130
+#: _site/index.php:620 _tmp/index.php:140 _tmp/index.php:630 index.php:130
+#: index.php:620
msgid "Form is invalid:"
msgstr ""
-#: index.php:124
+#: _build/index.php:140 _site/index.php:131 _tmp/index.php:141 index.php:131
msgid "IP"
msgstr ""
-#: index.php:125 index.php:159
+#: _build/index.php:141 _build/index.php:175 _site/index.php:132
+#: _site/index.php:166 _tmp/index.php:142 _tmp/index.php:176 index.php:132
+#: index.php:166
msgid "Last login"
msgstr ""
-#: index.php:126
+#: _build/index.php:142 _site/index.php:133 _tmp/index.php:143 index.php:133
#, php-format
msgid "Still %s to load"
msgstr ""
-#: index.php:127 index.php:160
+#: _build/index.php:143 _build/index.php:176 _site/index.php:134
+#: _site/index.php:167 _tmp/index.php:144 _tmp/index.php:177 index.php:134
+#: index.php:167
msgid "Logins"
msgstr ""
-#: index.php:128
+#: _build/index.php:144 _site/index.php:135 _tmp/index.php:145 index.php:135
msgid "1 new log is available"
msgstr ""
-#: index.php:129
+#: _build/index.php:145 _site/index.php:136 _tmp/index.php:146 index.php:136
msgid "New logs are available"
msgstr ""
-#: index.php:130
+#: _build/index.php:146 _site/index.php:137 _tmp/index.php:147 index.php:137
#, php-format
msgid "%s new logs are available"
msgstr ""
-#: index.php:131
+#: _build/index.php:147 _site/index.php:138 _tmp/index.php:148 index.php:138
msgid "No log has been found."
msgstr ""
-#: index.php:132
+#: _build/index.php:148 _site/index.php:139 _tmp/index.php:149 index.php:139
msgid ""
"Notifications are denied for this site. Go to your browser preferences to "
"enable notifications for this site."
msgstr ""
-#: index.php:133
+#: _build/index.php:149 _site/index.php:140 _tmp/index.php:150 index.php:140
msgid "Your profile has been successfully saved!"
msgstr ""
-#: index.php:134 index.php:135
+#: _build/index.php:150 _build/index.php:151 _site/index.php:141
+#: _site/index.php:142 _tmp/index.php:151 _tmp/index.php:152 index.php:141
+#: index.php:142
msgid "Confirm"
msgstr ""
-#: index.php:136
+#: _build/index.php:152 _site/index.php:143 _tmp/index.php:153 index.php:143
msgid "Search was done with regular engine"
msgstr ""
-#: index.php:137
+#: _build/index.php:153 _site/index.php:144 _tmp/index.php:154 index.php:144
msgid "Search was done with RegEx engine"
msgstr ""
-#: index.php:138
+#: _build/index.php:154 _site/index.php:145 _tmp/index.php:155 index.php:145
msgid "Result copied!"
msgstr ""
-#: index.php:139 index.php:162 index.php:744
+#: _build/index.php:155 _build/index.php:178 _build/index.php:303
+#: _site/index.php:146 _site/index.php:169 _site/index.php:748
+#: _tmp/index.php:156 _tmp/index.php:179 _tmp/index.php:758 index.php:146
+#: index.php:169 index.php:748
msgid "Roles"
msgstr ""
-#: index.php:140
+#: _build/index.php:156 _site/index.php:147 _tmp/index.php:157 index.php:147
#, php-format
msgid "No log has been found with Reg Ex search %s"
msgstr ""
-#: index.php:141
+#: _build/index.php:157 _site/index.php:148 _tmp/index.php:158 index.php:148
#, php-format
msgid "No log has been found with regular search %s"
msgstr ""
-#: index.php:142 index.php:342
+#: _build/index.php:158 _build/index.php:274 _site/index.php:149
+#: _site/index.php:349 _tmp/index.php:159 _tmp/index.php:359 index.php:149
+#: index.php:349
msgid "Sign in"
msgstr ""
-#: index.php:143 index.php:145
+#: _build/index.php:159 _build/index.php:161 _site/index.php:150
+#: _site/index.php:152 _tmp/index.php:160 _tmp/index.php:162 index.php:150
+#: index.php:152
msgid "Sign in as"
msgstr ""
-#: index.php:144
+#: _build/index.php:160 _site/index.php:151 _tmp/index.php:161 index.php:151
msgid "Sign in error"
msgstr ""
-#: index.php:147
+#: _build/index.php:163 _site/index.php:154 _tmp/index.php:164 index.php:154
msgid "System"
msgstr ""
-#: index.php:148
+#: _build/index.php:164 _site/index.php:155 _tmp/index.php:165 index.php:155
#, php-format
msgid "Toggle column %s"
msgstr ""
-#: index.php:149
+#: _build/index.php:165 _site/index.php:156 _tmp/index.php:166 index.php:156
msgid "URL copied!"
msgstr ""
-#: index.php:150 index.php:748
+#: _build/index.php:166 _build/index.php:303 _site/index.php:157
+#: _site/index.php:752 _tmp/index.php:167 _tmp/index.php:762 index.php:157
+#: index.php:752
msgid "User"
msgstr ""
-#: index.php:151
+#: _build/index.php:167 _site/index.php:158 _tmp/index.php:168 index.php:158
msgid "User has been successfully saved!"
msgstr ""
-#: index.php:152
+#: _build/index.php:168 _site/index.php:159 _tmp/index.php:169 index.php:159
msgid "Last API call"
msgstr ""
-#: index.php:153
+#: _build/index.php:169 _site/index.php:160 _tmp/index.php:170 index.php:160
msgid "API calls"
msgstr ""
-#: index.php:157
+#: _build/index.php:173 _site/index.php:164 _tmp/index.php:174 index.php:164
msgid "User has been successfully deleted!"
msgstr ""
-#: index.php:161
+#: _build/index.php:177 _site/index.php:168 _tmp/index.php:178 index.php:168
msgid "Log access"
msgstr ""
-#: index.php:163
+#: _build/index.php:179 _site/index.php:170 _tmp/index.php:180 index.php:170
msgid "User agent"
msgstr ""
-#: index.php:164
+#: _build/index.php:180 _site/index.php:171 _tmp/index.php:181 index.php:171
msgid "User name"
msgstr ""
-#: index.php:165 index.php:683
+#: _build/index.php:181 _build/index.php:303 _site/index.php:172
+#: _site/index.php:687 _tmp/index.php:182 _tmp/index.php:697 index.php:172
+#: index.php:687
msgid "Users"
msgstr ""
-#: index.php:166
+#: _build/index.php:182 _site/index.php:173 _tmp/index.php:183 index.php:173
msgid "You need to sign in"
msgstr ""
-#: index.php:233
+#: _build/index.php:225 _site/index.php:240 _tmp/index.php:250 index.php:240
msgid "Reload the page with default parameters"
msgstr ""
-#: index.php:243
+#: _build/index.php:225 _site/index.php:250 _tmp/index.php:260 index.php:250
msgid "Click to refresh or press the R key"
msgstr ""
-#: index.php:256 index.php:307
+#: _build/index.php:225 _build/index.php:263 _site/index.php:263
+#: _site/index.php:314 _tmp/index.php:273 _tmp/index.php:324 index.php:263
+#: index.php:314
msgid "Select a log file to display"
msgstr ""
-#: index.php:268 index.php:279
+#: _build/index.php:234 _build/index.php:245 _site/index.php:275
+#: _site/index.php:286 _tmp/index.php:285 _tmp/index.php:296 index.php:275
+#: index.php:286
#, php-format
msgid "Log file #%s defined in %s"
msgstr ""
-#: index.php:268 index.php:279
+#: _build/index.php:234 _build/index.php:245 _site/index.php:275
+#: _site/index.php:286 _tmp/index.php:285 _tmp/index.php:296 index.php:275
+#: index.php:286
#, php-format
msgid "Log file #%s defined in main configuration file"
msgstr ""
-#: index.php:347
+#: _build/index.php:274 _site/index.php:354 _tmp/index.php:364 index.php:354
msgid "Search in logs"
msgstr ""
-#: index.php:351
+#: _build/index.php:274 _site/index.php:358 _tmp/index.php:368 index.php:358
msgid "Select a duration to check for new logs automatically"
msgstr ""
-#: index.php:352
+#: _build/index.php:274 _site/index.php:359 _tmp/index.php:369 index.php:359
msgid "No refresh"
msgstr ""
-#: index.php:355
+#: _build/index.php:276 _site/index.php:362 _tmp/index.php:372 index.php:362
#, php-format
msgid "Refresh %ss"
msgstr ""
-#: index.php:362
+#: _build/index.php:278 _site/index.php:369 _tmp/index.php:379 index.php:369
msgid "Max count of logs to display"
msgstr ""
-#: index.php:365
+#: _build/index.php:280 _site/index.php:372 _tmp/index.php:382 index.php:372
#, php-format
msgid "%s logs"
msgstr ""
-#: index.php:365
+#: _build/index.php:280 _site/index.php:372 _tmp/index.php:382 index.php:372
#, php-format
msgid "%s log"
msgstr ""
-#: index.php:372
+#: _build/index.php:282 _site/index.php:379 _tmp/index.php:389 index.php:379
msgid "Desktop notifications on supported modern browsers"
msgstr ""
-#: index.php:374
+#: _build/index.php:282 _site/index.php:381 _tmp/index.php:391 index.php:381
msgid "Notifications"
msgstr ""
-#: index.php:385 index.php:389
+#: _build/index.php:282 _site/index.php:392 _site/index.php:396
+#: _tmp/index.php:402 _tmp/index.php:406 index.php:392 index.php:396
msgid "Displayed columns"
msgstr ""
-#: index.php:397
+#: _build/index.php:282 _site/index.php:404 _tmp/index.php:414 index.php:404
msgid "Settings"
msgstr ""
-#: index.php:403
+#: _build/index.php:282 _site/index.php:410 _tmp/index.php:420 index.php:410
msgid "Wide view"
msgstr ""
-#: index.php:404
+#: _build/index.php:282 _site/index.php:411 _tmp/index.php:421 index.php:411
msgid "on"
msgstr ""
-#: index.php:405
+#: _build/index.php:282 _site/index.php:412 _tmp/index.php:422 index.php:412
msgid "off"
msgstr ""
-#: index.php:410
+#: _build/index.php:282 _site/index.php:417 _tmp/index.php:427 index.php:417
msgid "Click on a date field to mark a row"
msgstr ""
-#: index.php:411
+#: _build/index.php:282 _site/index.php:418 _tmp/index.php:428 index.php:418
msgid "Clear markers"
msgstr ""
-#: index.php:416
+#: _build/index.php:282 _site/index.php:423 _tmp/index.php:433 index.php:423
msgid "Language"
msgstr ""
-#: index.php:417
+#: _build/index.php:282 _site/index.php:425 _tmp/index.php:435 index.php:425
msgid "Change language..."
msgstr ""
-#: index.php:433
+#: _build/index.php:288 _site/index.php:434 _tmp/index.php:444 index.php:434
+msgid "Language cannot be changed"
+msgstr ""
+
+#: _build/index.php:288 _site/index.php:440 _tmp/index.php:450 index.php:440
msgid "Timezone"
msgstr ""
-#: index.php:434
+#: _build/index.php:288 _site/index.php:441 _tmp/index.php:451 index.php:441
msgid "Change timezone..."
msgstr ""
-#: index.php:454 index.php:619
+#: _build/index.php:294 _build/index.php:303 _site/index.php:458
+#: _site/index.php:623 _tmp/index.php:468 _tmp/index.php:633 index.php:458
+#: index.php:623
#, php-format
msgid "You are currently connected as %s"
msgstr ""
-#: index.php:456
+#: _build/index.php:294 _site/index.php:460 _tmp/index.php:470 index.php:460
msgid "User settings"
msgstr ""
-#: index.php:460
+#: _build/index.php:294 _site/index.php:464 _tmp/index.php:474 index.php:464
msgid "Click here to manager users"
msgstr ""
-#: index.php:460
+#: _build/index.php:294 _site/index.php:464 _tmp/index.php:474 index.php:464
msgid "Manage users"
msgstr ""
-#: index.php:462
+#: _build/index.php:294 _site/index.php:466 _tmp/index.php:476 index.php:466
msgid "Click here to view your profile"
msgstr ""
-#: index.php:462 index.php:659
+#: _build/index.php:294 _build/index.php:303 _site/index.php:466
+#: _site/index.php:663 _tmp/index.php:476 _tmp/index.php:673 index.php:466
+#: index.php:663
msgid "Profile"
msgstr ""
-#: index.php:463
+#: _build/index.php:294 _site/index.php:467 _tmp/index.php:477 index.php:467
msgid "Click here to change your password"
msgstr ""
-#: index.php:463 index.php:612
+#: _build/index.php:294 _build/index.php:303 _site/index.php:467
+#: _site/index.php:616 _tmp/index.php:477 _tmp/index.php:626 index.php:467
+#: index.php:616
msgid "Change password"
msgstr ""
-#: index.php:464
+#: _build/index.php:294 _site/index.php:468 _tmp/index.php:478 index.php:468
msgid "Click here to sign out"
msgstr ""
-#: index.php:490
+#: _build/index.php:297 _site/index.php:494 _tmp/index.php:504 index.php:494
#, php-format
msgid "Welcome in version %s"
msgstr ""
-#: index.php:495
+#: _build/index.php:302 _site/index.php:499 _tmp/index.php:509 index.php:499
#, php-format
msgid ""
"The changelog and all informations about this version are available on the "
"%sblog%s."
msgstr ""
-#: index.php:524 index.php:544
+#: _build/index.php:303 _site/index.php:528 _site/index.php:548
+#: _tmp/index.php:538 _tmp/index.php:558 index.php:528 index.php:548
msgid "No more data"
msgstr ""
-#: index.php:524 index.php:544
+#: _build/index.php:303 _site/index.php:528 _site/index.php:548
+#: _tmp/index.php:538 _tmp/index.php:558 index.php:528 index.php:548
msgid "Load more"
msgstr ""
-#: index.php:529 index.php:563
+#: _build/index.php:303 _site/index.php:533 _site/index.php:567
+#: _tmp/index.php:543 _tmp/index.php:577 index.php:533 index.php:567
msgid "Export"
msgstr ""
-#: index.php:531
+#: _build/index.php:303 _site/index.php:535 _tmp/index.php:545 index.php:535
msgid "ATOM"
msgstr ""
-#: index.php:532
+#: _build/index.php:303 _site/index.php:536 _tmp/index.php:546 index.php:536
msgid "CSV"
msgstr ""
-#: index.php:533
+#: _build/index.php:303 _site/index.php:537 _tmp/index.php:547 index.php:537
msgid "JSON"
msgstr ""
-#: index.php:534
+#: _build/index.php:303 _site/index.php:538 _tmp/index.php:548 index.php:538
msgid "JSONP (with callback)"
msgstr ""
-#: index.php:535
+#: _build/index.php:303 _site/index.php:539 _tmp/index.php:549 index.php:539
msgid "JSON Pretty Print"
msgstr ""
-#: index.php:536
+#: _build/index.php:303 _site/index.php:540 _tmp/index.php:550 index.php:540
msgid "RSS"
msgstr ""
-#: index.php:537
+#: _build/index.php:303 _site/index.php:541 _tmp/index.php:551 index.php:541
msgid "XML"
msgstr ""
-#: index.php:562 index.php:598 index.php:611 index.php:645 index.php:658
-#: index.php:666 index.php:681 index.php:697 index.php:805 index.php:814
+#: _build/index.php:303 _build/index.php:323 _site/index.php:566
+#: _site/index.php:602 _site/index.php:615 _site/index.php:649
+#: _site/index.php:662 _site/index.php:670 _site/index.php:685
+#: _site/index.php:701 _site/index.php:825 _site/index.php:834
+#: _tmp/index.php:576 _tmp/index.php:612 _tmp/index.php:625 _tmp/index.php:659
+#: _tmp/index.php:672 _tmp/index.php:680 _tmp/index.php:695 _tmp/index.php:711
+#: _tmp/index.php:835 _tmp/index.php:844 index.php:566 index.php:602
+#: index.php:615 index.php:649 index.php:662 index.php:670 index.php:685
+#: index.php:701 index.php:825 index.php:834
msgid "Close"
msgstr ""
-#: index.php:566
+#: _build/index.php:303 _site/index.php:570 _tmp/index.php:580 index.php:570
msgid "Webservice URL"
msgstr ""
-#: index.php:567
+#: _build/index.php:303 _site/index.php:571 _tmp/index.php:581 index.php:571
msgid ""
"Your URL seems to be local so it won't be reachable by external browsers and "
"services"
msgstr ""
-#: index.php:571
+#: _build/index.php:303 _site/index.php:575 _tmp/index.php:585 index.php:575
msgid "Open"
msgstr ""
-#: index.php:575
+#: _build/index.php:303 _site/index.php:579 _tmp/index.php:589 index.php:579
msgid "Feel free to change these parameters in the URL:"
msgstr ""
-#: index.php:577
+#: _build/index.php:303 _site/index.php:581 _tmp/index.php:591 index.php:581
msgid "language"
msgstr ""
-#: index.php:578
+#: _build/index.php:303 _site/index.php:582 _tmp/index.php:592 index.php:582
msgid "timezone to convert dates"
msgstr ""
-#: index.php:579
+#: _build/index.php:303 _site/index.php:583 _tmp/index.php:593 index.php:583
msgid "available formats are CSV, JSON, JSONPR and XML"
msgstr ""
-#: index.php:580
+#: _build/index.php:303 _site/index.php:584 _tmp/index.php:594 index.php:584
msgid "the maximum count of returned log lines"
msgstr ""
-#: index.php:581
+#: _build/index.php:303 _site/index.php:585 _tmp/index.php:595 index.php:585
msgid ""
"the timeout in seconds to return log lines. Increase this value for big "
"counts or when using search"
msgstr ""
-#: index.php:582
+#: _build/index.php:303 _site/index.php:586 _tmp/index.php:596 index.php:586
msgid ""
"search this value in log lines. It can be a regular expression or a regex one"
msgstr ""
-#: index.php:583
+#: _build/index.php:303 _site/index.php:587 _tmp/index.php:597 index.php:587
msgid ""
"this field is optional and is used to specify a callback function when "
"format is JSONP"
msgstr ""
-#: index.php:589
+#: _build/index.php:303 _site/index.php:593 _tmp/index.php:603 index.php:593
msgid "Current result"
msgstr ""
-#: index.php:593
+#: _build/index.php:303 _site/index.php:597 _tmp/index.php:607 index.php:597
msgid "Refresh"
msgstr ""
-#: index.php:625
+#: _build/index.php:303 _site/index.php:629 _tmp/index.php:639 index.php:629
msgid "Current password"
msgstr ""
-#: index.php:632
+#: _build/index.php:303 _site/index.php:636 _tmp/index.php:646 index.php:636
msgid "New password"
msgstr ""
-#: index.php:639
+#: _build/index.php:303 _site/index.php:643 _tmp/index.php:653 index.php:643
msgid "New password confirmation"
msgstr ""
-#: index.php:646 index.php:667 index.php:788 index.php:806
+#: _build/index.php:303 _build/index.php:323 _site/index.php:650
+#: _site/index.php:671 _site/index.php:811 _site/index.php:826
+#: _tmp/index.php:660 _tmp/index.php:681 _tmp/index.php:821 _tmp/index.php:836
+#: index.php:650 index.php:671 index.php:811 index.php:826
msgid "Saving..."
msgstr ""
-#: index.php:646 index.php:667 index.php:788 index.php:806
+#: _build/index.php:303 _build/index.php:323 _site/index.php:650
+#: _site/index.php:671 _site/index.php:811 _site/index.php:826
+#: _tmp/index.php:660 _tmp/index.php:681 _tmp/index.php:821 _tmp/index.php:836
+#: index.php:650 index.php:671 index.php:811 index.php:826
msgid "Save"
msgstr ""
-#: index.php:684
+#: _build/index.php:303 _site/index.php:688 _tmp/index.php:698 index.php:688
msgid "Anonymous access"
msgstr ""
-#: index.php:685
+#: _build/index.php:303 _site/index.php:689 _tmp/index.php:699 index.php:689
msgid "History"
msgstr ""
-#: index.php:706 index.php:786
+#: _build/index.php:303 _build/index.php:323 _site/index.php:710
+#: _site/index.php:809 _tmp/index.php:720 _tmp/index.php:819 index.php:710
+#: index.php:809
msgid "« Back"
msgstr ""
-#: index.php:707
+#: _build/index.php:303 _site/index.php:711 _tmp/index.php:721 index.php:711
msgid "Edit"
msgstr ""
-#: index.php:740
+#: _build/index.php:303 _site/index.php:744 _tmp/index.php:754 index.php:744
msgid "Leave password fields blank if you don't want to change it"
msgstr ""
-#: index.php:751
+#: _build/index.php:303 _site/index.php:755 _tmp/index.php:765 index.php:755
msgid "Admin"
msgstr ""
-#: index.php:760
+#: _build/index.php:303 _site/index.php:764 _tmp/index.php:774 index.php:764
msgid "Select which log files user can view"
msgstr ""
-#: index.php:787
+#: _build/index.php:323 _site/index.php:810 _tmp/index.php:820 index.php:810
msgid "Cancel"
msgstr ""
diff --git a/lang/pt_BR/LC_MESSAGES/messages.mo b/lang/pt_BR/LC_MESSAGES/messages.mo
index 528d570c..070b75e0 100644
Binary files a/lang/pt_BR/LC_MESSAGES/messages.mo and b/lang/pt_BR/LC_MESSAGES/messages.mo differ
diff --git a/lang/pt_BR/LC_MESSAGES/messages.po b/lang/pt_BR/LC_MESSAGES/messages.po
index 59eb4598..2c596640 100644
--- a/lang/pt_BR/LC_MESSAGES/messages.po
+++ b/lang/pt_BR/LC_MESSAGES/messages.po
@@ -4,8 +4,8 @@
msgid ""
msgstr ""
"Project-Id-Version: Pimp my Log\n"
-"POT-Creation-Date: 2014-11-24 11:53+0100\n"
-"PO-Revision-Date: 2014-11-24 11:53+0100\n"
+"POT-Creation-Date: 2014-11-27 17:41+0100\n"
+"PO-Revision-Date: 2014-11-27 17:41+0100\n"
"Last-Translator: Potsky \n"
"Language-Team: Português <>\n"
"Language: pt\n"
@@ -20,75 +20,96 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n!=1);\n"
"X-Poedit-SearchPath-0: .\n"
+#: _build/cfg/apache.config.php:15 _site/cfg/apache.config.php:5
#: cfg/apache.config.php:5
msgid "Apache"
msgstr "Apache"
+#: _build/cfg/apache.config.php:16 _site/cfg/apache.config.php:6
#: cfg/apache.config.php:6
msgid "Apache Hypertext Transfer Protocol Server"
msgstr "Apache Hypertext Transfer Protocol Server"
+#: _build/cfg/apache.config.php:17 _site/cfg/apache.config.php:7
#: cfg/apache.config.php:7
msgid "http://httpd.apache.org"
msgstr "http://httpd.apache.org"
+#: _build/cfg/apache.config.php:18 _site/cfg/apache.config.php:8
#: cfg/apache.config.php:8
msgid "All versions 2.x are supported."
msgstr "Todas as versões 2.x são suportadas."
+#: _build/cfg/iis.config.php:14 _site/cfg/iis.config.php:4
#: cfg/iis.config.php:4
msgid "IIS"
msgstr "IIS"
+#: _build/cfg/iis.config.php:15 _site/cfg/iis.config.php:5
#: cfg/iis.config.php:5
msgid "A flexible & easy-to-manage web server..."
msgstr "Um flexível e fácil de gerenciar servidor web..."
+#: _build/cfg/iis.config.php:16 _site/cfg/iis.config.php:6
#: cfg/iis.config.php:6
msgid "http://www.iis.net"
msgstr "http://www.iis.net"
+#: _build/cfg/iis.config.php:17 _site/cfg/iis.config.php:7
#: cfg/iis.config.php:7
msgid "NCSA, IIS and W3C log formats are supported"
msgstr "Formatos de log NCSA, IIS e W3C são suportados"
+#: _build/cfg/nginx.config.php:15 _site/cfg/nginx.config.php:5
#: cfg/nginx.config.php:5
msgid "NGINX"
msgstr "NGINX"
+#: _build/cfg/nginx.config.php:16 _site/cfg/nginx.config.php:6
#: cfg/nginx.config.php:6
msgid ""
"The high performance reverse proxy, load balancer, edge cache, origin server"
msgstr "Nginx é um servidor assíncrono"
+#: _build/cfg/nginx.config.php:17 _site/cfg/nginx.config.php:7
#: cfg/nginx.config.php:7
msgid "http://nginx.com"
msgstr "http://nginx.com"
+#: _build/cfg/nginx.config.php:18 _site/cfg/nginx.config.php:8
#: cfg/nginx.config.php:8
msgid "Default log formats are supported"
msgstr "Os formatos padrões de log são suportados"
+#: _build/cfg/php.config.php:16 _build/cfg/php.config.php:17
+#: _build/cfg/php.config.php:25 _build/cfg/php.config.php:26
+#: _site/cfg/php.config.php:6 _site/cfg/php.config.php:7
+#: _site/cfg/php.config.php:15 _site/cfg/php.config.php:16
#: cfg/php.config.php:6 cfg/php.config.php:7 cfg/php.config.php:15
#: cfg/php.config.php:16
msgid "PHP"
msgstr "PHP"
-#: cfg/php.config.php:8 cfg/php.config.php:17
+#: _build/cfg/php.config.php:18 _build/cfg/php.config.php:27
+#: _site/cfg/php.config.php:8 _site/cfg/php.config.php:17 cfg/php.config.php:8
+#: cfg/php.config.php:17
msgid "http://www.php.net/manual/errorfunc.configuration.php#ini.error-log"
msgstr "http://www.php.net/manual/errorfunc.configuration.php#ini.error-log"
+#: _build/cfg/php.config.php:19 _site/cfg/php.config.php:9
#: cfg/php.config.php:9
msgid "PHP logs defined via the error_log
ini parameter."
msgstr ""
"Os logs do PHP são definidos através do parâmetro error_log
do "
"arquivo php.ini."
+#: _build/cfg/php.config.php:20 _site/cfg/php.config.php:10
#: cfg/php.config.php:10
#, php-format
msgid "Pimp My Log has detected %s
on your server."
msgstr "Pimp My Log detectou %s
no seu servidor."
+#: _build/cfg/php.config.php:28 _site/cfg/php.config.php:18
#: cfg/php.config.php:18
msgid ""
"Pimp My Log has not detected any path in the ini parameter error_log"
@@ -97,6 +118,7 @@ msgstr ""
"Pimp My Log não detectou nenhum caminho no parâmetro error_log
"
"do arquivo php.ini."
+#: _build/cfg/php.config.php:29 _site/cfg/php.config.php:19
#: cfg/php.config.php:19
msgid ""
"Activate this software only if you use ini_set('error_log')
"
@@ -105,132 +127,231 @@ msgstr ""
"Ative este software apenas se você utilizar a diretiva "
"ini_set('error_log')
diretamente em seus scripts, por exemplo."
-#: inc/configure.php:45 inc/configure.php:85 inc/test.php:643
+#: _build/inc/configure.php:66 _build/inc/configure.php:106
+#: _build/inc/test.php:377 _site/inc/configure.php:57
+#: _site/inc/configure.php:97 _site/inc/test.php:643 _tmp/inc/configure.php:67
+#: _tmp/inc/configure.php:107 _tmp/inc/test.php:653 inc/configure.php:57
+#: inc/configure.php:97 inc/test.php:643
msgid "Setup admin account"
msgstr ""
-#: inc/configure.php:47
+#: _build/inc/configure.php:68 _site/inc/configure.php:59
+#: _tmp/inc/configure.php:69 inc/configure.php:59
msgid ""
"You can use Pimp my Log without authentication. You will be able to "
"add this feature later from the debugger web interface."
msgstr ""
-#: inc/configure.php:49
+#: _build/inc/configure.php:70 _site/inc/configure.php:61
+#: _tmp/inc/configure.php:71 inc/configure.php:61
msgid ""
"Setup an admin account will let you create other users later and give them "
"access to certain log files only."
msgstr ""
-#: inc/configure.php:51
+#: _build/inc/configure.php:72 _site/inc/configure.php:63
+#: _tmp/inc/configure.php:73 inc/configure.php:63
msgid "Do you want to create an admin account now?"
msgstr ""
-#: inc/configure.php:54
+#: _build/inc/configure.php:75 _site/inc/configure.php:66
+#: _tmp/inc/configure.php:76 inc/configure.php:66
msgid "Create an admin account"
msgstr ""
-#: inc/configure.php:56 inc/configure.php:478 inc/test.php:514
-#: inc/test.php:515 inc/test.php:547 inc/test.php:556 inc/users.pml.php:425
-#: index.php:772
+#: _build/inc/configure.php:77 _build/inc/configure.php:531
+#: _build/inc/test.php:317 _build/inc/test.php:318 _build/inc/test.php:335
+#: _build/inc/test.php:344 _build/inc/users.pml.php:458 _build/index.php:323
+#: _site/inc/configure.php:68 _site/inc/configure.php:522
+#: _site/inc/test.php:514 _site/inc/test.php:515 _site/inc/test.php:547
+#: _site/inc/test.php:556 _site/inc/users.pml.php:449 _site/index.php:797
+#: _tmp/inc/configure.php:78 _tmp/inc/configure.php:532 _tmp/inc/test.php:524
+#: _tmp/inc/test.php:525 _tmp/inc/test.php:557 _tmp/inc/test.php:566
+#: _tmp/inc/users.pml.php:459 _tmp/index.php:807 inc/configure.php:68
+#: inc/configure.php:522 inc/test.php:514 inc/test.php:515 inc/test.php:547
+#: inc/test.php:556 inc/users.pml.php:449 index.php:797
msgid "No"
msgstr "Não"
-#: inc/configure.php:72
+#: _build/inc/configure.php:93 _site/inc/configure.php:84
+#: _tmp/inc/configure.php:94 inc/configure.php:84
#, fuzzy, php-format
msgid "File %s
already exists!"
msgstr ""
"O arquivo %s
já existe. Por favor remova-o manualmente se você "
"quiser que eu crie este arquivo."
-#: inc/configure.php:74
+#: _build/inc/configure.php:95 _site/inc/configure.php:86
+#: _tmp/inc/configure.php:96 inc/configure.php:86
#, fuzzy
msgid "Please remove it from the root directory:"
msgstr "Favor fornecer permissão de escrita temporária ao diretório raiz:"
-#: inc/configure.php:77 inc/configure.php:127 inc/configure.php:163
-#: inc/configure.php:185 inc/test.php:172 inc/test.php:217 inc/test.php:295
+#: _build/inc/configure.php:98 _build/inc/configure.php:148
+#: _build/inc/configure.php:184 _build/inc/configure.php:206
+#: _build/inc/test.php:147 _build/inc/test.php:155 _build/inc/test.php:185
+#: _build/inc/test.php:377 _build/inc/upgrade.pml.php:292
+#: _build/inc/upgrade.pml.php:309 _build/inc/upgrade.pml.php:389
+#: _build/inc/users.pml.php:521 _build/inc/users.pml.php:535
+#: _build/index.php:303 _site/inc/configure.php:89 _site/inc/configure.php:139
+#: _site/inc/configure.php:175 _site/inc/configure.php:197
+#: _site/inc/test.php:172 _site/inc/test.php:217 _site/inc/test.php:295
+#: _site/inc/test.php:635 _site/inc/upgrade.pml.php:283
+#: _site/inc/upgrade.pml.php:300 _site/inc/upgrade.pml.php:380
+#: _site/inc/users.pml.php:512 _site/inc/users.pml.php:526 _site/index.php:574
+#: _site/index.php:596 _tmp/inc/configure.php:99 _tmp/inc/configure.php:149
+#: _tmp/inc/configure.php:185 _tmp/inc/configure.php:207 _tmp/inc/test.php:182
+#: _tmp/inc/test.php:227 _tmp/inc/test.php:305 _tmp/inc/test.php:645
+#: _tmp/inc/upgrade.pml.php:293 _tmp/inc/upgrade.pml.php:310
+#: _tmp/inc/upgrade.pml.php:390 _tmp/inc/users.pml.php:522
+#: _tmp/inc/users.pml.php:536 _tmp/index.php:584 _tmp/index.php:606
+#: inc/configure.php:89 inc/configure.php:139 inc/configure.php:175
+#: inc/configure.php:197 inc/test.php:172 inc/test.php:217 inc/test.php:295
#: inc/test.php:635 inc/upgrade.pml.php:283 inc/upgrade.pml.php:300
-#: inc/upgrade.pml.php:380 inc/users.pml.php:488 inc/users.pml.php:502
-#: index.php:567 index.php:589
+#: inc/upgrade.pml.php:380 inc/users.pml.php:512 inc/users.pml.php:526
+#: index.php:574 index.php:596
msgid "Copy to clipboard"
msgstr "Copiar para a área de trabalho"
-#: inc/configure.php:77 inc/configure.php:127 inc/configure.php:163
-#: inc/configure.php:185 inc/upgrade.pml.php:289 inc/upgrade.pml.php:306
-#: inc/upgrade.pml.php:386
+#: _build/inc/configure.php:98 _build/inc/configure.php:148
+#: _build/inc/configure.php:184 _build/inc/configure.php:206
+#: _build/inc/upgrade.pml.php:298 _build/inc/upgrade.pml.php:315
+#: _build/inc/upgrade.pml.php:395 _site/inc/configure.php:89
+#: _site/inc/configure.php:139 _site/inc/configure.php:175
+#: _site/inc/configure.php:197 _site/inc/upgrade.pml.php:289
+#: _site/inc/upgrade.pml.php:306 _site/inc/upgrade.pml.php:386
+#: _tmp/inc/configure.php:99 _tmp/inc/configure.php:149
+#: _tmp/inc/configure.php:185 _tmp/inc/configure.php:207
+#: _tmp/inc/upgrade.pml.php:299 _tmp/inc/upgrade.pml.php:316
+#: _tmp/inc/upgrade.pml.php:396 inc/configure.php:89 inc/configure.php:139
+#: inc/configure.php:175 inc/configure.php:197 inc/upgrade.pml.php:289
+#: inc/upgrade.pml.php:306 inc/upgrade.pml.php:386
msgid "Command copied!"
msgstr "Comando copiado!"
-#: inc/configure.php:87
+#: _build/inc/configure.php:108 _site/inc/configure.php:99
+#: _tmp/inc/configure.php:109 inc/configure.php:99
msgid "Please choose a username and a password for the admin account."
msgstr ""
-#: inc/configure.php:92 inc/test.php:648 inc/test.php:713
+#: _build/inc/configure.php:113 _build/inc/test.php:377
+#: _build/inc/test.php:394 _build/inc/users.pml.php:266
+#: _site/inc/configure.php:104 _site/inc/test.php:648 _site/inc/test.php:713
+#: _site/inc/users.pml.php:257 _tmp/inc/configure.php:114
+#: _tmp/inc/test.php:658 _tmp/inc/test.php:723 _tmp/inc/users.pml.php:267
+#: inc/configure.php:104 inc/test.php:648 inc/test.php:713
#: inc/users.pml.php:257
msgid "Username is required"
msgstr ""
-#: inc/configure.php:94 inc/login.inc.php:76 inc/login.inc.php:78
-#: inc/test.php:651 inc/test.php:716 index.php:713 index.php:717
+#: _build/inc/configure.php:115 _build/inc/login.inc.php:44
+#: _build/inc/login.inc.php:46 _build/inc/test.php:377 _build/inc/test.php:394
+#: _build/index.php:303 _site/inc/configure.php:106 _site/inc/login.inc.php:76
+#: _site/inc/login.inc.php:78 _site/inc/test.php:651 _site/inc/test.php:716
+#: _site/index.php:720 _site/index.php:724 _tmp/inc/configure.php:116
+#: _tmp/inc/login.inc.php:86 _tmp/inc/login.inc.php:88 _tmp/inc/test.php:661
+#: _tmp/inc/test.php:726 _tmp/index.php:730 _tmp/index.php:734
+#: inc/configure.php:106 inc/login.inc.php:76 inc/login.inc.php:78
+#: inc/test.php:651 inc/test.php:716 index.php:720 index.php:724
msgid "Username"
msgstr ""
-#: inc/configure.php:99 inc/test.php:614 inc/test.php:657 inc/test.php:700
+#: _build/inc/configure.php:120 _build/inc/test.php:369
+#: _build/inc/test.php:377 _build/inc/test.php:386 _build/inc/test.php:394
+#: _build/inc/users.pml.php:118 _build/inc/users.pml.php:274
+#: _site/inc/configure.php:111 _site/inc/test.php:614 _site/inc/test.php:657
+#: _site/inc/test.php:700 _site/inc/test.php:722 _site/inc/users.pml.php:109
+#: _site/inc/users.pml.php:265 _tmp/inc/configure.php:121
+#: _tmp/inc/test.php:624 _tmp/inc/test.php:667 _tmp/inc/test.php:710
+#: _tmp/inc/test.php:732 _tmp/inc/users.pml.php:119 _tmp/inc/users.pml.php:275
+#: inc/configure.php:111 inc/test.php:614 inc/test.php:657 inc/test.php:700
#: inc/test.php:722 inc/users.pml.php:109 inc/users.pml.php:265
msgid "Password must contain at least 6 chars"
msgstr ""
-#: inc/configure.php:101 inc/login.inc.php:89 inc/login.inc.php:91
-#: inc/test.php:660 inc/test.php:725 index.php:722 index.php:726
+#: _build/inc/configure.php:122 _build/inc/login.inc.php:50
+#: _build/inc/login.inc.php:52 _build/inc/test.php:377 _build/inc/test.php:394
+#: _build/index.php:303 _site/inc/configure.php:113 _site/inc/login.inc.php:89
+#: _site/inc/login.inc.php:91 _site/inc/test.php:660 _site/inc/test.php:725
+#: _site/index.php:729 _site/index.php:733 _tmp/inc/configure.php:123
+#: _tmp/inc/login.inc.php:99 _tmp/inc/login.inc.php:101 _tmp/inc/test.php:670
+#: _tmp/inc/test.php:735 _tmp/index.php:739 _tmp/index.php:743
+#: inc/configure.php:113 inc/login.inc.php:89 inc/login.inc.php:91
+#: inc/test.php:660 inc/test.php:725 index.php:729 index.php:733
msgid "Password"
msgstr ""
-#: inc/configure.php:106 inc/test.php:666 inc/test.php:731
+#: _build/inc/configure.php:127 _build/inc/test.php:377
+#: _build/inc/test.php:394 _site/inc/configure.php:118 _site/inc/test.php:666
+#: _site/inc/test.php:731 _tmp/inc/configure.php:128 _tmp/inc/test.php:676
+#: _tmp/inc/test.php:741 inc/configure.php:118 inc/test.php:666
+#: inc/test.php:731
msgid "Password is not the same"
msgstr ""
-#: inc/configure.php:108 inc/test.php:669 inc/test.php:734 index.php:731
-#: index.php:735
+#: _build/inc/configure.php:129 _build/inc/test.php:377
+#: _build/inc/test.php:394 _build/index.php:303 _site/inc/configure.php:120
+#: _site/inc/test.php:669 _site/inc/test.php:734 _site/index.php:738
+#: _site/index.php:742 _tmp/inc/configure.php:130 _tmp/inc/test.php:679
+#: _tmp/inc/test.php:744 _tmp/index.php:748 _tmp/index.php:752
+#: inc/configure.php:120 inc/test.php:669 inc/test.php:734 index.php:738
+#: index.php:742
msgid "Password Confirmation"
msgstr ""
-#: inc/configure.php:113 inc/configure.php:540
+#: _build/inc/configure.php:134 _build/inc/configure.php:556
+#: _site/inc/configure.php:125 _site/inc/configure.php:592
+#: _tmp/inc/configure.php:135 _tmp/inc/configure.php:602 inc/configure.php:125
+#: inc/configure.php:592
msgid "Continue"
msgstr "Continuar"
-#: inc/configure.php:122 inc/configure.php:180
+#: _build/inc/configure.php:143 _build/inc/configure.php:201
+#: _site/inc/configure.php:134 _site/inc/configure.php:192
+#: _tmp/inc/configure.php:144 _tmp/inc/configure.php:202 inc/configure.php:134
+#: inc/configure.php:192
#, php-format
msgid "Unable to create file %s
"
msgstr "Não foi possível criar o arquivo %s
"
-#: inc/configure.php:124 inc/configure.php:182
+#: _build/inc/configure.php:145 _build/inc/configure.php:203
+#: _site/inc/configure.php:136 _site/inc/configure.php:194
+#: _tmp/inc/configure.php:146 _tmp/inc/configure.php:204 inc/configure.php:136
+#: inc/configure.php:194
msgid "Please give temporary write access to the root directory:"
msgstr "Favor fornecer permissão de escrita temporária ao diretório raiz:"
-#: inc/configure.php:159
+#: _build/inc/configure.php:180 _site/inc/configure.php:171
+#: _tmp/inc/configure.php:181 inc/configure.php:171
#, fuzzy
msgid "Please remove it manually if you want me to create it:"
msgstr ""
"O arquivo %s
já existe. Por favor remova-o manualmente se você "
"quiser que eu crie este arquivo."
-#: inc/configure.php:165
+#: _build/inc/configure.php:186 _site/inc/configure.php:177
+#: _tmp/inc/configure.php:187 inc/configure.php:177
#, fuzzy, php-format
msgid "File %s
already exists."
msgstr ""
"O arquivo %s
já existe. Por favor remova-o manualmente se você "
"quiser que eu crie este arquivo."
-#: inc/configure.php:199
+#: _build/inc/configure.php:220 _site/inc/configure.php:211
+#: _tmp/inc/configure.php:221 inc/configure.php:211
msgid "Choose softwares to search log files for"
msgstr "Escolha os softwares para procurar por arquivos de log"
-#: inc/configure.php:221
+#: _build/inc/configure.php:242 _site/inc/configure.php:233
+#: _tmp/inc/configure.php:243 inc/configure.php:233
#, php-format
msgid "Software %s"
msgstr "Software %s"
-#: inc/configure.php:231 inc/configure.php:415
+#: _build/inc/configure.php:252 _build/inc/configure.php:442
+#: _site/inc/configure.php:243 _site/inc/configure.php:433
+#: _tmp/inc/configure.php:253 _tmp/inc/configure.php:443 inc/configure.php:243
+#: inc/configure.php:433
#, php-format
msgid ""
"Files %s
or %s
do not exist. Please review your "
@@ -239,11 +360,13 @@ msgstr ""
"Arquivos %s
ou %s
não existem. Favor verificar as "
"configurações do seu software."
-#: inc/configure.php:284
+#: _build/inc/configure.php:311 _site/inc/configure.php:302
+#: _tmp/inc/configure.php:312 inc/configure.php:302
msgid "Unable to find any directory."
msgstr "Não é possível localizar qualquer diretório."
-#: inc/configure.php:285
+#: _build/inc/configure.php:312 _site/inc/configure.php:303
+#: _tmp/inc/configure.php:313 inc/configure.php:303
msgid ""
"Check in the following list if these directories are readable by the "
"webserver user and refresh this page"
@@ -251,13 +374,15 @@ msgstr ""
"Verifique na lista a seguir se estes diretórios possuem permissão de leitura "
"pelo usuário do servidor web e recarregue esta página"
-#: inc/configure.php:288
+#: _build/inc/configure.php:315 _site/inc/configure.php:306
+#: _tmp/inc/configure.php:316 inc/configure.php:306
msgid "Directories are available but unable to find files inside."
msgstr ""
"Diretórios estão disponíveis mas não é possível procurar por arquivos dentro "
"deles."
-#: inc/configure.php:289
+#: _build/inc/configure.php:316 _site/inc/configure.php:307
+#: _tmp/inc/configure.php:317 inc/configure.php:307
msgid ""
"Check in the following list if these directories contain readable files by "
"the webserver user and refresh this page."
@@ -265,7 +390,8 @@ msgstr ""
"Verifique na lista a seguir se estes diretórios possuem arquivos com "
"permissão de leitura pelo usuário do servidor web e recarregue esta página."
-#: inc/configure.php:290
+#: _build/inc/configure.php:317 _site/inc/configure.php:308
+#: _tmp/inc/configure.php:318 inc/configure.php:308
msgid ""
"Don't forget that to read a file, ALL parent directories have to be "
"accessible too!"
@@ -273,20 +399,24 @@ msgstr ""
"Não se esqueça que para ler um arquivo, TODOS os diretórios pais precisam "
"estar acessíveis também!"
-#: inc/configure.php:300
+#: _build/inc/configure.php:327 _site/inc/configure.php:318
+#: _tmp/inc/configure.php:328 inc/configure.php:318
#, php-format
msgid "These files have been checked in all paths: %s "
msgstr "Estes arquivos foram verificados em todos os caminhos: %s."
-#: inc/configure.php:303
+#: _build/inc/configure.php:330 _site/inc/configure.php:321
+#: _tmp/inc/configure.php:331 inc/configure.php:321
msgid "Log files have been found!"
msgstr "Arquivos de log foram encontrados!"
-#: inc/configure.php:304
+#: _build/inc/configure.php:331 _site/inc/configure.php:322
+#: _tmp/inc/configure.php:332 inc/configure.php:322
msgid "Check in the following list which files you want to configure."
msgstr ""
-#: inc/configure.php:306
+#: _build/inc/configure.php:333 _site/inc/configure.php:324
+#: _tmp/inc/configure.php:334 inc/configure.php:324
#, fuzzy
msgid ""
"If files or directories are missing, verify that they are readable by the "
@@ -296,35 +426,52 @@ msgstr ""
"arquivos ou diretórios estiverem faltando, verifique se eles estão com "
"permissão de escrita pelo usuário do servidor web"
-#: inc/configure.php:311 inc/configure.php:362
+#: _build/inc/configure.php:338 _build/inc/configure.php:389
+#: _site/inc/configure.php:329 _site/inc/configure.php:380
+#: _tmp/inc/configure.php:339 _tmp/inc/configure.php:390 inc/configure.php:329
+#: inc/configure.php:380
msgid "unable to detect web server user"
msgstr "não é possível detectar o usuário do servidor web"
-#: inc/configure.php:312 inc/configure.php:363
+#: _build/inc/configure.php:339 _build/inc/configure.php:390
+#: _site/inc/configure.php:330 _site/inc/configure.php:381
+#: _tmp/inc/configure.php:340 _tmp/inc/configure.php:391 inc/configure.php:330
+#: inc/configure.php:381
#, php-format
msgid "web server user seems to be %s
"
msgstr "o usuário do servidor web parece ser %s
"
-#: inc/configure.php:316
+#: _build/inc/configure.php:343 _site/inc/configure.php:334
+#: _tmp/inc/configure.php:344 inc/configure.php:334
msgid ""
"You can also type log files path in the text area below separated by coma:"
msgstr ""
"Você também pode digitar caminhos para os arquios de log na caixa de texto "
"abaixo (separe por vírgula):"
-#: inc/configure.php:318 inc/configure.php:477
+#: _build/inc/configure.php:345 _build/inc/configure.php:530
+#: _site/inc/configure.php:336 _site/inc/configure.php:521
+#: _tmp/inc/configure.php:346 _tmp/inc/configure.php:531 inc/configure.php:336
+#: inc/configure.php:521
msgid "Type"
msgstr "Tipo"
-#: inc/configure.php:318
+#: _build/inc/configure.php:345 _site/inc/configure.php:336
+#: _tmp/inc/configure.php:346 inc/configure.php:336
msgid "Custom paths"
msgstr "Caminhos personalizados"
-#: inc/configure.php:340 inc/configure.php:387 inc/configure.php:391
+#: _build/inc/configure.php:367 _build/inc/configure.php:414
+#: _build/inc/configure.php:418 _site/inc/configure.php:358
+#: _site/inc/configure.php:405 _site/inc/configure.php:409
+#: _tmp/inc/configure.php:368 _tmp/inc/configure.php:415
+#: _tmp/inc/configure.php:419 inc/configure.php:358 inc/configure.php:405
+#: inc/configure.php:409
msgid "Unknown error"
msgstr "Erro desconhecido"
-#: inc/configure.php:359
+#: _build/inc/configure.php:386 _site/inc/configure.php:377
+#: _tmp/inc/configure.php:387 inc/configure.php:377
msgid ""
"Custom files below are not readable, please remove them or verify that they "
"are readable by the webserver user"
@@ -333,7 +480,8 @@ msgstr ""
"removê-los ou verificar se eles possuem permissão de leitura pelo usuário do "
"servidor web"
-#: inc/configure.php:423
+#: _build/inc/configure.php:450 _site/inc/configure.php:441
+#: _tmp/inc/configure.php:451 inc/configure.php:441
#, php-format
msgid ""
"File %s
does not define function %s
. Please review "
@@ -342,93 +490,151 @@ msgstr ""
"O arquivo %s
não define a função %s
. Favor "
"verificar as configurações do seu software."
-#: inc/configure.php:436
+#: _build/inc/configure.php:463 _site/inc/configure.php:454
+#: _tmp/inc/configure.php:464 inc/configure.php:454
msgid "No configuration found for softwares!"
msgstr "Nenhuma configuração encontrada para os softwares!"
-#: inc/configure.php:448
+#: _build/inc/configure.php:475 _site/inc/configure.php:466
+#: _tmp/inc/configure.php:476 inc/configure.php:466
msgid "Unknown action, abort."
msgstr "Ação desconhecida, abortar."
-#: inc/configure.php:470
+#: _build/inc/configure.php:482 _build/inc/configure.php:486
+#: _build/inc/configure.php:505 _build/inc/configure.php:538
+#: _site/inc/configure.php:473 _site/inc/configure.php:477
+#: _site/inc/configure.php:496 _site/inc/configure.php:529
+#: _tmp/inc/configure.php:483 _tmp/inc/configure.php:487
+#: _tmp/inc/configure.php:506 _tmp/inc/configure.php:539 inc/configure.php:473
+#: inc/configure.php:477 inc/configure.php:496 inc/configure.php:529
+#, php-format
+msgid "You should take a look on this %spage%s."
+msgstr ""
+
+#: _build/inc/configure.php:505 _site/inc/configure.php:496
+#: _tmp/inc/configure.php:506 inc/configure.php:496
+msgid "Your PHP installation is not correctly configured to run Pimp My Log."
+msgstr ""
+
+#: _build/inc/configure.php:523 _site/inc/configure.php:514
+#: _tmp/inc/configure.php:524 inc/configure.php:514
msgid "%s% Complete"
msgstr "%s% Completo"
-#: inc/configure.php:471 index.php:122
+#: _build/inc/configure.php:524 _build/index.php:138
+#: _site/inc/configure.php:515 _site/index.php:129 _tmp/inc/configure.php:525
+#: _tmp/index.php:139 inc/configure.php:515 index.php:129
msgid "An error occurs!"
msgstr "Um erro ocorreu!"
-#: inc/configure.php:472
+#: _build/inc/configure.php:525 _site/inc/configure.php:516
+#: _tmp/inc/configure.php:526 inc/configure.php:516
msgid "Please wait..."
msgstr "Aguarde..."
-#: inc/configure.php:473
+#: _build/inc/configure.php:526 _site/inc/configure.php:517
+#: _tmp/inc/configure.php:527 inc/configure.php:517
msgid "Software"
msgstr "Software"
-#: inc/configure.php:474 inc/test.php:510
+#: _build/inc/configure.php:527 _build/inc/test.php:313
+#: _site/inc/configure.php:518 _site/inc/test.php:510
+#: _tmp/inc/configure.php:528 _tmp/inc/test.php:520 inc/configure.php:518
+#: inc/test.php:510
msgid "Path"
msgstr "Caminho"
-#: inc/configure.php:475
+#: _build/inc/configure.php:528 _site/inc/configure.php:519
+#: _tmp/inc/configure.php:529 inc/configure.php:519
msgid "File"
msgstr "Arquivo"
-#: inc/configure.php:476
+#: _build/inc/configure.php:529 _site/inc/configure.php:520
+#: _tmp/inc/configure.php:530 inc/configure.php:520
msgid "Readable"
msgstr "Com permissão de leitura"
-#: inc/configure.php:479 inc/test.php:514 inc/test.php:515 inc/test.php:545
-#: inc/test.php:554 inc/users.pml.php:422 index.php:769
+#: _build/inc/configure.php:532 _build/inc/test.php:317
+#: _build/inc/test.php:318 _build/inc/test.php:333 _build/inc/test.php:342
+#: _build/inc/users.pml.php:455 _build/index.php:323
+#: _site/inc/configure.php:523 _site/inc/test.php:514 _site/inc/test.php:515
+#: _site/inc/test.php:545 _site/inc/test.php:554 _site/inc/users.pml.php:446
+#: _site/index.php:794 _tmp/inc/configure.php:533 _tmp/inc/test.php:524
+#: _tmp/inc/test.php:525 _tmp/inc/test.php:555 _tmp/inc/test.php:564
+#: _tmp/inc/users.pml.php:456 _tmp/index.php:804 inc/configure.php:523
+#: inc/test.php:514 inc/test.php:515 inc/test.php:545 inc/test.php:554
+#: inc/users.pml.php:446 index.php:794
msgid "Yes"
msgstr "Sim"
-#: inc/configure.php:480
+#: _build/inc/configure.php:533 _site/inc/configure.php:524
+#: _tmp/inc/configure.php:534 inc/configure.php:524
msgid "Name"
msgstr "Nome"
-#: inc/configure.php:481
+#: _build/inc/configure.php:534 _site/inc/configure.php:525
+#: _tmp/inc/configure.php:535 inc/configure.php:525
msgid "Description"
msgstr "Descrição"
-#: inc/configure.php:482
+#: _build/inc/configure.php:535 _site/inc/configure.php:526
+#: _tmp/inc/configure.php:536 inc/configure.php:526
msgid "Notes"
msgstr "Observações"
-#: inc/configure.php:483
+#: _build/inc/configure.php:536 _site/inc/configure.php:527
+#: _tmp/inc/configure.php:537 inc/configure.php:527
msgid "You have to select at least one software to configure!"
msgstr "Você tem que selecionar ao menos um software para configurar!"
-#: inc/configure.php:484
+#: _build/inc/configure.php:537 _site/inc/configure.php:528
+#: _tmp/inc/configure.php:538 inc/configure.php:528
msgid ""
"You have to select at least one log file or type the path of a log file!"
msgstr ""
"Você deve selecionar ao menos um arquivo de log ou digitar o caminho de um "
"arquivo de log! "
-#: inc/configure.php:521
+#: _build/inc/configure.php:550 _site/inc/configure.php:566
+#: _tmp/inc/configure.php:576 inc/configure.php:566
msgid "Configurator"
msgstr "Configurador"
-#: inc/configure.php:542 inc/test.php:175
+#: _build/inc/configure.php:553 _build/index.php:50
+#: _site/inc/configure.php:584 _site/index.php:41 _tmp/inc/configure.php:594
+#: _tmp/index.php:51 inc/configure.php:584 index.php:41
+#, php-format
+msgid ""
+"Suhosin extension is loaded, according to its configuration, Pimp My Log "
+"could not run normally... More information %shere%s."
+msgstr ""
+
+#: _build/inc/configure.php:556 _build/inc/test.php:150
+#: _site/inc/configure.php:594 _site/inc/test.php:175
+#: _tmp/inc/configure.php:604 _tmp/inc/test.php:185 inc/configure.php:594
+#: inc/test.php:175
msgid "Reload"
msgstr "Recarregar"
-#: inc/configure.php:548
+#: _build/inc/configure.php:556 _site/inc/configure.php:600
+#: _tmp/inc/configure.php:610 inc/configure.php:600
msgid "Congratulations!"
msgstr "Parabéns!"
-#: inc/configure.php:552
+#: _build/inc/configure.php:558 _site/inc/configure.php:604
+#: _tmp/inc/configure.php:614 inc/configure.php:604
msgid "Your Pimp my Log instance is ready to use."
msgstr "Sua instância do Pimp my Log está pronta para uso."
-#: inc/configure.php:555
+#: _build/inc/configure.php:561 _site/inc/configure.php:607
+#: _tmp/inc/configure.php:617 inc/configure.php:607
#, php-format
msgid "You can manually adjust settings in the %s
file."
msgstr ""
"Você pode ajustar manualmente as configurações no arquivo %s
."
-#: inc/configure.php:557
+#: _build/inc/configure.php:563 _site/inc/configure.php:609
+#: _tmp/inc/configure.php:619 inc/configure.php:609
msgid ""
"Please visit pimpmylog.com for more "
"informations."
@@ -436,16 +642,24 @@ msgstr ""
"Favor visitar pimpmylog.com para mais "
"informações."
-#: inc/configure.php:560
+#: _build/inc/configure.php:566 _site/inc/configure.php:612
+#: _tmp/inc/configure.php:622 inc/configure.php:612
msgid "Pimp my Logs now!"
msgstr "Pimp my Logs agora!"
+#: _build/inc/getlog.pml.php:112 _build/inc/rss.pml.php:74
+#: _build/inc/upgrade.pml.php:26 _build/inc/users.pml.php:83
+#: _site/inc/getlog.pml.php:103 _site/inc/rss.pml.php:65
+#: _site/inc/upgrade.pml.php:17 _site/inc/users.pml.php:74
+#: _tmp/inc/getlog.pml.php:113 _tmp/inc/rss.pml.php:75
+#: _tmp/inc/upgrade.pml.php:27 _tmp/inc/users.pml.php:84
#: inc/getlog.pml.php:103 inc/rss.pml.php:65 inc/upgrade.pml.php:17
#: inc/users.pml.php:74
msgid "Please refresh the page."
msgstr "Favor atualizar a página."
-#: inc/getlog.pml.php:109
+#: _build/inc/getlog.pml.php:118 _site/inc/getlog.pml.php:109
+#: _tmp/inc/getlog.pml.php:119 inc/getlog.pml.php:109
#, php-format
msgid ""
"File ID %s
does not exist, please review your configuration "
@@ -454,7 +668,8 @@ msgstr ""
"O arquivo de ID %s
não existe. Favor reveja o seu arquivo de "
"configuração e pare de brincar!"
-#: inc/getlog.pml.php:116
+#: _build/inc/getlog.pml.php:125 _site/inc/getlog.pml.php:116
+#: _tmp/inc/getlog.pml.php:126 inc/getlog.pml.php:116
#, php-format
msgid ""
"File %s
for file ID %s
does not exist, please "
@@ -463,20 +678,23 @@ msgstr ""
"O arquivo %s
para o arquivo de ID %s
não exite. "
"Favor reveja o seu arquivo de configuração."
-#: inc/getlog.pml.php:123
+#: _build/inc/getlog.pml.php:132 _site/inc/getlog.pml.php:123
+#: _tmp/inc/getlog.pml.php:133 inc/getlog.pml.php:123
msgid ""
"Configuration file has changed and is buggy now. Please refresh the page."
msgstr ""
"O arquivo de configuração foi modificado e agora está bugado. Favor "
"recarregar a página."
-#: inc/getlog.pml.php:183
+#: _build/inc/getlog.pml.php:192 _site/inc/getlog.pml.php:183
+#: _tmp/inc/getlog.pml.php:193 inc/getlog.pml.php:183
#, php-format
msgid "Log file has been rotated (previous size was %s and new one is %s)"
msgstr ""
"O arquivo de log foi rotacionado (o tamanho anterior era %s e o novo é %s)"
-#: inc/getlog.pml.php:207
+#: _build/inc/getlog.pml.php:216 _site/inc/getlog.pml.php:207
+#: _tmp/inc/getlog.pml.php:217 inc/getlog.pml.php:207
#, php-format
msgid ""
"File %s
for file ID %s
does not exist anymore..."
@@ -484,16 +702,19 @@ msgstr ""
"O arquivo %s
para o arquivo de ID %s
não existe "
"mais..."
-#: inc/getlog.pml.php:211
+#: _build/inc/getlog.pml.php:220 _site/inc/getlog.pml.php:211
+#: _tmp/inc/getlog.pml.php:221 inc/getlog.pml.php:211
#, fuzzy, php-format
msgid "Unknown error %s"
msgstr "PHP Unknown error [%s] %s"
-#: inc/getlog.pml.php:229
+#: _build/inc/getlog.pml.php:238 _site/inc/getlog.pml.php:229
+#: _tmp/inc/getlog.pml.php:239 inc/getlog.pml.php:229
msgid "Log file has been rotated"
msgstr "O arquivo de logs foi rotacionado"
-#: inc/getlog.pml.php:263
+#: _build/inc/getlog.pml.php:272 _site/inc/getlog.pml.php:263
+#: _tmp/inc/getlog.pml.php:273 inc/getlog.pml.php:263
#, php-format
msgid ""
"%s in %sms
with %s
of logs, %s
"
@@ -506,341 +727,438 @@ msgstr ""
"%s
foi modificado pela última vez em %s
no fuso "
"horário %s
, o tamanho é %s
%s"
-#: inc/getlog.pml.php:267
+#: _build/inc/getlog.pml.php:276 _site/inc/getlog.pml.php:267
+#: _tmp/inc/getlog.pml.php:277 inc/getlog.pml.php:267
#, php-format
msgid "%s new logs found"
msgstr "%s novos logs encontrados"
-#: inc/getlog.pml.php:270
+#: _build/inc/getlog.pml.php:279 _site/inc/getlog.pml.php:270
+#: _tmp/inc/getlog.pml.php:280 inc/getlog.pml.php:270
msgid "no new log found"
msgstr "nenhum novo log encontrado"
-#: inc/getlog.pml.php:271
+#: _build/inc/getlog.pml.php:280 _site/inc/getlog.pml.php:271
+#: _tmp/inc/getlog.pml.php:281 inc/getlog.pml.php:271
msgid "1 new log found"
msgstr "1 novo log encontrado"
-#: inc/getlog.pml.php:276
+#: _build/inc/getlog.pml.php:285 _site/inc/getlog.pml.php:276
+#: _tmp/inc/getlog.pml.php:286 inc/getlog.pml.php:276
#, fuzzy, php-format
msgid "%s old logs found"
msgstr "%s novos logs encontrados"
-#: inc/getlog.pml.php:279
+#: _build/inc/getlog.pml.php:288 _site/inc/getlog.pml.php:279
+#: _tmp/inc/getlog.pml.php:289 inc/getlog.pml.php:279
#, fuzzy
msgid "no old log found"
msgstr "nenhum novo log encontrado"
-#: inc/getlog.pml.php:280
+#: _build/inc/getlog.pml.php:289 _site/inc/getlog.pml.php:280
+#: _tmp/inc/getlog.pml.php:290 inc/getlog.pml.php:280
#, fuzzy
msgid "1 olg log found"
msgstr "1 novo log encontrado"
-#: inc/getlog.pml.php:292
+#: _build/inc/getlog.pml.php:301 _site/inc/getlog.pml.php:292
+#: _tmp/inc/getlog.pml.php:302 inc/getlog.pml.php:292
#, php-format
msgid "log type is %s
"
msgstr "o tipo do log é %s
"
-#: inc/global.inc.php:545 inc/global.inc.php:553
+#: _build/inc/global.inc.php:599 _build/inc/global.inc.php:607
+#: _site/inc/global.inc.php:590 _site/inc/global.inc.php:598
+#: _tmp/inc/global.inc.php:600 _tmp/inc/global.inc.php:608
+#: inc/global.inc.php:590 inc/global.inc.php:598
msgid "No file is defined in files
array"
msgstr "Nenhum arquivo está definido no vetor files
"
-#: inc/global.inc.php:562
+#: _build/inc/global.inc.php:616 _site/inc/global.inc.php:607
+#: _tmp/inc/global.inc.php:617 inc/global.inc.php:607
#, php-format
msgid "%s
is mandatory for file ID %s
"
msgstr "%s
é mandatório para o arquivo de ID %s
"
-#: inc/global.inc.php:727
+#: _build/inc/global.inc.php:781 _site/inc/global.inc.php:772
+#: _tmp/inc/global.inc.php:782 inc/global.inc.php:772
msgid "B KBMBGBTBPB"
msgstr "B KBMBGBTBPB"
-#: inc/login.inc.php:42
+#: _build/inc/login.inc.php:21 _site/inc/login.inc.php:42
+#: _tmp/inc/login.inc.php:52 inc/login.inc.php:42
msgid "Your username or password is not correct"
msgstr ""
-#: inc/login.inc.php:47
+#: _build/inc/login.inc.php:26 _site/inc/login.inc.php:47
+#: _tmp/inc/login.inc.php:57 inc/login.inc.php:47
#, fuzzy
msgid "Please try again..."
msgstr "Não me incomode novamente com esta atualização!"
-#: inc/login.inc.php:52
+#: _build/inc/login.inc.php:31 _site/inc/login.inc.php:52
+#: _tmp/inc/login.inc.php:62 inc/login.inc.php:52
msgid "You have been logged out"
msgstr ""
-#: inc/login.inc.php:58
+#: _build/inc/login.inc.php:37 _site/inc/login.inc.php:58
+#: _tmp/inc/login.inc.php:68 inc/login.inc.php:58
#, php-format
msgid ""
"You can use %s as the username and %s as the password to test the demo "
"account"
msgstr ""
-#: inc/login.inc.php:66
+#: _build/inc/login.inc.php:41 _site/inc/login.inc.php:66
+#: _tmp/inc/login.inc.php:76 inc/login.inc.php:66
#, fuzzy
msgid "Please sign in"
msgstr "Aguarde..."
-#: inc/login.inc.php:103
+#: _build/inc/login.inc.php:54 _site/inc/login.inc.php:103
+#: _tmp/inc/login.inc.php:113 inc/login.inc.php:103
#, fuzzy
msgid "Forgotten your password?"
msgstr "Não é possível verificar sua versão atual!"
+#: _build/inc/rss.php:140 _site/inc/rss.php:131 _tmp/inc/rss.php:141
#: inc/rss.php:131
#, fuzzy, php-format
msgid "Pimp My Log : %s"
msgstr "Pimp my Log não está configurado."
+#: _build/inc/rss.php:142 _site/inc/rss.php:133 _tmp/inc/rss.php:143
#: inc/rss.php:133
#, fuzzy, php-format
msgid "Pimp logs for file %s"
msgstr "Pimp my Logs agora!"
+#: _build/inc/rss.php:143 _site/inc/rss.php:134 _tmp/inc/rss.php:144
#: inc/rss.php:134
#, php-format
msgid "Pimp logs for file %s with search %s"
msgstr ""
+#: _build/inc/rss.php:152 _site/inc/rss.php:143 _tmp/inc/rss.php:153
#: inc/rss.php:143
#, fuzzy
msgid "Feed provided by Pimp My Log"
msgstr "Pimp my Log não está configurado."
-#: inc/rss.pml.php:24 inc/users.pml.php:33
+#: _build/inc/rss.pml.php:33 _build/inc/users.pml.php:42
+#: _site/inc/rss.pml.php:24 _site/inc/users.pml.php:33 _tmp/inc/rss.pml.php:34
+#: _tmp/inc/users.pml.php:43 inc/rss.pml.php:24 inc/users.pml.php:33
#, php-format
msgid "PHP Warning [%s] %s"
msgstr "PHP Warning [%s] %s"
-#: inc/rss.pml.php:28 inc/users.pml.php:37
+#: _build/inc/rss.pml.php:37 _build/inc/users.pml.php:46
+#: _site/inc/rss.pml.php:28 _site/inc/users.pml.php:37 _tmp/inc/rss.pml.php:38
+#: _tmp/inc/users.pml.php:47 inc/rss.pml.php:28 inc/users.pml.php:37
#, php-format
msgid "PHP Notice [%s] %s"
msgstr "PHP Notice [%s] %s"
-#: inc/rss.pml.php:32 inc/users.pml.php:41
+#: _build/inc/rss.pml.php:41 _build/inc/users.pml.php:50
+#: _site/inc/rss.pml.php:32 _site/inc/users.pml.php:41 _tmp/inc/rss.pml.php:42
+#: _tmp/inc/users.pml.php:51 inc/rss.pml.php:32 inc/users.pml.php:41
#, php-format
msgid "PHP Unknown error [%s] %s"
msgstr "PHP Unknown error [%s] %s"
-#: inc/rss.pml.php:47 inc/users.pml.php:56
+#: _build/inc/rss.pml.php:56 _build/inc/users.pml.php:65
+#: _site/inc/rss.pml.php:47 _site/inc/users.pml.php:56 _tmp/inc/rss.pml.php:57
+#: _tmp/inc/users.pml.php:66 inc/rss.pml.php:47 inc/users.pml.php:56
#, php-format
msgid "PHP Error line %s: %s"
msgstr "PHP Error linha %s: %s"
+#: _build/inc/rss.pml.php:81 _site/inc/rss.pml.php:72 _tmp/inc/rss.pml.php:82
#: inc/rss.pml.php:72
msgid "This log file does not exist."
msgstr ""
+#: _build/inc/test.php:102 _build/inc/test.php:109 _build/inc/test.php:116
+#: _site/inc/test.php:93 _site/inc/test.php:100 _site/inc/test.php:107
+#: _tmp/inc/test.php:103 _tmp/inc/test.php:110 _tmp/inc/test.php:117
#: inc/test.php:93 inc/test.php:100 inc/test.php:107
msgid "Error"
msgstr "Erro"
+#: _build/inc/test.php:102 _site/inc/test.php:93 _tmp/inc/test.php:103
#: inc/test.php:93
msgid "Match is not a valid associative array"
msgstr "Match não é um array associativo válido"
+#: _build/inc/test.php:109 _site/inc/test.php:100 _tmp/inc/test.php:110
#: inc/test.php:100
msgid "Types is not a valid associative array"
msgstr "Types não é um array associativo válido"
+#: _build/inc/test.php:116 _site/inc/test.php:107 _tmp/inc/test.php:117
#: inc/test.php:107
msgid "RegEx is not a valid PHP PCRE regular expression"
msgstr "A expressão regular não é válida pelo padrão PHP PCRE"
+#: _build/inc/test.php:133 _site/inc/test.php:124 _tmp/inc/test.php:134
#: inc/test.php:124
msgid "Configuration array has been copied to your clipboard!"
msgstr ""
+#: _build/inc/test.php:137 _site/inc/test.php:154 _tmp/inc/test.php:164
#: inc/test.php:154
msgid "Debugger"
msgstr "Debugger"
+#: _build/inc/test.php:141 _site/inc/test.php:166 _tmp/inc/test.php:176
#: inc/test.php:166
msgid "This page is protected for security reasons."
msgstr ""
+#: _build/inc/test.php:143 _site/inc/test.php:168 _tmp/inc/test.php:178
#: inc/test.php:168
msgid "To grant access, please create this temporary file on your server:"
msgstr ""
+#: _build/inc/test.php:149 _site/inc/test.php:174 _tmp/inc/test.php:184
#: inc/test.php:174
#, fuzzy
msgid "Then reload this page."
msgstr "Recarregue a página com os parâmetros iniciais."
+#: _build/inc/test.php:155 _site/inc/test.php:188 _tmp/inc/test.php:198
#: inc/test.php:188
msgid "Quit"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:189 _tmp/inc/test.php:199
#: inc/test.php:189
msgid "Regex tester"
msgstr "Testador de Expressões Regulares"
+#: _build/inc/test.php:155 _site/inc/test.php:190 _tmp/inc/test.php:200
#: inc/test.php:190
msgid "Regex samples"
msgstr "Exemplos de expressões regulares"
+#: _build/inc/test.php:155 _site/inc/test.php:191 _tmp/inc/test.php:201
#: inc/test.php:191
#, fuzzy
msgid "Configuration"
msgstr "Nenhuma configuração encontrada para os softwares!"
+#: _build/inc/test.php:155 _site/inc/test.php:192 _tmp/inc/test.php:202
#: inc/test.php:192
msgid "Password recovery"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:193 _tmp/inc/test.php:203
#: inc/test.php:193
msgid "Authentication"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:213 _tmp/inc/test.php:223
#: inc/test.php:213
msgid ""
"Please remove this temporary file on your server to disable the debugger!"
msgstr ""
+#: _build/inc/test.php:155 _site/inc/test.php:232 _tmp/inc/test.php:242
#: inc/test.php:232
msgid "Log"
msgstr "Log"
+#: _build/inc/test.php:159 _site/inc/test.php:242 _tmp/inc/test.php:252
#: inc/test.php:242
msgid "RegEx"
msgstr "Expressão Regular"
+#: _build/inc/test.php:161 _site/inc/test.php:250 _tmp/inc/test.php:260
#: inc/test.php:250
msgid "Match"
msgstr "Correspondência"
+#: _build/inc/test.php:161 _build/inc/test.php:179 _site/inc/test.php:250
+#: _site/inc/test.php:274 _tmp/inc/test.php:260 _tmp/inc/test.php:284
#: inc/test.php:250 inc/test.php:274
msgid "must be json encoded"
msgstr "deve ser um JSON válido"
+#: _build/inc/test.php:179 _site/inc/test.php:274 _tmp/inc/test.php:284
#: inc/test.php:274
msgid "Types"
msgstr "Tipos"
+#: _build/inc/test.php:185 _site/inc/test.php:286 _tmp/inc/test.php:296
#: inc/test.php:286
msgid "Multiline"
msgstr "Múltiplas linhas"
+#: _build/inc/test.php:185 _site/inc/test.php:293 _tmp/inc/test.php:303
#: inc/test.php:293
msgid "Use CTRL-R shortcut instead of clicking on this button"
msgstr ""
-#: inc/test.php:293 index.php:521 index.php:541 index.php:590
+#: _build/inc/test.php:185 _build/index.php:303 _site/inc/test.php:293
+#: _site/index.php:528 _site/index.php:548 _site/index.php:597
+#: _tmp/inc/test.php:303 _tmp/index.php:538 _tmp/index.php:558
+#: _tmp/index.php:607 inc/test.php:293 index.php:528 index.php:548
+#: index.php:597
msgid "Loading..."
msgstr ""
+#: _build/inc/test.php:185 _site/inc/test.php:293 _tmp/inc/test.php:303
#: inc/test.php:293
msgid "Test"
msgstr "Teste"
+#: _build/inc/test.php:278 _site/inc/test.php:452 _tmp/inc/test.php:462
#: inc/test.php:452
msgid "Generated files with includes (no user logged in or no auth)"
msgstr ""
+#: _build/inc/test.php:280 _site/inc/test.php:454 _tmp/inc/test.php:464
#: inc/test.php:454
#, php-format
msgid "Generated files with includes for user %s"
msgstr ""
+#: _build/inc/test.php:289 _site/inc/test.php:479 _tmp/inc/test.php:489
#: inc/test.php:479
msgid "Rights"
msgstr "Direitos"
+#: _build/inc/test.php:293 _site/inc/test.php:489 _tmp/inc/test.php:499
#: inc/test.php:489
msgid "No POSIX functions..."
msgstr "Funções POSIX indisponíveis..."
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Read"
msgstr "Leitura"
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Write"
msgstr "Escrita"
+#: _build/inc/test.php:313 _site/inc/test.php:510 _tmp/inc/test.php:520
#: inc/test.php:510
msgid "Real path"
msgstr "Caminho real"
+#: _build/inc/test.php:328 _site/inc/test.php:540 _tmp/inc/test.php:550
#: inc/test.php:540
msgid "To be optimal, Pimp My Log needs all these modules ok:"
msgstr ""
+#: _build/inc/test.php:336 _build/inc/test.php:345 _site/inc/test.php:548
+#: _site/inc/test.php:557 _tmp/inc/test.php:558 _tmp/inc/test.php:567
#: inc/test.php:548 inc/test.php:557
#, php-format
msgid "Follow instructions %shere%s to enable"
msgstr ""
+#: _build/inc/test.php:363 _site/inc/test.php:608 _tmp/inc/test.php:618
#: inc/test.php:608
#, php-format
msgid "User %s already exists!"
msgstr ""
-#: inc/test.php:611 inc/test.php:697 inc/users.pml.php:114
-#: inc/users.pml.php:268
+#: _build/inc/test.php:366 _build/inc/test.php:383
+#: _build/inc/users.pml.php:123 _build/inc/users.pml.php:277
+#: _site/inc/test.php:611 _site/inc/test.php:697 _site/inc/users.pml.php:114
+#: _site/inc/users.pml.php:268 _tmp/inc/test.php:621 _tmp/inc/test.php:707
+#: _tmp/inc/users.pml.php:124 _tmp/inc/users.pml.php:278 inc/test.php:611
+#: inc/test.php:697 inc/users.pml.php:114 inc/users.pml.php:268
msgid "Password confirmation is not the same"
msgstr ""
+#: _build/inc/test.php:374 _site/inc/test.php:619 _tmp/inc/test.php:629
#: inc/test.php:619
msgid "Authentication has been enabled and admin account has been created!"
msgstr ""
+#: _build/inc/test.php:377 _site/inc/test.php:627 _tmp/inc/test.php:637
#: inc/test.php:627
msgid "Authentication is currently enabled"
msgstr ""
+#: _build/inc/test.php:377 _site/inc/test.php:631 _tmp/inc/test.php:641
#: inc/test.php:631
msgid "Please remove this file on your server to disable authentication"
msgstr ""
+#: _build/inc/test.php:377 _site/inc/test.php:642 _tmp/inc/test.php:652
#: inc/test.php:642
msgid "Authentication is currently disabled"
msgstr ""
+#: _build/inc/test.php:377 _site/inc/test.php:675 _tmp/inc/test.php:685
#: inc/test.php:675
msgid "Enable authentication"
msgstr ""
+#: _build/inc/test.php:377 _site/inc/test.php:690 _tmp/inc/test.php:700
#: inc/test.php:690
msgid "Please fill an existing username and a new password"
msgstr ""
+#: _build/inc/test.php:380 _site/inc/test.php:694 _tmp/inc/test.php:704
#: inc/test.php:694
#, php-format
msgid "User %s does not exist!"
msgstr ""
+#: _build/inc/test.php:391 _site/inc/test.php:705 _tmp/inc/test.php:715
#: inc/test.php:705
#, php-format
msgid "Password has been updated for user %s!"
msgstr ""
+#: _build/inc/test.php:394 _site/inc/test.php:740 _tmp/inc/test.php:750
#: inc/test.php:740
msgid "Reset"
msgstr ""
+#: _build/inc/test.php:394 _site/inc/test.php:744 _tmp/inc/test.php:754
#: inc/test.php:744
msgid "This feature is only available when authentication is enabled."
msgstr ""
+#: _build/inc/upgrade.pml.php:55 _build/inc/upgrade.pml.php:60
+#: _site/inc/upgrade.pml.php:46 _site/inc/upgrade.pml.php:51
+#: _tmp/inc/upgrade.pml.php:56 _tmp/inc/upgrade.pml.php:61
#: inc/upgrade.pml.php:46 inc/upgrade.pml.php:51
#, fuzzy
msgid "GIT is no more availble, please refresh the page"
msgstr "Favor atualizar a página."
-#: inc/upgrade.pml.php:80
+#: _build/inc/upgrade.pml.php:89 _site/inc/upgrade.pml.php:80
+#: _tmp/inc/upgrade.pml.php:90 inc/upgrade.pml.php:80
#, php-format
msgid "Current version %s"
msgstr "Versão atual %s"
-#: inc/upgrade.pml.php:85
+#: _build/inc/upgrade.pml.php:94 _site/inc/upgrade.pml.php:85
+#: _tmp/inc/upgrade.pml.php:95 inc/upgrade.pml.php:85
msgid "Unable to check your current version!"
msgstr "Não é possível verificar sua versão atual!"
-#: inc/upgrade.pml.php:165
+#: _build/inc/upgrade.pml.php:174 _site/inc/upgrade.pml.php:165
+#: _tmp/inc/upgrade.pml.php:175 inc/upgrade.pml.php:165
msgid "Messages from the development team"
msgstr "Mensagens da equipe de desenvolvimento"
-#: inc/upgrade.pml.php:179
+#: _build/inc/upgrade.pml.php:188 _site/inc/upgrade.pml.php:179
+#: _tmp/inc/upgrade.pml.php:189 inc/upgrade.pml.php:179
msgid "Mark as read"
msgstr "Marcar como lido"
+#: _build/inc/upgrade.pml.php:213 _build/inc/upgrade.pml.php:219
+#: _site/inc/upgrade.pml.php:204 _site/inc/upgrade.pml.php:210
+#: _tmp/inc/upgrade.pml.php:214 _tmp/inc/upgrade.pml.php:220
#: inc/upgrade.pml.php:204 inc/upgrade.pml.php:210
#, php-format
msgid ""
@@ -850,43 +1168,61 @@ msgstr ""
"Ocorreu um erro enquanto recebíamos a URL %s do servidor que hospeda esta "
"instância do Pimp my Log."
+#: _build/inc/upgrade.pml.php:213 _build/inc/upgrade.pml.php:219
+#: _site/inc/upgrade.pml.php:204 _site/inc/upgrade.pml.php:210
+#: _tmp/inc/upgrade.pml.php:214 _tmp/inc/upgrade.pml.php:220
#: inc/upgrade.pml.php:204 inc/upgrade.pml.php:210
msgid "Remote version broken!"
msgstr "Versão remota quebrada!"
-#: inc/upgrade.pml.php:231
+#: _build/inc/upgrade.pml.php:240 _site/inc/upgrade.pml.php:231
+#: _tmp/inc/upgrade.pml.php:241 inc/upgrade.pml.php:231
#, php-format
msgid "Version %s released on %s"
msgstr "Versão %s disponibilizada em %s"
-#: inc/upgrade.pml.php:232
+#: _build/inc/upgrade.pml.php:241 _site/inc/upgrade.pml.php:232
+#: _tmp/inc/upgrade.pml.php:242 inc/upgrade.pml.php:232
#, php-format
msgid "Version %s"
msgstr "Versão %s"
-#: inc/upgrade.pml.php:268
+#: _build/inc/upgrade.pml.php:277 _site/inc/upgrade.pml.php:268
+#: _tmp/inc/upgrade.pml.php:278 inc/upgrade.pml.php:268
msgid "An upgrade is available !"
msgstr "Uma atualização está disponível !"
-#: inc/upgrade.pml.php:269
+#: _build/inc/upgrade.pml.php:278 _site/inc/upgrade.pml.php:269
+#: _tmp/inc/upgrade.pml.php:279 inc/upgrade.pml.php:269
#, php-format
msgid "You have version %s and version %s is available"
msgstr "Você possui a versão %s e a versão %s está disponível"
-#: inc/upgrade.pml.php:270
+#: _build/inc/upgrade.pml.php:279 _site/inc/upgrade.pml.php:270
+#: _tmp/inc/upgrade.pml.php:280 inc/upgrade.pml.php:270
msgid "release notes"
msgstr "notas da versão"
-#: inc/upgrade.pml.php:276
+#: _build/inc/upgrade.pml.php:285 _site/inc/upgrade.pml.php:276
+#: _tmp/inc/upgrade.pml.php:286 inc/upgrade.pml.php:276
msgid "Simply composer update
in the installation directory"
msgstr ""
-#: inc/upgrade.pml.php:286 inc/upgrade.pml.php:303 inc/upgrade.pml.php:323
-#: inc/upgrade.pml.php:383 inc/upgrade.pml.php:396
+#: _build/inc/upgrade.pml.php:295 _build/inc/upgrade.pml.php:312
+#: _build/inc/upgrade.pml.php:332 _build/inc/upgrade.pml.php:392
+#: _build/inc/upgrade.pml.php:405 _site/inc/upgrade.pml.php:286
+#: _site/inc/upgrade.pml.php:303 _site/inc/upgrade.pml.php:323
+#: _site/inc/upgrade.pml.php:383 _site/inc/upgrade.pml.php:396
+#: _tmp/inc/upgrade.pml.php:296 _tmp/inc/upgrade.pml.php:313
+#: _tmp/inc/upgrade.pml.php:333 _tmp/inc/upgrade.pml.php:393
+#: _tmp/inc/upgrade.pml.php:406 inc/upgrade.pml.php:286
+#: inc/upgrade.pml.php:303 inc/upgrade.pml.php:323 inc/upgrade.pml.php:383
+#: inc/upgrade.pml.php:396
msgid "Skip this upgrade"
msgstr "Pule esta atualização"
-#: inc/upgrade.pml.php:294
+#: _build/inc/upgrade.pml.php:303 _site/inc/upgrade.pml.php:294
+#: _tmp/inc/upgrade.pml.php:304 inc/upgrade.pml.php:294
#, fuzzy, php-format
msgid ""
"Simply git pull
in your directory or follow instructions %shere"
@@ -896,64 +1232,77 @@ msgstr ""
"\"http://pimpmylog.com/getting-started/#update\" target=\"doc\" class="
"\"alert-link\">siga as instruções aqui"
-#: inc/upgrade.pml.php:320
+#: _build/inc/upgrade.pml.php:329 _site/inc/upgrade.pml.php:320
+#: _tmp/inc/upgrade.pml.php:330 inc/upgrade.pml.php:320
msgid "Upgrading..."
msgstr ""
-#: inc/upgrade.pml.php:320
+#: _build/inc/upgrade.pml.php:329 _site/inc/upgrade.pml.php:320
+#: _tmp/inc/upgrade.pml.php:330 inc/upgrade.pml.php:320
#, fuzzy
msgid "Upgrade now"
msgstr "Você deve atualizar agora:"
-#: inc/upgrade.pml.php:331
+#: _build/inc/upgrade.pml.php:340 _site/inc/upgrade.pml.php:331
+#: _tmp/inc/upgrade.pml.php:341 inc/upgrade.pml.php:331
#, php-format
msgid ""
"Your GIT installation cannot be upgraded automatically because of %sthese "
"problems%s."
msgstr ""
-#: inc/upgrade.pml.php:338
+#: _build/inc/upgrade.pml.php:347 _site/inc/upgrade.pml.php:338
+#: _tmp/inc/upgrade.pml.php:348 inc/upgrade.pml.php:338
#, fuzzy
msgid "These files are not writable by the web server user:"
msgstr "não é possível detectar o usuário do servidor web"
-#: inc/upgrade.pml.php:348
+#: _build/inc/upgrade.pml.php:357 _site/inc/upgrade.pml.php:348
+#: _tmp/inc/upgrade.pml.php:358 inc/upgrade.pml.php:348
msgid "The git
command is not in the webserver path"
msgstr ""
-#: inc/upgrade.pml.php:353
+#: _build/inc/upgrade.pml.php:362 _site/inc/upgrade.pml.php:353
+#: _tmp/inc/upgrade.pml.php:363 inc/upgrade.pml.php:353
#, fuzzy
msgid "You have modified these files:"
msgstr "Arquivos de log foram encontrados!"
-#: inc/upgrade.pml.php:363
+#: _build/inc/upgrade.pml.php:372 _site/inc/upgrade.pml.php:363
+#: _tmp/inc/upgrade.pml.php:373 inc/upgrade.pml.php:363
msgid "Unknown error, here is the problem output:"
msgstr ""
-#: inc/upgrade.pml.php:374
+#: _build/inc/upgrade.pml.php:383 _site/inc/upgrade.pml.php:374
+#: _tmp/inc/upgrade.pml.php:384 inc/upgrade.pml.php:374
msgid "Simply git pull
in your installation directory."
msgstr ""
-#: inc/upgrade.pml.php:392
+#: _build/inc/upgrade.pml.php:401 _site/inc/upgrade.pml.php:392
+#: _tmp/inc/upgrade.pml.php:402 inc/upgrade.pml.php:392
#, php-format
msgid "Follow instructions %shere%s"
msgstr ""
-#: inc/upgrade.pml.php:405
+#: _build/inc/upgrade.pml.php:414 _site/inc/upgrade.pml.php:405
+#: _tmp/inc/upgrade.pml.php:415 inc/upgrade.pml.php:405
msgid "You should upgrade right now:"
msgstr "Você deve atualizar agora:"
-#: inc/upgrade.pml.php:416
+#: _build/inc/upgrade.pml.php:425 _site/inc/upgrade.pml.php:416
+#: _tmp/inc/upgrade.pml.php:426 inc/upgrade.pml.php:416
#, php-format
msgid "Your version %s is out of date"
msgstr "Sua versão %s está desatualizada"
-#: inc/upgrade.pml.php:421
+#: _build/inc/upgrade.pml.php:430 _site/inc/upgrade.pml.php:421
+#: _tmp/inc/upgrade.pml.php:431 inc/upgrade.pml.php:421
#, php-format
msgid "Your version %s is up to date"
msgstr "Sua versão %s está atualizada"
-#: inc/upgrade.pml.php:427
+#: _build/inc/upgrade.pml.php:436 _site/inc/upgrade.pml.php:427
+#: _tmp/inc/upgrade.pml.php:437 inc/upgrade.pml.php:427
#, php-format
msgid ""
"Unable to fetch URL %s from the server hosting this Pimp my Log instance."
@@ -961,123 +1310,163 @@ msgstr ""
"Não é possível obter a URL %s do servidor que está hospedando esta instância "
"do Pimp my Log."
-#: inc/upgrade.pml.php:427
+#: _build/inc/upgrade.pml.php:436 _site/inc/upgrade.pml.php:427
+#: _tmp/inc/upgrade.pml.php:437 inc/upgrade.pml.php:427
msgid "Unable to check remote version!"
msgstr "Não é possível verificar a versão remota!"
-#: inc/users.pml.php:104
+#: _build/inc/users.pml.php:113 _site/inc/users.pml.php:104
+#: _tmp/inc/users.pml.php:114 inc/users.pml.php:104
#, fuzzy
msgid "Current password is not valid"
msgstr "Versão atual %s"
-#: inc/users.pml.php:121
+#: _build/inc/users.pml.php:130 _site/inc/users.pml.php:121
+#: _tmp/inc/users.pml.php:131 inc/users.pml.php:121
msgid "Password has been fakely changed on the demo!"
msgstr ""
-#: inc/users.pml.php:123
+#: _build/inc/users.pml.php:132 _site/inc/users.pml.php:123
+#: _tmp/inc/users.pml.php:133 inc/users.pml.php:123
msgid "Password has been successfully changed!"
msgstr ""
-#: inc/users.pml.php:178 inc/users.pml.php:209
+#: _build/inc/users.pml.php:187 _build/inc/users.pml.php:218
+#: _site/inc/users.pml.php:178 _site/inc/users.pml.php:209
+#: _tmp/inc/users.pml.php:188 _tmp/inc/users.pml.php:219 inc/users.pml.php:178
+#: inc/users.pml.php:209
#, php-format
msgid "User %s does not exist"
msgstr ""
-#: inc/users.pml.php:260
+#: _build/inc/users.pml.php:269 _site/inc/users.pml.php:260
+#: _tmp/inc/users.pml.php:270 inc/users.pml.php:260
#, php-format
msgid "User %s already exists"
msgstr ""
-#: inc/users.pml.php:317
+#: _build/inc/users.pml.php:331 _site/inc/users.pml.php:322
+#: _tmp/inc/users.pml.php:332 inc/users.pml.php:322
msgid "Please do not shoot yourself in the foot!"
msgstr ""
-#: inc/users.pml.php:389
+#: _build/inc/users.pml.php:403 _site/inc/users.pml.php:394
+#: _tmp/inc/users.pml.php:404 inc/users.pml.php:394
msgid ""
"Anonymous access is enabled. Genuine users have to click on "
"the user menu to sign in and access more logs."
msgstr ""
-#: inc/users.pml.php:391
+#: _build/inc/users.pml.php:405 _site/inc/users.pml.php:396
+#: _tmp/inc/users.pml.php:406 inc/users.pml.php:396
msgid ""
"Anonymous access is disabled. All users have to sign in "
"from the sign in screen."
msgstr ""
-#: inc/users.pml.php:397
+#: _build/inc/users.pml.php:411 _site/inc/users.pml.php:402
+#: _tmp/inc/users.pml.php:412 inc/users.pml.php:402
msgid "Select which log files can be viewed without being logged."
msgstr ""
-#: inc/users.pml.php:398 index.php:758
+#: _build/inc/users.pml.php:412 _build/index.php:303
+#: _site/inc/users.pml.php:403 _site/index.php:765 _tmp/inc/users.pml.php:413
+#: _tmp/index.php:775 inc/users.pml.php:403 index.php:765
msgid "Toggle all log files"
msgstr ""
-#: inc/users.pml.php:480 index.php:154
+#: _build/inc/users.pml.php:429 _build/index.php:315
+#: _site/inc/users.pml.php:420 _site/index.php:780 _tmp/inc/users.pml.php:430
+#: _tmp/index.php:790 inc/users.pml.php:420 index.php:780
+msgid "and an other file defined by glob pattern"
+msgstr ""
+
+#: _build/inc/users.pml.php:432 _build/index.php:318
+#: _site/inc/users.pml.php:423 _site/index.php:783 _tmp/inc/users.pml.php:433
+#: _tmp/index.php:793 inc/users.pml.php:423 index.php:783
+#, php-format
+msgid "and %s other possible files defined by glob pattern"
+msgstr ""
+
+#: _build/inc/users.pml.php:513 _build/index.php:170
+#: _site/inc/users.pml.php:504 _site/index.php:161 _tmp/inc/users.pml.php:514
+#: _tmp/index.php:171 inc/users.pml.php:504 index.php:161
msgid "Access token"
msgstr ""
-#: inc/users.pml.php:491
+#: _build/inc/users.pml.php:524 _site/inc/users.pml.php:515
+#: _tmp/inc/users.pml.php:525 inc/users.pml.php:515
#, fuzzy
msgid "Access token copied!"
msgstr "Comando copiado!"
-#: inc/users.pml.php:494 index.php:158
+#: _build/inc/users.pml.php:527 _build/index.php:174
+#: _site/inc/users.pml.php:518 _site/index.php:165 _tmp/inc/users.pml.php:528
+#: _tmp/index.php:175 inc/users.pml.php:518 index.php:165
msgid "Presalt key"
msgstr ""
-#: inc/users.pml.php:505
+#: _build/inc/users.pml.php:538 _site/inc/users.pml.php:529
+#: _tmp/inc/users.pml.php:539 inc/users.pml.php:529
#, fuzzy
msgid "Presalt key copied!"
msgstr "Comando copiado!"
-#: inc/users.pml.php:510
+#: _build/inc/users.pml.php:543 _site/inc/users.pml.php:534
+#: _tmp/inc/users.pml.php:544 inc/users.pml.php:534
msgid "Check to generate both new Access token and new Presalt key"
msgstr ""
-#: inc/users.pml.php:517
+#: _build/inc/users.pml.php:550 _site/inc/users.pml.php:541
+#: _tmp/inc/users.pml.php:551 inc/users.pml.php:541
msgid "Your credentials have not been used"
msgstr ""
-#: inc/users.pml.php:522
+#: _build/inc/users.pml.php:555 _site/inc/users.pml.php:546
+#: _tmp/inc/users.pml.php:556 inc/users.pml.php:546
msgid "API has been called 1 time"
msgstr ""
-#: inc/users.pml.php:524
+#: _build/inc/users.pml.php:557 _site/inc/users.pml.php:548
+#: _tmp/inc/users.pml.php:558 inc/users.pml.php:548
#, php-format
msgid "API has been called %s times"
msgstr ""
-#: inc/users.pml.php:528
+#: _build/inc/users.pml.php:561 _site/inc/users.pml.php:552
+#: _tmp/inc/users.pml.php:562 inc/users.pml.php:552
#, php-format
msgid ""
"Last API call has been done at %s by IP address %s with user agent %s on URL "
"%s"
msgstr ""
-#: index.php:11 index.php:72 index.php:85
+#: _build/index.php:20 _build/index.php:88 _build/index.php:101
+#: _site/index.php:11 _site/index.php:79 _site/index.php:92 _tmp/index.php:21
+#: _tmp/index.php:89 _tmp/index.php:102 index.php:11 index.php:79 index.php:92
msgid "Oups!"
msgstr "Oups!"
-#: index.php:12
+#: _build/index.php:21 _site/index.php:12 _tmp/index.php:22 index.php:12
#, php-format
msgid "PHP version %s is required but your server run %s."
msgstr ""
"A versão %s ou superior do PHP é necessária mas o seu servidor está "
"executando a versão %s."
-#: index.php:14
+#: _build/index.php:23 _site/index.php:14 _tmp/index.php:24 index.php:14
msgid "Learn more"
msgstr "Saiba mais"
-#: index.php:28
+#: _build/index.php:37 _site/index.php:28 _tmp/index.php:38 index.php:28
msgid "Welcome!"
msgstr "Bem vindo!"
-#: index.php:30
+#: _build/index.php:40 _site/index.php:31 _tmp/index.php:41 index.php:31
msgid "Pimp my Log is not configured."
msgstr "Pimp my Log não está configurado."
-#: index.php:33
+#: _build/index.php:43 _site/index.php:34 _tmp/index.php:44 index.php:34
#, fuzzy, php-format
msgid ""
"You can manually copy cfg/config.example.php
to %s in the root "
@@ -1087,31 +1476,36 @@ msgstr ""
"para config.user.json
no diretório raiz para modificar os "
"parâmetros. Depois de fazer isso, recarregue esta página."
-#: index.php:36
+#: _build/index.php:46 _site/index.php:37 _tmp/index.php:47 index.php:37
msgid "Or let me try to configure it for you!"
msgstr "Ou deixe-me tentar configurá-lo para você."
-#: index.php:39 index.php:96
+#: _build/index.php:55 _build/index.php:112 _site/index.php:46
+#: _site/index.php:103 _tmp/index.php:56 _tmp/index.php:113 index.php:46
+#: index.php:103
msgid "Configure now"
msgstr "Configurar agora"
-#: index.php:74
+#: _build/index.php:90 _site/index.php:81 _tmp/index.php:91 index.php:81
msgid "Your access is disabled, you cannot view any log file."
msgstr ""
-#: index.php:76
+#: _build/index.php:92 _site/index.php:83 _tmp/index.php:93 index.php:83
msgid "Please contact your administrator."
msgstr ""
-#: index.php:79 index.php:146 index.php:461
+#: _build/index.php:95 _build/index.php:162 _build/index.php:294
+#: _site/index.php:86 _site/index.php:153 _site/index.php:468
+#: _tmp/index.php:96 _tmp/index.php:163 _tmp/index.php:478 index.php:86
+#: index.php:153 index.php:468
msgid "Sign out"
msgstr ""
-#: index.php:87
+#: _build/index.php:103 _site/index.php:94 _tmp/index.php:104 index.php:94
msgid "config.user.json
configuration file is buggy:"
msgstr "O arquivo de configuração config.user.json
está bugado:"
-#: index.php:93
+#: _build/index.php:109 _site/index.php:100 _tmp/index.php:110 index.php:100
msgid ""
"If you want me to build the configuration for you, please remove file "
"config.user.json
at root and click below."
@@ -1119,105 +1513,115 @@ msgstr ""
"Se você quer que eu construa a configuração para você, por favor remova o "
"arquivo config.user.json
no diretório raiz e clique abaixo."
-#: index.php:109
+#: _build/index.php:125 _site/index.php:116 _tmp/index.php:126 index.php:116
#, fuzzy
msgid "Action"
msgstr "Ação desconhecida, abortar."
-#: index.php:110
+#: _build/index.php:126 _site/index.php:117 _tmp/index.php:127 index.php:117
msgid "Add admin"
msgstr ""
-#: index.php:111
+#: _build/index.php:127 _site/index.php:118 _tmp/index.php:128 index.php:118
msgid "Add user"
msgstr ""
-#: index.php:112
+#: _build/index.php:128 _site/index.php:119 _tmp/index.php:129 index.php:119
#, fuzzy
msgid "All accesses granted"
msgstr "Todas as versões 2.x são suportadas."
-#: index.php:113
+#: _build/index.php:129 _site/index.php:120 _tmp/index.php:130 index.php:120
msgid "Anonymous access has been successfully saved!"
msgstr ""
-#: index.php:114
+#: _build/index.php:130 _site/index.php:121 _tmp/index.php:131 index.php:121
msgid ""
"There is no log to display and your are connected... It seems that global "
"parameter AUTH_LOG_FILE_COUNT
is set to 0. Change this "
"parameter to a higher value to display logs."
msgstr ""
-#: index.php:115
+#: _build/index.php:131 _site/index.php:122 _tmp/index.php:132 index.php:122
msgid "Password changed"
msgstr ""
-#: index.php:116 index.php:155
+#: _build/index.php:132 _build/index.php:171 _site/index.php:123
+#: _site/index.php:162 _tmp/index.php:133 _tmp/index.php:172 index.php:123
+#: index.php:162
msgid "Created by"
msgstr ""
-#: index.php:117 index.php:156
+#: _build/index.php:133 _build/index.php:172 _site/index.php:124
+#: _site/index.php:163 _tmp/index.php:134 _tmp/index.php:173 index.php:124
+#: index.php:163
msgid "Created at"
msgstr ""
-#: index.php:118
+#: _build/index.php:134 _site/index.php:125 _tmp/index.php:135 index.php:125
#, fuzzy
msgid "Date"
msgstr "Sua versão %s está desatualizada"
-#: index.php:119
+#: _build/index.php:135 _site/index.php:126 _tmp/index.php:136 index.php:126
msgid "Delete user"
msgstr ""
-#: index.php:120
+#: _build/index.php:136 _site/index.php:127 _tmp/index.php:137 index.php:127
msgid "1 log displayed,"
msgstr "1 log exibido,"
-#: index.php:121
+#: _build/index.php:137 _site/index.php:128 _tmp/index.php:138 index.php:128
#, php-format
msgid "%s logs displayed,"
msgstr "%s logs exibidos,"
-#: index.php:123 index.php:613
+#: _build/index.php:139 _build/index.php:303 _site/index.php:130
+#: _site/index.php:620 _tmp/index.php:140 _tmp/index.php:630 index.php:130
+#: index.php:620
msgid "Form is invalid:"
msgstr ""
-#: index.php:124
+#: _build/index.php:140 _site/index.php:131 _tmp/index.php:141 index.php:131
msgid "IP"
msgstr ""
-#: index.php:125 index.php:159
+#: _build/index.php:141 _build/index.php:175 _site/index.php:132
+#: _site/index.php:166 _tmp/index.php:142 _tmp/index.php:176 index.php:132
+#: index.php:166
#, fuzzy
msgid "Last login"
msgstr "%s log"
-#: index.php:126
+#: _build/index.php:142 _site/index.php:133 _tmp/index.php:143 index.php:133
#, php-format
msgid "Still %s to load"
msgstr ""
-#: index.php:127 index.php:160
+#: _build/index.php:143 _build/index.php:176 _site/index.php:134
+#: _site/index.php:167 _tmp/index.php:144 _tmp/index.php:177 index.php:134
+#: index.php:167
msgid "Logins"
msgstr ""
-#: index.php:128
+#: _build/index.php:144 _site/index.php:135 _tmp/index.php:145 index.php:135
msgid "1 new log is available"
msgstr "1 novo log está disponível"
-#: index.php:129
+#: _build/index.php:145 _site/index.php:136 _tmp/index.php:146 index.php:136
msgid "New logs are available"
msgstr "Novos logs disponíveis"
-#: index.php:130
+#: _build/index.php:146 _site/index.php:137 _tmp/index.php:147 index.php:137
#, php-format
msgid "%s new logs are available"
msgstr "%s novos logs estão disponíveis"
-#: index.php:131
+#: _build/index.php:147 _site/index.php:138 _tmp/index.php:148 index.php:138
msgid "No log has been found."
msgstr "Nenhum log foi encontrado."
-#: index.php:132
+#: _build/index.php:148 _site/index.php:139 _tmp/index.php:149 index.php:139
msgid ""
"Notifications are denied for this site. Go to your browser preferences to "
"enable notifications for this site."
@@ -1225,447 +1629,491 @@ msgstr ""
"Notificações estão bloqueadas para este site. Vá para as preferências do seu "
"navegador para ativar as notificações para este site."
-#: index.php:133
+#: _build/index.php:149 _site/index.php:140 _tmp/index.php:150 index.php:140
msgid "Your profile has been successfully saved!"
msgstr ""
-#: index.php:134 index.php:135
+#: _build/index.php:150 _build/index.php:151 _site/index.php:141
+#: _site/index.php:142 _tmp/index.php:151 _tmp/index.php:152 index.php:141
+#: index.php:142
#, fuzzy
msgid "Confirm"
msgstr "Configurador"
-#: index.php:136
+#: _build/index.php:152 _site/index.php:143 _tmp/index.php:153 index.php:143
msgid "Search was done with regular engine"
msgstr "Busca efetuada com o motor padrão."
-#: index.php:137
+#: _build/index.php:153 _site/index.php:144 _tmp/index.php:154 index.php:144
msgid "Search was done with RegEx engine"
msgstr "Busca efetuada com o motor de Expressões Regulares."
-#: index.php:138
+#: _build/index.php:154 _site/index.php:145 _tmp/index.php:155 index.php:145
#, fuzzy
msgid "Result copied!"
msgstr "Comando copiado!"
-#: index.php:139 index.php:162 index.php:741
+#: _build/index.php:155 _build/index.php:178 _build/index.php:303
+#: _site/index.php:146 _site/index.php:169 _site/index.php:748
+#: _tmp/index.php:156 _tmp/index.php:179 _tmp/index.php:758 index.php:146
+#: index.php:169 index.php:748
msgid "Roles"
msgstr ""
-#: index.php:140
+#: _build/index.php:156 _site/index.php:147 _tmp/index.php:157 index.php:147
#, php-format
msgid "No log has been found with Reg Ex search %s"
msgstr "Nenhum log foi encontrado com a busca por Expressões Regulares %s"
-#: index.php:141
+#: _build/index.php:157 _site/index.php:148 _tmp/index.php:158 index.php:148
#, php-format
msgid "No log has been found with regular search %s"
msgstr "Nenhum log foi encontrado com a busca padrão %s"
-#: index.php:142 index.php:342
+#: _build/index.php:158 _build/index.php:274 _site/index.php:149
+#: _site/index.php:349 _tmp/index.php:159 _tmp/index.php:359 index.php:149
+#: index.php:349
msgid "Sign in"
msgstr ""
-#: index.php:143 index.php:145
+#: _build/index.php:159 _build/index.php:161 _site/index.php:150
+#: _site/index.php:152 _tmp/index.php:160 _tmp/index.php:162 index.php:150
+#: index.php:152
msgid "Sign in as"
msgstr ""
-#: index.php:144
+#: _build/index.php:160 _site/index.php:151 _tmp/index.php:161 index.php:151
#, fuzzy
msgid "Sign in error"
msgstr "Erro"
-#: index.php:147
+#: _build/index.php:163 _site/index.php:154 _tmp/index.php:164 index.php:154
msgid "System"
msgstr ""
-#: index.php:148
+#: _build/index.php:164 _site/index.php:155 _tmp/index.php:165 index.php:155
#, php-format
msgid "Toggle column %s"
msgstr "Alternar coluna %s"
-#: index.php:149
+#: _build/index.php:165 _site/index.php:156 _tmp/index.php:166 index.php:156
#, fuzzy
msgid "URL copied!"
msgstr "Comando copiado!"
-#: index.php:150 index.php:745
+#: _build/index.php:166 _build/index.php:303 _site/index.php:157
+#: _site/index.php:752 _tmp/index.php:167 _tmp/index.php:762 index.php:157
+#: index.php:752
#, fuzzy
msgid "User"
msgstr "não é possível detectar o usuário do servidor web"
-#: index.php:151
+#: _build/index.php:167 _site/index.php:158 _tmp/index.php:168 index.php:158
msgid "User has been successfully saved!"
msgstr ""
-#: index.php:152
+#: _build/index.php:168 _site/index.php:159 _tmp/index.php:169 index.php:159
msgid "Last API call"
msgstr ""
-#: index.php:153
+#: _build/index.php:169 _site/index.php:160 _tmp/index.php:170 index.php:160
msgid "API calls"
msgstr ""
-#: index.php:157
+#: _build/index.php:173 _site/index.php:164 _tmp/index.php:174 index.php:164
msgid "User has been successfully deleted!"
msgstr ""
-#: index.php:161
+#: _build/index.php:177 _site/index.php:168 _tmp/index.php:178 index.php:168
#, fuzzy
msgid "Log access"
msgstr "Log"
-#: index.php:163
+#: _build/index.php:179 _site/index.php:170 _tmp/index.php:180 index.php:170
msgid "User agent"
msgstr ""
-#: index.php:164
+#: _build/index.php:180 _site/index.php:171 _tmp/index.php:181 index.php:171
#, fuzzy
msgid "User name"
msgstr "Nome"
-#: index.php:165 index.php:680
+#: _build/index.php:181 _build/index.php:303 _site/index.php:172
+#: _site/index.php:687 _tmp/index.php:182 _tmp/index.php:697 index.php:172
+#: index.php:687
msgid "Users"
msgstr ""
-#: index.php:166
+#: _build/index.php:182 _site/index.php:173 _tmp/index.php:183 index.php:173
#, fuzzy
msgid "You need to sign in"
msgstr "Você deve atualizar agora:"
-#: index.php:233
+#: _build/index.php:225 _site/index.php:240 _tmp/index.php:250 index.php:240
msgid "Reload the page with default parameters"
msgstr "Recarregue a página com os parâmetros iniciais."
-#: index.php:243
+#: _build/index.php:225 _site/index.php:250 _tmp/index.php:260 index.php:250
msgid "Click to refresh or press the R key"
msgstr "Clique em recarregar ou pressione a tecla R"
-#: index.php:256 index.php:307
+#: _build/index.php:225 _build/index.php:263 _site/index.php:263
+#: _site/index.php:314 _tmp/index.php:273 _tmp/index.php:324 index.php:263
+#: index.php:314
msgid "Select a log file to display"
msgstr "Selecione um arquivo de log para exibir"
-#: index.php:268 index.php:279
+#: _build/index.php:234 _build/index.php:245 _site/index.php:275
+#: _site/index.php:286 _tmp/index.php:285 _tmp/index.php:296 index.php:275
+#: index.php:286
#, php-format
msgid "Log file #%s defined in %s"
msgstr ""
-#: index.php:268 index.php:279
+#: _build/index.php:234 _build/index.php:245 _site/index.php:275
+#: _site/index.php:286 _tmp/index.php:285 _tmp/index.php:296 index.php:275
+#: index.php:286
#, php-format
msgid "Log file #%s defined in main configuration file"
msgstr ""
-#: index.php:347
+#: _build/index.php:274 _site/index.php:354 _tmp/index.php:364 index.php:354
msgid "Search in logs"
msgstr "Buscar nos logs"
-#: index.php:351
+#: _build/index.php:274 _site/index.php:358 _tmp/index.php:368 index.php:358
msgid "Select a duration to check for new logs automatically"
msgstr "Selecione o período para verificar por novos logs automaticamente"
-#: index.php:352
+#: _build/index.php:274 _site/index.php:359 _tmp/index.php:369 index.php:359
msgid "No refresh"
msgstr "Sem atualização"
-#: index.php:355
+#: _build/index.php:276 _site/index.php:362 _tmp/index.php:372 index.php:362
#, php-format
msgid "Refresh %ss"
msgstr "Atualizar %ss"
-#: index.php:362
+#: _build/index.php:278 _site/index.php:369 _tmp/index.php:379 index.php:369
msgid "Max count of logs to display"
msgstr "Número máximo de logs a exibir"
-#: index.php:365
+#: _build/index.php:280 _site/index.php:372 _tmp/index.php:382 index.php:372
#, php-format
msgid "%s logs"
msgstr "%s logs"
-#: index.php:365
+#: _build/index.php:280 _site/index.php:372 _tmp/index.php:382 index.php:372
#, php-format
msgid "%s log"
msgstr "%s log"
-#: index.php:372
+#: _build/index.php:282 _site/index.php:379 _tmp/index.php:389 index.php:379
msgid "Desktop notifications on supported modern browsers"
msgstr ""
"Notificações de área de trabalho nos navegadores modernos que o suportam"
-#: index.php:374
+#: _build/index.php:282 _site/index.php:381 _tmp/index.php:391 index.php:381
#, fuzzy
msgid "Notifications"
msgstr ""
"Notificações estão bloqueadas para este site. Vá para as preferências do seu "
"navegador para ativar as notificações para este site."
-#: index.php:385 index.php:389
+#: _build/index.php:282 _site/index.php:392 _site/index.php:396
+#: _tmp/index.php:402 _tmp/index.php:406 index.php:392 index.php:396
msgid "Displayed columns"
msgstr "Colunas exibidas"
-#: index.php:397
+#: _build/index.php:282 _site/index.php:404 _tmp/index.php:414 index.php:404
#, fuzzy
msgid "Settings"
msgstr ""
"Você pode ajustar manualmente as configurações no arquivo %s
."
-#: index.php:403
+#: _build/index.php:282 _site/index.php:410 _tmp/index.php:420 index.php:410
msgid "Wide view"
msgstr "Vista expandida"
-#: index.php:404
+#: _build/index.php:282 _site/index.php:411 _tmp/index.php:421 index.php:411
msgid "on"
msgstr "ligado"
-#: index.php:405
+#: _build/index.php:282 _site/index.php:412 _tmp/index.php:422 index.php:412
msgid "off"
msgstr "desligado"
-#: index.php:410
+#: _build/index.php:282 _site/index.php:417 _tmp/index.php:427 index.php:417
msgid "Click on a date field to mark a row"
msgstr "Clique em um campo de data para marcar uma linha"
-#: index.php:411
+#: _build/index.php:282 _site/index.php:418 _tmp/index.php:428 index.php:418
msgid "Clear markers"
msgstr "Marcadores claros"
-#: index.php:416
+#: _build/index.php:282 _site/index.php:423 _tmp/index.php:433 index.php:423
#, fuzzy
msgid "Language"
msgstr "Idioma"
-#: index.php:418
+#: _build/index.php:282 _site/index.php:425 _tmp/index.php:435 index.php:425
msgid "Change language..."
msgstr "Alterar idioma..."
-#: index.php:427
+#: _build/index.php:288 _site/index.php:434 _tmp/index.php:444 index.php:434
#, fuzzy
msgid "Language cannot be changed"
msgstr "Idioma"
-#: index.php:433
+#: _build/index.php:288 _site/index.php:440 _tmp/index.php:450 index.php:440
msgid "Timezone"
msgstr "Fuso horário"
-#: index.php:434
+#: _build/index.php:288 _site/index.php:441 _tmp/index.php:451 index.php:441
msgid "Change timezone..."
msgstr "Alterar o fuso horário"
-#: index.php:451 index.php:616
+#: _build/index.php:294 _build/index.php:303 _site/index.php:458
+#: _site/index.php:623 _tmp/index.php:468 _tmp/index.php:633 index.php:458
+#: index.php:623
#, php-format
msgid "You are currently connected as %s"
msgstr ""
-#: index.php:453
+#: _build/index.php:294 _site/index.php:460 _tmp/index.php:470 index.php:460
#, fuzzy
msgid "User settings"
msgstr ""
"Você pode ajustar manualmente as configurações no arquivo %s
."
-#: index.php:457
+#: _build/index.php:294 _site/index.php:464 _tmp/index.php:474 index.php:464
msgid "Click here to manager users"
msgstr ""
-#: index.php:457
+#: _build/index.php:294 _site/index.php:464 _tmp/index.php:474 index.php:464
msgid "Manage users"
msgstr ""
-#: index.php:459
+#: _build/index.php:294 _site/index.php:466 _tmp/index.php:476 index.php:466
msgid "Click here to view your profile"
msgstr ""
-#: index.php:459 index.php:656
+#: _build/index.php:294 _build/index.php:303 _site/index.php:466
+#: _site/index.php:663 _tmp/index.php:476 _tmp/index.php:673 index.php:466
+#: index.php:663
msgid "Profile"
msgstr ""
-#: index.php:460
+#: _build/index.php:294 _site/index.php:467 _tmp/index.php:477 index.php:467
#, fuzzy
msgid "Click here to change your password"
msgstr "Alterar idioma..."
-#: index.php:460 index.php:609
+#: _build/index.php:294 _build/index.php:303 _site/index.php:467
+#: _site/index.php:616 _tmp/index.php:477 _tmp/index.php:626 index.php:467
+#: index.php:616
#, fuzzy
msgid "Change password"
msgstr "Alterar idioma..."
-#: index.php:461
+#: _build/index.php:294 _site/index.php:468 _tmp/index.php:478 index.php:468
msgid "Click here to sign out"
msgstr ""
-#: index.php:487
+#: _build/index.php:297 _site/index.php:494 _tmp/index.php:504 index.php:494
#, fuzzy, php-format
msgid "Welcome in version %s"
-msgstr "Bem vindo!"
+msgstr "Versão %s"
-#: index.php:492
+#: _build/index.php:302 _site/index.php:499 _tmp/index.php:509 index.php:499
#, php-format
msgid ""
"The changelog and all informations about this version are available on the "
"%sblog%s."
msgstr ""
-#: index.php:521 index.php:541
+#: _build/index.php:303 _site/index.php:528 _site/index.php:548
+#: _tmp/index.php:538 _tmp/index.php:558 index.php:528 index.php:548
#, fuzzy
msgid "No more data"
msgstr "Saiba mais"
-#: index.php:521 index.php:541
+#: _build/index.php:303 _site/index.php:528 _site/index.php:548
+#: _tmp/index.php:538 _tmp/index.php:558 index.php:528 index.php:548
#, fuzzy
msgid "Load more"
msgstr "Saiba mais"
-#: index.php:526 index.php:560
+#: _build/index.php:303 _site/index.php:533 _site/index.php:567
+#: _tmp/index.php:543 _tmp/index.php:577 index.php:533 index.php:567
msgid "Export"
msgstr ""
-#: index.php:528
+#: _build/index.php:303 _site/index.php:535 _tmp/index.php:545 index.php:535
msgid "ATOM"
msgstr ""
-#: index.php:529
+#: _build/index.php:303 _site/index.php:536 _tmp/index.php:546 index.php:536
msgid "CSV"
msgstr ""
-#: index.php:530
+#: _build/index.php:303 _site/index.php:537 _tmp/index.php:547 index.php:537
#, fuzzy
msgid "JSON"
msgstr "deve ser um JSON válido"
-#: index.php:531
+#: _build/index.php:303 _site/index.php:538 _tmp/index.php:548 index.php:538
msgid "JSONP (with callback)"
msgstr ""
-#: index.php:532
+#: _build/index.php:303 _site/index.php:539 _tmp/index.php:549 index.php:539
#, fuzzy
msgid "JSON Pretty Print"
msgstr "deve ser um JSON válido"
-#: index.php:533
+#: _build/index.php:303 _site/index.php:540 _tmp/index.php:550 index.php:540
msgid "RSS"
msgstr ""
-#: index.php:534
+#: _build/index.php:303 _site/index.php:541 _tmp/index.php:551 index.php:541
msgid "XML"
msgstr ""
-#: index.php:559 index.php:595 index.php:608 index.php:642 index.php:655
-#: index.php:663 index.php:678 index.php:694 index.php:800 index.php:809
+#: _build/index.php:303 _build/index.php:323 _site/index.php:566
+#: _site/index.php:602 _site/index.php:615 _site/index.php:649
+#: _site/index.php:662 _site/index.php:670 _site/index.php:685
+#: _site/index.php:701 _site/index.php:825 _site/index.php:834
+#: _tmp/index.php:576 _tmp/index.php:612 _tmp/index.php:625 _tmp/index.php:659
+#: _tmp/index.php:672 _tmp/index.php:680 _tmp/index.php:695 _tmp/index.php:711
+#: _tmp/index.php:835 _tmp/index.php:844 index.php:566 index.php:602
+#: index.php:615 index.php:649 index.php:662 index.php:670 index.php:685
+#: index.php:701 index.php:825 index.php:834
msgid "Close"
msgstr ""
-#: index.php:563
+#: _build/index.php:303 _site/index.php:570 _tmp/index.php:580 index.php:570
msgid "Webservice URL"
msgstr ""
-#: index.php:564
+#: _build/index.php:303 _site/index.php:571 _tmp/index.php:581 index.php:571
msgid ""
"Your URL seems to be local so it won't be reachable by external browsers and "
"services"
msgstr ""
-#: index.php:568
+#: _build/index.php:303 _site/index.php:575 _tmp/index.php:585 index.php:575
msgid "Open"
msgstr ""
-#: index.php:572
+#: _build/index.php:303 _site/index.php:579 _tmp/index.php:589 index.php:579
msgid "Feel free to change these parameters in the URL:"
msgstr ""
-#: index.php:574
+#: _build/index.php:303 _site/index.php:581 _tmp/index.php:591 index.php:581
#, fuzzy
msgid "language"
msgstr "Idioma"
-#: index.php:575
+#: _build/index.php:303 _site/index.php:582 _tmp/index.php:592 index.php:582
#, fuzzy
msgid "timezone to convert dates"
msgstr "Fuso horário"
-#: index.php:576
+#: _build/index.php:303 _site/index.php:583 _tmp/index.php:593 index.php:583
msgid "available formats are CSV, JSON, JSONPR and XML"
msgstr ""
-#: index.php:577
+#: _build/index.php:303 _site/index.php:584 _tmp/index.php:594 index.php:584
msgid "the maximum count of returned log lines"
msgstr ""
-#: index.php:578
+#: _build/index.php:303 _site/index.php:585 _tmp/index.php:595 index.php:585
msgid ""
"the timeout in seconds to return log lines. Increase this value for big "
"counts or when using search"
msgstr ""
-#: index.php:579
+#: _build/index.php:303 _site/index.php:586 _tmp/index.php:596 index.php:586
msgid ""
"search this value in log lines. It can be a regular expression or a regex one"
msgstr ""
-#: index.php:580
+#: _build/index.php:303 _site/index.php:587 _tmp/index.php:597 index.php:587
msgid ""
"this field is optional and is used to specify a callback function when "
"format is JSONP"
msgstr ""
-#: index.php:586
+#: _build/index.php:303 _site/index.php:593 _tmp/index.php:603 index.php:593
#, fuzzy
msgid "Current result"
msgstr "Versão atual %s"
-#: index.php:590
+#: _build/index.php:303 _site/index.php:597 _tmp/index.php:607 index.php:597
#, fuzzy
msgid "Refresh"
msgstr "Sem atualização"
-#: index.php:622
+#: _build/index.php:303 _site/index.php:629 _tmp/index.php:639 index.php:629
#, fuzzy
msgid "Current password"
msgstr "Versão atual %s"
-#: index.php:629
+#: _build/index.php:303 _site/index.php:636 _tmp/index.php:646 index.php:636
#, fuzzy
msgid "New password"
msgstr "%s novos logs encontrados"
-#: index.php:636
+#: _build/index.php:303 _site/index.php:643 _tmp/index.php:653 index.php:643
#, fuzzy
msgid "New password confirmation"
msgstr "%s novos logs encontrados"
-#: index.php:643 index.php:664 index.php:786 index.php:801
+#: _build/index.php:303 _build/index.php:323 _site/index.php:650
+#: _site/index.php:671 _site/index.php:811 _site/index.php:826
+#: _tmp/index.php:660 _tmp/index.php:681 _tmp/index.php:821 _tmp/index.php:836
+#: index.php:650 index.php:671 index.php:811 index.php:826
msgid "Saving..."
msgstr ""
-#: index.php:643 index.php:664 index.php:786 index.php:801
+#: _build/index.php:303 _build/index.php:323 _site/index.php:650
+#: _site/index.php:671 _site/index.php:811 _site/index.php:826
+#: _tmp/index.php:660 _tmp/index.php:681 _tmp/index.php:821 _tmp/index.php:836
+#: index.php:650 index.php:671 index.php:811 index.php:826
msgid "Save"
msgstr ""
-#: index.php:681
+#: _build/index.php:303 _site/index.php:688 _tmp/index.php:698 index.php:688
msgid "Anonymous access"
msgstr ""
-#: index.php:682
+#: _build/index.php:303 _site/index.php:689 _tmp/index.php:699 index.php:689
msgid "History"
msgstr ""
-#: index.php:703 index.php:784
+#: _build/index.php:303 _build/index.php:323 _site/index.php:710
+#: _site/index.php:809 _tmp/index.php:720 _tmp/index.php:819 index.php:710
+#: index.php:809
msgid "« Back"
msgstr ""
-#: index.php:704
+#: _build/index.php:303 _site/index.php:711 _tmp/index.php:721 index.php:711
msgid "Edit"
msgstr ""
-#: index.php:737
+#: _build/index.php:303 _site/index.php:744 _tmp/index.php:754 index.php:744
msgid "Leave password fields blank if you don't want to change it"
msgstr ""
-#: index.php:748
+#: _build/index.php:303 _site/index.php:755 _tmp/index.php:765 index.php:755
msgid "Admin"
msgstr ""
-#: index.php:757
+#: _build/index.php:303 _site/index.php:764 _tmp/index.php:774 index.php:764
msgid "Select which log files user can view"
msgstr ""
-#: index.php:785
+#: _build/index.php:323 _site/index.php:810 _tmp/index.php:820 index.php:810
msgid "Cancel"
msgstr ""
diff --git a/version.js b/version.js
index a379816a..aba537e4 100644
--- a/version.js
+++ b/version.js
@@ -1,13 +1,26 @@
/*PSK*/pml_version_cb(/*PSK*/
{
- "version" : "1.7.1",
- "versiondevh" : "5190cd82068079c2f68a4c0b8871ba765a41fa91",
+ "version" : "1.7.2",
+ "versiondevh" : "51fcfbcf77c3a3b0aa7e9b5386f3ca98ca784625",
"messages" : {
"20141121" : "Thank you to people who have starred the project on GitHub !",
"20141012" : "Hi folks!
This alert box has been added to send important messages to you about Pimp my Log. It is not intended to be a Spam Zone.
I need to know if I should continue the development of Pimp My Log and how many people are interested in Pimp my Log. Would you just let me know by starring the project in GitHub please?
And don’t worry, Pimp my Log will be in open-source forever.
potsky
",
"20141011" : "This message will never be shown. Never Gonna Give You Up !"
},
"changelog" : {
+ "1.7.2" : {
+ "released" : "2014-11-29",
+ "new" : [
+ "Alert message when Suhosin PHP extension is loaded",
+ "Enable the SAFE_MODE latch file to let users run Pimp My Log on ultra secured PHP installations (more info)"
+ ],
+ "changed" : [
+ "Glob files are now considered as unique for user access"
+ ],
+ "fixed" : [
+ "Fix the user management popup in Firefox (more info)"
+ ]
+ },
"1.7.1" : {
"released" : "2014-11-23",
"changed" : [