Merge branch 'develop' into feature/NewView

This commit is contained in:
m-lopez-f 2015-04-06 12:33:26 +02:00
commit da24887922
63 changed files with 304 additions and 1027 deletions

View File

@ -1,5 +1,5 @@
package: pandorafms-agent-unix package: pandorafms-agent-unix
Version: 6.0dev-150329 Version: 6.0dev-150406
Architecture: all Architecture: all
Priority: optional Priority: optional
Section: admin Section: admin

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
pandora_version="6.0dev-150329" pandora_version="6.0dev-150406"
echo "Test if you has the tools for to make the packages." echo "Test if you has the tools for to make the packages."
whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null

View File

@ -41,7 +41,7 @@ my $Sem = undef;
my $ThreadSem = undef; my $ThreadSem = undef;
use constant AGENT_VERSION => '6.0dev'; use constant AGENT_VERSION => '6.0dev';
use constant AGENT_BUILD => '150329'; use constant AGENT_BUILD => '150406';
# Commands to retrieve total memory information in kB # Commands to retrieve total memory information in kB
use constant TOTALMEMORY_CMDS => { use constant TOTALMEMORY_CMDS => {

View File

@ -3,7 +3,7 @@
# #
%define name pandorafms_agent_unix %define name pandorafms_agent_unix
%define version 6.0dev %define version 6.0dev
%define release 150329 %define release 150406
Summary: Pandora FMS Linux agent, PERL version Summary: Pandora FMS Linux agent, PERL version
Name: %{name} Name: %{name}

View File

@ -3,7 +3,7 @@
# #
%define name pandorafms_agent_unix %define name pandorafms_agent_unix
%define version 6.0dev %define version 6.0dev
%define release 150329 %define release 150406
Summary: Pandora FMS Linux agent, PERL version Summary: Pandora FMS Linux agent, PERL version
Name: %{name} Name: %{name}

View File

@ -171,6 +171,9 @@ my $t_proxy_socket;
# Proxy selected handler # Proxy selected handler
my $t_proxy_select; my $t_proxy_select;
# Use SSL for proxy, 1 true, 0 false
my $t_proxy_ssl = 0;
# Use libwrap, 1 true, 0 false # Use libwrap, 1 true, 0 false
my $t_use_libwrap = 0; my $t_use_libwrap = 0;
@ -206,11 +209,12 @@ sub print_help {
print ("\t-t time\t\tTime-out for network operations in seconds (default ${t_timeout}s).\n"); print ("\t-t time\t\tTime-out for network operations in seconds (default ${t_timeout}s).\n");
print ("\t-v\t\tBe verbose.\n"); print ("\t-v\t\tBe verbose.\n");
print ("\t-w\t\tPrompt for OpenSSL private key password.\n"); print ("\t-w\t\tPrompt for OpenSSL private key password.\n");
print ("\t-x pwd\t\tServer password.\n\n"); print ("\t-x pwd\t\tServer password.\n");
print ("\t-b proxy_ip_address\t\tProxied server address.\n\n"); print ("\t-b proxy_ip_address\tProxied server address.\n");
print ("\t-g proxy_port\t\tPort of proxied server.\n\n"); print ("\t-g proxy_port\t\tPort of proxied server.\n");
print ("\t-C\t\tEnable SSL for proxy connection without a client certificate.\n");
print ("\t-T\t\tEnable tcpwrappers support.\n"); print ("\t-T\t\tEnable tcpwrappers support.\n");
print ("\t\t(To use this option, 'Authen::Libwrap' should be installed.)\n\n"); print ("\t\t\t(To use this option, 'Authen::Libwrap' should be installed.)\n\n");
} }
################################################################################ ################################################################################
@ -256,7 +260,7 @@ sub parse_options {
my @t_addresses_tmp; my @t_addresses_tmp;
# Get options # Get options
if (getopts ('a:b:c:de:f:g:hi:k:m:op:qr:s:S:t:Tvwx:', \%opts) == 0 || defined ($opts{'h'})) { if (getopts ('a:b:c:Cde:f:g:hi:k:m:op:qr:s:S:t:Tvwx:', \%opts) == 0 || defined ($opts{'h'})) {
print_help (); print_help ();
exit 1; exit 1;
} }
@ -444,6 +448,15 @@ sub parse_options {
} }
} }
# Enable SSL without a client certificate
if (defined ($opts{'C'})) {
require IO::Socket::SSL;
$t_proxy_ssl = 1;
}
# TCP wrappers support # TCP wrappers support
if (defined ($opts{'T'})) { if (defined ($opts{'T'})) {
if ($t_libwrap_installed) { if ($t_libwrap_installed) {
@ -658,6 +671,30 @@ sub start_ssl {
print_log ("SSL started for " . $t_client_socket->sockhost ()); print_log ("SSL started for " . $t_client_socket->sockhost ());
} }
################################################################################
## SUB start_proxy_ssl
## Convert the proxy socket to an IO::Socket::SSL socket.
################################################################################
sub start_proxy_ssl {
my $err;
if ($t_proxy_ssl != 1) {
return;
}
IO::Socket::SSL->start_SSL (
$t_proxy_socket,
SSL_verify_mode => 0x00,
);
$err = IO::Socket::SSL::errstr ();
if ($err ne '') {
error ($err);
}
print_log ("proxy SSL started for " . $t_proxy_socket->sockhost ());
}
################################################################################ ################################################################################
## SUB accept_connections ## SUB accept_connections
## Manage incoming connections. ## Manage incoming connections.
@ -749,6 +786,11 @@ sub serve_proxy_connection {
# Start a connection with the other Tentacle Server # Start a connection with the other Tentacle Server
open_proxy(); open_proxy();
# Start SSL for proxy
if ($t_proxy_ssl == 1) {
start_proxy_ssl();
}
my $command; my $command;
@ -1582,6 +1624,14 @@ __END__
=item I<-x> pwd B<Server password>. =item I<-x> pwd B<Server password>.
=item I<-b proxy_ip_address> B<Proxied server> address.
=item I<-g proxy_port> B<Port> of proxied server.
=item I<-C> Enable SSL for proxy without a client certificate.
=item I<-T> Enable tcpwrappers support ('Authen::Libwrap' required).
=back =back
=head1 EXIT STATUS =head1 EXIT STATUS

View File

@ -186,7 +186,7 @@ UpgradeApplicationID
{} {}
Version Version
{150329} {150406}
ViewReadme ViewReadme
{Yes} {Yes}

View File

@ -30,7 +30,7 @@ using namespace Pandora;
using namespace Pandora_Strutils; using namespace Pandora_Strutils;
#define PATH_SIZE _MAX_PATH+1 #define PATH_SIZE _MAX_PATH+1
#define PANDORA_VERSION ("6.0dev(Build 150329)") #define PANDORA_VERSION ("6.0dev(Build 150406)")
string pandora_path; string pandora_path;
string pandora_dir; string pandora_dir;

View File

@ -322,7 +322,7 @@ Pandora_Windows_Service::killTentacleProxy() {
int int
Pandora_Windows_Service::launchTentacleProxy() { Pandora_Windows_Service::launchTentacleProxy() {
string server_ip, server_port, proxy_max_connections, proxy_timeout; string server_ip, server_port, proxy_max_connections, proxy_timeout, server_ssl;
string proxy_cmd; string proxy_cmd;
PROCESS_INFORMATION pi; PROCESS_INFORMATION pi;
STARTUPINFO si; STARTUPINFO si;
@ -331,6 +331,7 @@ Pandora_Windows_Service::launchTentacleProxy() {
server_ip = conf->getValue("server_ip"); server_ip = conf->getValue("server_ip");
if (server_ip != "localhost") { if (server_ip != "localhost") {
proxy_max_connections = conf->getValue("proxy_max_connection"); proxy_max_connections = conf->getValue("proxy_max_connection");
if (proxy_max_connections == "") { if (proxy_max_connections == "") {
@ -348,9 +349,18 @@ Pandora_Windows_Service::launchTentacleProxy() {
if (server_port == "") { if (server_port == "") {
server_port = "41121"; server_port = "41121";
} }
proxy_cmd = "tentacle_server.exe -b " + server_ip + " -g " + server_port + " -c " + proxy_max_connections + " -t " + proxy_timeout; server_ssl = conf->getValue("server_ssl");
if (server_ssl == "1") {
proxy_cmd = "tentacle_server.exe -C";
}
else {
proxy_cmd = "tentacle_server.exe";
}
proxy_cmd += " -b " + server_ip + " -g " + server_port + " -c " + proxy_max_connections + " -t " + proxy_timeout;
ZeroMemory (&si, sizeof (si)); ZeroMemory (&si, sizeof (si));
ZeroMemory (&pi, sizeof (pi)); ZeroMemory (&pi, sizeof (pi));
if (CreateProcess (NULL , (CHAR *)proxy_cmd.c_str (), NULL, NULL, FALSE, if (CreateProcess (NULL , (CHAR *)proxy_cmd.c_str (), NULL, NULL, FALSE,

View File

@ -11,7 +11,7 @@ BEGIN
VALUE "LegalCopyright", "Artica ST" VALUE "LegalCopyright", "Artica ST"
VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "OriginalFilename", "PandoraAgent.exe"
VALUE "ProductName", "Pandora FMS Windows Agent" VALUE "ProductName", "Pandora FMS Windows Agent"
VALUE "ProductVersion", "(6.0dev(Build 150329))" VALUE "ProductVersion", "(6.0dev(Build 150406))"
VALUE "FileVersion", "1.0.0.0" VALUE "FileVersion", "1.0.0.0"
END END
END END

View File

@ -1,5 +1,5 @@
package: pandorafms-console package: pandorafms-console
Version: 6.0dev-150329 Version: 6.0dev-150406
Architecture: all Architecture: all
Priority: optional Priority: optional
Section: admin Section: admin

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
pandora_version="6.0dev-150329" pandora_version="6.0dev-150406"
package_pear=0 package_pear=0
package_pandora=1 package_pandora=1

View File

@ -1080,7 +1080,7 @@ function cleanFields(item) {
tinymce.get('text-label').setContent("(_VALUE_)"); tinymce.get('text-label').setContent("(_VALUE_)");
} }
fill_parent_select(); //fill_parent_select();
var anyText = $("#any_text").html(); //Trick for catch the translate text. var anyText = $("#any_text").html(); //Trick for catch the translate text.
$("#module") $("#module")

View File

@ -22,7 +22,7 @@
/** /**
* Pandora build version and version * Pandora build version and version
*/ */
$build_version = 'PC150329'; $build_version = 'PC150406';
$pandora_version = 'v6.0dev'; $pandora_version = 'v6.0dev';
// Do not overwrite default timezone set if defined. // Do not overwrite default timezone set if defined.

View File

@ -1407,6 +1407,12 @@ function config_check () {
__("Default font doesnt exist")); __("Default font doesnt exist"));
} }
if ($config['event_storm_protection']) {
set_pandora_error_for_header(
__('You need to restart server after altering this configuration setting.'),
__('Event storm protection is activated. No events will be generated during this mode.'));
}
global $develop_bypass; global $develop_bypass;
if ($develop_bypass == 1) { if ($develop_bypass == 1) {

View File

@ -2086,7 +2086,8 @@ function visual_map_create_internal_name_item($label = null, $type, $image, $age
} }
function visual_map_get_items_parents($idVisual) { function visual_map_get_items_parents($idVisual) {
$items = db_get_all_rows_filter('tlayout_data',array('id_layout' => $idVisual)); $items = db_get_all_rows_sql(sprintf("SELECT * FROM tlayout_data where id_layout = %s order by label",$idVisual));
//$items = db_get_all_fields_in_table('tlayout_data',array('id_layout' => $idVisual));
if ($items == false) { if ($items == false) {
$items = array(); $items = array();
} }

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
#: ../../godmode/menu.php:28 #: ../../godmode/menu.php:28
@ -29388,9 +29388,6 @@ msgstr ""
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "البحث عن القيمة" #~ msgstr "البحث عن القيمة"
#~ msgid "OID:"
#~ msgstr "قائمة أوراكل إنترنت (OID"
#~ msgid "Read message" #~ msgid "Read message"
#~ msgstr "قراءة رسالة" #~ msgstr "قراءة رسالة"
@ -29794,6 +29791,3 @@ msgstr ""
#~ msgid "Total data" #~ msgid "Total data"
#~ msgstr "إجمالي البيانات" #~ msgstr "إجمالي البيانات"
#~ msgid "Without permissions"
#~ msgstr "دون تصريح"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:52+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:28+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
#: ../../general/links_menu.php:20 ../../godmode/menu.php:216 #: ../../general/links_menu.php:20 ../../godmode/menu.php:216
@ -30237,12 +30237,6 @@ msgstr "Registres del sistema"
#~ msgid "Id" #~ msgid "Id"
#~ msgstr "Id" #~ msgstr "Id"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Max. Delay (sec) / Mòduls retard"
#~ msgid "Add module macro"
#~ msgstr "Afegir macro mòdul"
#~ msgid "Database sanity tool" #~ msgid "Database sanity tool"
#~ msgstr "Eina de base de dades del seny" #~ msgstr "Eina de base de dades del seny"
@ -30278,72 +30272,9 @@ msgstr "Registres del sistema"
#~ msgid "Field 3" #~ msgid "Field 3"
#~ msgstr "Camp 3" #~ msgstr "Camp 3"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Esquerra en blanc per mòduls d'inventari de xarxa"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr ""
#~ "Posi aquí la seva codi de seqüència de comandaments per al mòdul d'inventari"
#~ msgid "Invalid license."
#~ msgstr "Invalid llicència."
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "Si us plau, poseu-vos en contacte amb Artica en info@artica.es d'una "
#~ "llicència vàlida."
#~ msgid "Columns"
#~ msgstr "Columnes"
#~ msgid "Agent and monitor information"
#~ msgstr "Agent i la informació del monitor"
#~ msgid "No servers"
#~ msgstr "No hi ha servidors"
#~ msgid "Event information"
#~ msgstr "De l'esdeveniment"
#~ msgid "Without permissions"
#~ msgstr "Sense permisos"
#~ msgid "disabled"
#~ msgstr "Deshabilitat"
#~ msgid "Events replication is not enabled"
#~ msgstr "Replicació Esdeveniments no està habilitat"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr ""
#~ "Replicació Esdeveniments no està configurat correctament per a aquest "
#~ "metaconsola"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "El servidor sembla estar configurat per replicar els esdeveniments, però cap "
#~ "esdeveniment s'ha rebut encara"
#~ msgid "Unknown error"
#~ msgstr "Error desconegut"
#~ msgid "Sort the agents by "
#~ msgstr "Classificar els agents de "
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "Valor de Recerca" #~ msgstr "Valor de Recerca"
#~ msgid "Custom data:"
#~ msgstr "Dades personalitzats:"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Type:"
#~ msgstr "Tipus:"
#~ msgid "Update manager settings" #~ msgid "Update manager settings"
#~ msgstr "Actualització de valors del gestor" #~ msgstr "Actualització de valors del gestor"
@ -30369,9 +30300,6 @@ msgstr "Registres del sistema"
#~ msgid "Code / binary directory" #~ msgid "Code / binary directory"
#~ msgstr "Codi / directori de binaris" #~ msgstr "Codi / directori de binaris"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "No hi ha agents en aquesta Agrupació"
#~ msgid "Current directory is not writable by HTTP Server" #~ msgid "Current directory is not writable by HTTP Server"
#~ msgstr "Directori actual no té permisos d'escriptura pel servidor HTTP" #~ msgstr "Directori actual no té permisos d'escriptura pel servidor HTTP"

View File

@ -16,7 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: cs\n" "Language: cs\n"
@ -29593,15 +29593,9 @@ msgstr "Soubory záznamu systému"
#~ msgid "No layouts found" #~ msgid "No layouts found"
#~ msgstr "Nenalezena žádná rozržení" #~ msgstr "Nenalezena žádná rozržení"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "Hledaná hodnota" #~ msgstr "Hledaná hodnota"
#~ msgid "Custom data:"
#~ msgstr "Vlastní data:"
#~ msgid "Combined image render" #~ msgid "Combined image render"
#~ msgstr "Kombinované vykreslení obrázku" #~ msgstr "Kombinované vykreslení obrázku"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:52+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:28+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: \n" "Language: \n"
@ -31086,9 +31086,6 @@ msgstr "System-Log"
#~ msgid "No layouts found" #~ msgid "No layouts found"
#~ msgstr "Keine Layouts gefunden" #~ msgstr "Keine Layouts gefunden"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "MinMax.Al" #~ msgid "MinMax.Al"
#~ msgstr "MinMax.Al" #~ msgstr "MinMax.Al"
@ -31117,21 +31114,12 @@ msgstr "System-Log"
#~ msgid "%d hour" #~ msgid "%d hour"
#~ msgstr "%d Stunde" #~ msgstr "%d Stunde"
#~ msgid "Custom data:"
#~ msgstr "Benutzerdefinierte Daten:"
#~ msgid "Download file" #~ msgid "Download file"
#~ msgstr "Datei herunterladen" #~ msgstr "Datei herunterladen"
#~ msgid "Add module macro"
#~ msgstr "Modulmakro hinzufügen"
#~ msgid "Standard user" #~ msgid "Standard user"
#~ msgstr "Standardbenutzer" #~ msgstr "Standardbenutzer"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Max. Verzögerung (Sek.) / Module verzögert"
#~ msgid "Map element editor" #~ msgid "Map element editor"
#~ msgstr "Kartenelemente-Editor" #~ msgstr "Kartenelemente-Editor"
@ -31306,64 +31294,6 @@ msgstr "System-Log"
#~ msgid "Event not validate" #~ msgid "Event not validate"
#~ msgstr "Ereignis nicht bestätigen" #~ msgstr "Ereignis nicht bestätigen"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Fügen Sie hier ihren Skript-Code für das Bestandsmodul ein."
#~ msgid "Invalid license."
#~ msgstr "Ungültige Lizenz"
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "Bitte kontaktieren Sie Artica unter info@artica.es, um eine gültige Lizenz "
#~ "zu erhalten."
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Für Netzwerk-Bestandsmodule leer lassen."
#~ msgid "Columns"
#~ msgstr "Spalten"
#~ msgid "Agent and monitor information"
#~ msgstr "Beauftragten- und Überwachungsinformation"
#~ msgid "No servers"
#~ msgstr "Keine Server"
#~ msgid "Event information"
#~ msgstr "Ereignis-Information"
#~ msgid "Without permissions"
#~ msgstr "Ohne Erlaubnisse"
#~ msgid "disabled"
#~ msgstr "deaktiviert"
#~ msgid "Events replication is not enabled"
#~ msgstr "Ereignis-Replikation ist nicht eingeschaltet."
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr ""
#~ "Ereignis-Replikation ist nicht richtig für diese Meta-Konsole konfiguriert."
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "Der Server scheint richtig für die Replizierung von Ereignissen konfiguriert "
#~ "zu sein. Es sind bis jetzt nur noch keine Ereignisse empfangen worden."
#~ msgid "Unknown error"
#~ msgstr "Unbekannter Fehler"
#~ msgid "Sort the agents by "
#~ msgstr "Sortiere die Beauftragten nach "
#~ msgid "Type:"
#~ msgstr "Typ :"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "Es gibt keine Beauftragten in dieser Gruppierung."
#~ msgid "Checking tagente_estado table" #~ msgid "Checking tagente_estado table"
#~ msgstr "Prüfe 'tagente_estado'-Tabelle" #~ msgstr "Prüfe 'tagente_estado'-Tabelle"
@ -31382,23 +31312,3 @@ msgstr "System-Log"
#~ "Pandora FMS (Anzahl der Agenten und der laufenden Module). Wenn Sie das " #~ "Pandora FMS (Anzahl der Agenten und der laufenden Module). Wenn Sie das "
#~ "unterbinden möchten, löschen Sie das Update Plugin oder die Adresse des " #~ "unterbinden möchten, löschen Sie das Update Plugin oder die Adresse des "
#~ "Remoteservers im Plugin." #~ "Remoteservers im Plugin."
#~ msgid "Custom OID/Data"
#~ msgstr "Benutzerdefinierte OIDs / Daten"
#~ msgid "Group by OID/IP"
#~ msgstr "Gruppieren nach OID / IP"
#~ msgid "Contact Ártica ST at info@artica.es to get an auth key."
#~ msgstr ""
#~ "Bitte kontaktieren Sie Ártica ST durch 'info@artica.es', um einen "
#~ "Authentisierungsschlüssel zu erhalten."
#~ msgid "Modules status"
#~ msgstr "Modulstatus"
#~ msgid "Agents status"
#~ msgstr "Agentenstatus"
#~ msgid "Alerts status"
#~ msgstr "Alarmstatus"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:30+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: el\n" "Language: el\n"

View File

@ -8,13 +8,13 @@ msgstr ""
"Project-Id-Version: pandora-fms\n" "Project-Id-Version: pandora-fms\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-24 17:21+0100\n" "POT-Creation-Date: 2015-03-24 17:21+0100\n"
"PO-Revision-Date: 2014-10-30 12:03+0000\n" "PO-Revision-Date: 2015-03-27 14:57+0000\n"
"Last-Translator: Vanessa <florecillasamarillas@hotmail.com>\n" "Last-Translator: Andi Chandler <Unknown>\n"
"Language-Team: English (United Kingdom) <en_GB@li.org>\n" "Language-Team: English (United Kingdom) <en_GB@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:30+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: \n" "Language: \n"
@ -50,7 +50,7 @@ msgstr "QR code of the page"
#: ../../general/header.php:134 ../../general/header.php:135 #: ../../general/header.php:134 ../../general/header.php:135
#: ../../include/functions_clippy.php:128 #: ../../include/functions_clippy.php:128
msgid "Pandora FMS assistant" msgid "Pandora FMS assistant"
msgstr "" msgstr "Pandora FMS assistant"
#: ../../general/header.php:160 #: ../../general/header.php:160
#: ../../enterprise/meta/general/main_header.php:298 #: ../../enterprise/meta/general/main_header.php:298
@ -521,6 +521,9 @@ msgid ""
"learn more about Pandora FMS. Monitoring could be overwhelm, but take your " "learn more about Pandora FMS. Monitoring could be overwhelm, but take your "
"time to learn how to use the power of Pandora FMS!" "time to learn how to use the power of Pandora FMS!"
msgstr "" msgstr ""
"If this is your first time with Pandora FMS, we propose you a few links to "
"learn more about Pandora FMS. Monitoring could be overwhelm, but take your "
"time to learn how to use the power of Pandora FMS!"
#: ../../general/login_help_dialog.php:51 #: ../../general/login_help_dialog.php:51
#: ../../general/login_help_dialog.php:53 #: ../../general/login_help_dialog.php:53
@ -591,7 +594,7 @@ msgstr "You don't have access to this page"
#: ../../general/noaccess.php:26 #: ../../general/noaccess.php:26
msgid "Access to this page is restricted" msgid "Access to this page is restricted"
msgstr "" msgstr "Access to this page is restricted"
#: ../../general/noaccess.php:31 ../../enterprise/meta/general/noaccess.php:29 #: ../../general/noaccess.php:31 ../../enterprise/meta/general/noaccess.php:29
#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 #: ../../enterprise/meta/general/metaconsole_no_activated.php:21
@ -605,6 +608,10 @@ msgid ""
"\t\t\tPlease know that all attempts to access this page are recorded in " "\t\t\tPlease know that all attempts to access this page are recorded in "
"security logs of Pandora System Database" "security logs of Pandora System Database"
msgstr "" msgstr ""
"Access to this page is restricted to authorised users only, please contact "
"system administrator if you need assistance. <br/> <br/>\n"
"\t\t\tPlease know that all attempts to access this page are recorded in "
"security logs of Pandora System Database"
#: ../../general/shortcut_bar.php:165 #: ../../general/shortcut_bar.php:165
msgid "Press here to activate shortcut bar" msgid "Press here to activate shortcut bar"
@ -747,11 +754,11 @@ msgstr ""
#: ../../general/login_page.php:140 ../../mobile/include/user.class.php:295 #: ../../general/login_page.php:140 ../../mobile/include/user.class.php:295
#: ../../mobile/include/user.class.php:296 #: ../../mobile/include/user.class.php:296
msgid "Authenticator code" msgid "Authenticator code"
msgstr "" msgstr "Authenticator code"
#: ../../general/login_page.php:146 ../../mobile/include/user.class.php:300 #: ../../general/login_page.php:146 ../../mobile/include/user.class.php:300
msgid "Check code" msgid "Check code"
msgstr "" msgstr "Check code"
#: ../../general/login_page.php:154 #: ../../general/login_page.php:154
msgid "View details" msgid "View details"
@ -3869,25 +3876,25 @@ msgstr "Generated at"
#: ../../mobile/include/user.class.php:171 #: ../../mobile/include/user.class.php:171
#: ../../mobile/include/user.class.php:178 #: ../../mobile/include/user.class.php:178
msgid "Double authentication failed" msgid "Double authentication failed"
msgstr "" msgstr "Double authentication failed"
#: ../../mobile/include/user.class.php:154 #: ../../mobile/include/user.class.php:154
msgid "Secret code not found" msgid "Secret code not found"
msgstr "" msgstr "Secret code not found"
#: ../../mobile/include/user.class.php:155 #: ../../mobile/include/user.class.php:155
msgid "Please contact the administrator to reset your double authentication" msgid "Please contact the administrator to reset your double authentication"
msgstr "" msgstr "Please contact the administrator to reset your double authentication"
#: ../../mobile/include/user.class.php:172 ../../index.php:217 #: ../../mobile/include/user.class.php:172 ../../index.php:217
#: ../../enterprise/meta/index.php:236 #: ../../enterprise/meta/index.php:236
#: ../../include/ajax/double_auth.ajax.php:489 #: ../../include/ajax/double_auth.ajax.php:489
msgid "Invalid code" msgid "Invalid code"
msgstr "" msgstr "Invalid code"
#: ../../mobile/include/user.class.php:179 #: ../../mobile/include/user.class.php:179
msgid "There was an error checking the code" msgid "There was an error checking the code"
msgstr "" msgstr "There was an error checking the code"
#: ../../mobile/include/user.class.php:211 #: ../../mobile/include/user.class.php:211
msgid "Login Failed" msgid "Login Failed"
@ -4262,7 +4269,7 @@ msgstr "Create"
#: ../../godmode/reporting/visual_console_builder.data.php:72 #: ../../godmode/reporting/visual_console_builder.data.php:72
msgid "Create visual console" msgid "Create visual console"
msgstr "" msgstr "Create visual console"
#: ../../godmode/reporting/visual_console_builder.data.php:79 #: ../../godmode/reporting/visual_console_builder.data.php:79
#: ../../godmode/setup/os.builder.php:33 #: ../../godmode/setup/os.builder.php:33
@ -4682,11 +4689,11 @@ msgstr "Could not be created."
#: ../../godmode/reporting/visual_console_builder.php:167 #: ../../godmode/reporting/visual_console_builder.php:167
msgid "Successfully multiple delete." msgid "Successfully multiple delete."
msgstr "" msgstr "Successfully multiple delete."
#: ../../godmode/reporting/visual_console_builder.php:168 #: ../../godmode/reporting/visual_console_builder.php:168
msgid "Unsuccessfull multiple delete." msgid "Unsuccessfull multiple delete."
msgstr "" msgstr "Unsuccessfull multiple delete."
#: ../../godmode/reporting/visual_console_builder.php:245 #: ../../godmode/reporting/visual_console_builder.php:245
msgid "Successfully delete." msgid "Successfully delete."
@ -4882,7 +4889,7 @@ msgstr "Icon"
#: ../../include/functions_visual_map_editor.php:545 #: ../../include/functions_visual_map_editor.php:545
#: ../../include/functions_visual_map.php:2035 #: ../../include/functions_visual_map.php:2035
msgid "Box" msgid "Box"
msgstr "" msgstr "Box"
#: ../../godmode/reporting/visual_console_builder.elements.php:190 #: ../../godmode/reporting/visual_console_builder.elements.php:190
#: ../../godmode/reporting/visual_console_builder.elements.php:572 #: ../../godmode/reporting/visual_console_builder.elements.php:572
@ -5083,7 +5090,7 @@ msgstr "Filter"
#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:148
#: ../../enterprise/meta/include/functions_networkmap_meta.php:84 #: ../../enterprise/meta/include/functions_networkmap_meta.php:84
msgid "Show Options" msgid "Show Options"
msgstr "" msgstr "Show Options"
#: ../../godmode/reporting/reporting_builder.list_items.php:270 #: ../../godmode/reporting/reporting_builder.list_items.php:270
#: ../../godmode/agentes/module_manager.php:505 #: ../../godmode/agentes/module_manager.php:505
@ -5560,7 +5567,7 @@ msgstr "Free text for search: "
#: ../../godmode/reporting/reporting_builder.php:394 #: ../../godmode/reporting/reporting_builder.php:394
msgid "Show Option" msgid "Show Option"
msgstr "" msgstr "Show Option"
#: ../../godmode/reporting/reporting_builder.php:469 #: ../../godmode/reporting/reporting_builder.php:469
#: ../../operation/reporting/custom_reporting.php:38 #: ../../operation/reporting/custom_reporting.php:38
@ -5751,7 +5758,7 @@ msgstr "Descending"
#: ../../godmode/reporting/reporting_builder.item_editor.php:518 #: ../../godmode/reporting/reporting_builder.item_editor.php:518
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1020 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1020
msgid "Item Editor" msgid "Item Editor"
msgstr "" msgstr "Item Editor"
#: ../../godmode/reporting/reporting_builder.item_editor.php:537 #: ../../godmode/reporting/reporting_builder.item_editor.php:537
msgid "Not valid" msgid "Not valid"
@ -5761,7 +5768,7 @@ msgstr "Not valid"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:188 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:188
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066
msgid "Last value" msgid "Last value"
msgstr "" msgstr "Last value"
#: ../../godmode/reporting/reporting_builder.item_editor.php:596 #: ../../godmode/reporting/reporting_builder.item_editor.php:596
#: ../../godmode/reporting/reporting_builder.item_editor.php:2356 #: ../../godmode/reporting/reporting_builder.item_editor.php:2356
@ -5774,6 +5781,9 @@ msgid ""
"Information contained in this kind of reports will be always reporting the " "Information contained in this kind of reports will be always reporting the "
"most recent information" "most recent information"
msgstr "" msgstr ""
"Warning: period 0 reports cannot be used to show information back in time. "
"Information contained in this kind of reports will be always reporting the "
"most recent information"
#: ../../godmode/reporting/reporting_builder.item_editor.php:610 #: ../../godmode/reporting/reporting_builder.item_editor.php:610
#: ../../operation/integria_incidents/incident.incident.php:97 #: ../../operation/integria_incidents/incident.incident.php:97
@ -30650,15 +30660,9 @@ msgstr "System logfiles"
#~ msgid "From the last" #~ msgid "From the last"
#~ msgstr "From the last" #~ msgstr "From the last"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "S" #~ msgid "S"
#~ msgstr "S" #~ msgstr "S"
#~ msgid "Custom data:"
#~ msgstr "Custom data:"
#~ msgid "Search text" #~ msgid "Search text"
#~ msgstr "Search text" #~ msgstr "Search text"
@ -30973,76 +30977,3 @@ msgstr "System logfiles"
#~ msgid "Total Agents" #~ msgid "Total Agents"
#~ msgstr "Total Agents" #~ msgstr "Total Agents"
#~ msgid "Sort the agents by "
#~ msgstr "Sort the agents by "
#~ msgid "Type:"
#~ msgstr "Type:"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Max. Delay(sec)/Modules delayed"
#~ msgid "Add module macro"
#~ msgstr "Add module macro"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Left blank for Network Inventory Modules."
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Please place your script code here for the inventory module."
#~ msgid "Columns"
#~ msgstr "Columns"
#~ msgid "Agent and monitor information"
#~ msgstr "Agent and monitor information"
#~ msgid "Event information"
#~ msgstr "Event information"
#~ msgid "No servers"
#~ msgstr "No servers"
#~ msgid "Without permissions"
#~ msgstr "Without permissions"
#~ msgid "disabled"
#~ msgstr "Disabled"
#~ msgid "Events replication is not enabled"
#~ msgstr "Event replication is not enabled"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr "Event replication is not properly configured for this metaconsole."
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "The server seems to be configured to replicate events, but no events have "
#~ "been received yet."
#~ msgid "Unknown error"
#~ msgstr "Unknown error"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "There are no agents in this group."
#~ msgid "Custom OID/Data"
#~ msgstr "Custom OID/Data"
#~ msgid "Group by OID/IP"
#~ msgstr "Group by OID/IP"
#~ msgid "Contact Ártica ST at info@artica.es to get an auth key."
#~ msgstr "Contact Ártica ST at info@artica.es to get an auth key."
#~ msgid "Invalid license."
#~ msgstr "Invalid licence."
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr "Please contact Artica at info@artica.es for a valid licence."
#~ msgid "Report group"
#~ msgstr "Report group"

View File

@ -10,13 +10,13 @@ msgstr ""
"Project-Id-Version: index.es\n" "Project-Id-Version: index.es\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-24 17:21+0100\n" "POT-Creation-Date: 2015-03-24 17:21+0100\n"
"PO-Revision-Date: 2015-03-24 16:46+0000\n" "PO-Revision-Date: 2015-03-31 09:50+0000\n"
"Last-Translator: Vanessa <florecillasamarillas@hotmail.com>\n" "Last-Translator: Carlos Moreno <carlos.moreno@artica.es>\n"
"Language-Team: Español; Castellano <>\n" "Language-Team: Español; Castellano <>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:52+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:28+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: \n" "Language: \n"
@ -597,7 +597,7 @@ msgstr "No tiene permiso para acceder a esta página"
#: ../../general/noaccess.php:26 #: ../../general/noaccess.php:26
msgid "Access to this page is restricted" msgid "Access to this page is restricted"
msgstr "" msgstr "El acceso a esta página es restringido"
#: ../../general/noaccess.php:31 ../../enterprise/meta/general/noaccess.php:29 #: ../../general/noaccess.php:31 ../../enterprise/meta/general/noaccess.php:29
#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 #: ../../enterprise/meta/general/metaconsole_no_activated.php:21
@ -3890,7 +3890,7 @@ msgstr ""
#: ../../enterprise/meta/index.php:236 #: ../../enterprise/meta/index.php:236
#: ../../include/ajax/double_auth.ajax.php:489 #: ../../include/ajax/double_auth.ajax.php:489
msgid "Invalid code" msgid "Invalid code"
msgstr "" msgstr "Código inválido"
#: ../../mobile/include/user.class.php:179 #: ../../mobile/include/user.class.php:179
msgid "There was an error checking the code" msgid "There was an error checking the code"
@ -4269,7 +4269,7 @@ msgstr "Crear"
#: ../../godmode/reporting/visual_console_builder.data.php:72 #: ../../godmode/reporting/visual_console_builder.data.php:72
msgid "Create visual console" msgid "Create visual console"
msgstr "" msgstr "Crear consola visual"
#: ../../godmode/reporting/visual_console_builder.data.php:79 #: ../../godmode/reporting/visual_console_builder.data.php:79
#: ../../godmode/setup/os.builder.php:33 #: ../../godmode/setup/os.builder.php:33
@ -5090,7 +5090,7 @@ msgstr "Filtro"
#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:148
#: ../../enterprise/meta/include/functions_networkmap_meta.php:84 #: ../../enterprise/meta/include/functions_networkmap_meta.php:84
msgid "Show Options" msgid "Show Options"
msgstr "" msgstr "Mostrar opciones"
#: ../../godmode/reporting/reporting_builder.list_items.php:270 #: ../../godmode/reporting/reporting_builder.list_items.php:270
#: ../../godmode/agentes/module_manager.php:505 #: ../../godmode/agentes/module_manager.php:505
@ -5567,7 +5567,7 @@ msgstr "Texto libre de búsqueda "
#: ../../godmode/reporting/reporting_builder.php:394 #: ../../godmode/reporting/reporting_builder.php:394
msgid "Show Option" msgid "Show Option"
msgstr "" msgstr "Mostrar Opciones"
#: ../../godmode/reporting/reporting_builder.php:469 #: ../../godmode/reporting/reporting_builder.php:469
#: ../../operation/reporting/custom_reporting.php:38 #: ../../operation/reporting/custom_reporting.php:38
@ -5768,7 +5768,7 @@ msgstr "No válida"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:188 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:188
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066
msgid "Last value" msgid "Last value"
msgstr "" msgstr "Último valor"
#: ../../godmode/reporting/reporting_builder.item_editor.php:596 #: ../../godmode/reporting/reporting_builder.item_editor.php:596
#: ../../godmode/reporting/reporting_builder.item_editor.php:2356 #: ../../godmode/reporting/reporting_builder.item_editor.php:2356
@ -6193,7 +6193,7 @@ msgstr "Media"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1043 #: ../../godmode/reporting/reporting_builder.item_editor.php:1043
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1313 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1313
msgid "Only average" msgid "Only average"
msgstr "" msgstr "Solo media"
#: ../../godmode/reporting/reporting_builder.item_editor.php:1047 #: ../../godmode/reporting/reporting_builder.item_editor.php:1047
#: ../../godmode/massive/massive_edit_modules.php:440 #: ../../godmode/massive/massive_edit_modules.php:440
@ -6851,11 +6851,11 @@ msgstr "Actualizar perfil"
#: ../../godmode/users/configure_profile.php:148 #: ../../godmode/users/configure_profile.php:148
msgid "Update Profile" msgid "Update Profile"
msgstr "" msgstr "Actualizar Perfil"
#: ../../godmode/users/configure_profile.php:150 #: ../../godmode/users/configure_profile.php:150
msgid "Create Profile" msgid "Create Profile"
msgstr "" msgstr "Crear Perfil"
#: ../../godmode/users/configure_profile.php:159 #: ../../godmode/users/configure_profile.php:159
#: ../../godmode/users/configure_user.php:613 #: ../../godmode/users/configure_user.php:613
@ -7153,11 +7153,11 @@ msgstr "El perfil no se puede añadir"
#: ../../godmode/users/configure_user.php:422 #: ../../godmode/users/configure_user.php:422
msgid "Update User" msgid "Update User"
msgstr "" msgstr "Actualizar Usuario"
#: ../../godmode/users/configure_user.php:425 #: ../../godmode/users/configure_user.php:425
msgid "Create User" msgid "Create User"
msgstr "" msgstr "Crear Usuario"
#: ../../godmode/users/configure_user.php:442 #: ../../godmode/users/configure_user.php:442
#: ../../operation/users/user_edit.php:200 #: ../../operation/users/user_edit.php:200
@ -7320,7 +7320,7 @@ msgstr "El usuario sin permiso de acceso solo puede tener acceso al API"
#: ../../godmode/users/configure_user.php:539 #: ../../godmode/users/configure_user.php:539
msgid "Strict ACL" msgid "Strict ACL"
msgstr "" msgstr "ACL Estricto"
#: ../../godmode/users/configure_user.php:540 #: ../../godmode/users/configure_user.php:540
msgid "" msgid ""
@ -8114,7 +8114,7 @@ msgstr "No se selección ningún agente"
#: ../../godmode/massive/massive_delete_tags.php:107 #: ../../godmode/massive/massive_delete_tags.php:107
msgid "No tag selected" msgid "No tag selected"
msgstr "" msgstr "Ninguna etiqueta seleccionada"
#: ../../godmode/massive/massive_edit_agents.php:95 #: ../../godmode/massive/massive_edit_agents.php:95
msgid "No values changed" msgid "No values changed"
@ -8535,7 +8535,7 @@ msgstr "Alertas en standby"
#: ../../godmode/massive/massive_add_tags.php:43 #: ../../godmode/massive/massive_add_tags.php:43
msgid "No tags selected" msgid "No tags selected"
msgstr "" msgstr "Ninguna etiqueta seleccionada"
#: ../../godmode/massive/massive_delete_profiles.php:61 #: ../../godmode/massive/massive_delete_profiles.php:61
msgid "Not deleted. You must select an existing user" msgid "Not deleted. You must select an existing user"
@ -9006,7 +9006,7 @@ msgstr "Categoría creada con éxito"
#: ../../godmode/category/edit_category.php:139 #: ../../godmode/category/edit_category.php:139
msgid "Update category" msgid "Update category"
msgstr "" msgstr "Actualizar categoría"
#: ../../godmode/category/edit_category.php:148 #: ../../godmode/category/edit_category.php:148
#: ../../godmode/category/category.php:98 #: ../../godmode/category/category.php:98
@ -9458,11 +9458,11 @@ msgstr "No se encontraron respuestas"
#: ../../godmode/events/event_edit_filter.php:166 #: ../../godmode/events/event_edit_filter.php:166
msgid "Update Filter" msgid "Update Filter"
msgstr "" msgstr "Actualizar Filtro"
#: ../../godmode/events/event_edit_filter.php:169 #: ../../godmode/events/event_edit_filter.php:169
msgid "Create Filter" msgid "Create Filter"
msgstr "" msgstr "Crear filtro"
#: ../../godmode/events/event_edit_filter.php:179 #: ../../godmode/events/event_edit_filter.php:179
#: ../../operation/events/events_list.php:234 #: ../../operation/events/events_list.php:234
@ -9590,7 +9590,7 @@ msgstr "Respuestas"
#: ../../godmode/events/event_responses.editor.php:63 #: ../../godmode/events/event_responses.editor.php:63
msgid "Edit event responses" msgid "Edit event responses"
msgstr "" msgstr "Editar respuestas de eventos"
#: ../../godmode/events/event_responses.editor.php:93 #: ../../godmode/events/event_responses.editor.php:93
#: ../../enterprise/extensions/ipam/ipam_network.php:125 #: ../../enterprise/extensions/ipam/ipam_network.php:125
@ -10529,7 +10529,7 @@ msgstr ""
#: ../../godmode/agentes/module_manager_editor.php:467 #: ../../godmode/agentes/module_manager_editor.php:467
#: ../../godmode/agentes/module_manager_editor_common.php:579 #: ../../godmode/agentes/module_manager_editor_common.php:579
msgid "Custom macros" msgid "Custom macros"
msgstr "" msgstr "Macros personalizadas"
#: ../../godmode/agentes/module_manager_editor.php:469 #: ../../godmode/agentes/module_manager_editor.php:469
msgid "Module relations" msgid "Module relations"
@ -10602,11 +10602,11 @@ msgstr "Los ficheros conf o md5 han podido no ser borrados"
#: ../../godmode/agentes/modificar_agente.php:143 #: ../../godmode/agentes/modificar_agente.php:143
msgid "Show Agents" msgid "Show Agents"
msgstr "" msgstr "Mostrar Agentes"
#: ../../godmode/agentes/modificar_agente.php:145 #: ../../godmode/agentes/modificar_agente.php:145
msgid "Everyone" msgid "Everyone"
msgstr "" msgstr "Todos"
#: ../../godmode/agentes/modificar_agente.php:146 #: ../../godmode/agentes/modificar_agente.php:146
msgid "Only disabled" msgid "Only disabled"
@ -11392,7 +11392,7 @@ msgstr "Solo debe establecerse este valor en los módulos asíncronos"
#: ../../godmode/agentes/module_manager_editor_common.php:501 #: ../../godmode/agentes/module_manager_editor_common.php:501
msgid "Tags from policy" msgid "Tags from policy"
msgstr "" msgstr "Etiquetas desde política"
#: ../../godmode/agentes/module_manager_editor_common.php:514 #: ../../godmode/agentes/module_manager_editor_common.php:514
msgid "The module still stores data but the alerts and events will be stop" msgid "The module still stores data but the alerts and events will be stop"
@ -13296,13 +13296,13 @@ msgstr ""
#: ../../enterprise/meta/advanced/metasetup.visual.php:167 #: ../../enterprise/meta/advanced/metasetup.visual.php:167
#: ../../enterprise/meta/include/functions_meta.php:414 #: ../../enterprise/meta/include/functions_meta.php:414
msgid "Show only the group name" msgid "Show only the group name"
msgstr "" msgstr "Mostrar solo el nombre del grupo"
#: ../../godmode/setup/setup_visuals.php:482 #: ../../godmode/setup/setup_visuals.php:482
#: ../../enterprise/meta/advanced/metasetup.visual.php:169 #: ../../enterprise/meta/advanced/metasetup.visual.php:169
#: ../../include/functions_config.php:457 #: ../../include/functions_config.php:457
msgid "Show the group name instead the group icon." msgid "Show the group name instead the group icon."
msgstr "" msgstr "Mostrar el nombre del grupo en lugar de icono del grupo"
#: ../../godmode/setup/setup_visuals.php:492 #: ../../godmode/setup/setup_visuals.php:492
#: ../../include/functions_config.php:459 #: ../../include/functions_config.php:459
@ -13635,11 +13635,11 @@ msgstr "Etiqueta creada satisfactoriamente"
#: ../../godmode/tag/edit_tag.php:159 #: ../../godmode/tag/edit_tag.php:159
msgid "Update Tag" msgid "Update Tag"
msgstr "" msgstr "Actualizar Etiqueta"
#: ../../godmode/tag/edit_tag.php:162 #: ../../godmode/tag/edit_tag.php:162
msgid "Create Tag" msgid "Create Tag"
msgstr "" msgstr "Crear etiqueta"
#: ../../godmode/tag/edit_tag.php:183 #: ../../godmode/tag/edit_tag.php:183
#: ../../enterprise/meta/monitoring/wizard/wizard.php:108 #: ../../enterprise/meta/monitoring/wizard/wizard.php:108
@ -13702,7 +13702,7 @@ msgstr "URL update manager"
#: ../../godmode/update_manager/update_manager.setup.php:65 #: ../../godmode/update_manager/update_manager.setup.php:65
msgid "Proxy server:" msgid "Proxy server:"
msgstr "" msgstr "Servidor Proxy:"
#: ../../godmode/update_manager/update_manager.setup.php:67 #: ../../godmode/update_manager/update_manager.setup.php:67
msgid "Proxy server" msgid "Proxy server"
@ -13710,7 +13710,7 @@ msgstr "Servidor proxy"
#: ../../godmode/update_manager/update_manager.setup.php:69 #: ../../godmode/update_manager/update_manager.setup.php:69
msgid "Proxy port:" msgid "Proxy port:"
msgstr "" msgstr "Puerto Proxy:"
#: ../../godmode/update_manager/update_manager.setup.php:71 #: ../../godmode/update_manager/update_manager.setup.php:71
msgid "Proxy port" msgid "Proxy port"
@ -13726,7 +13726,7 @@ msgstr "Usuario del proxy"
#: ../../godmode/update_manager/update_manager.setup.php:77 #: ../../godmode/update_manager/update_manager.setup.php:77
msgid "Proxy password:" msgid "Proxy password:"
msgstr "" msgstr "Contraseña del Proxy:"
#: ../../godmode/update_manager/update_manager.setup.php:79 #: ../../godmode/update_manager/update_manager.setup.php:79
msgid "Proxy password" msgid "Proxy password"
@ -13942,11 +13942,11 @@ msgstr "Actualizar grupo"
#: ../../godmode/groups/configure_group.php:105 #: ../../godmode/groups/configure_group.php:105
msgid "Update Group" msgid "Update Group"
msgstr "" msgstr "Actualizar Grupo"
#: ../../godmode/groups/configure_group.php:107 #: ../../godmode/groups/configure_group.php:107
msgid "Create Group" msgid "Create Group"
msgstr "" msgstr "Crear Grupo"
#: ../../godmode/groups/configure_group.php:140 #: ../../godmode/groups/configure_group.php:140
msgid "You have not access to the parent." msgid "You have not access to the parent."
@ -14405,7 +14405,7 @@ msgstr "Configurar acción de alerta"
#: ../../godmode/alerts/configure_alert_action.php:97 #: ../../godmode/alerts/configure_alert_action.php:97
msgid "Update Action" msgid "Update Action"
msgstr "" msgstr "Actualizar Acción"
#: ../../godmode/alerts/configure_alert_action.php:100 #: ../../godmode/alerts/configure_alert_action.php:100
#: ../../godmode/alerts/alert_list.builder.php:126 #: ../../godmode/alerts/alert_list.builder.php:126
@ -15624,7 +15624,7 @@ msgstr "Volver a modo normal"
#: ../../operation/reporting/reporting_viewer.php:140 #: ../../operation/reporting/reporting_viewer.php:140
msgid "View Report" msgid "View Report"
msgstr "" msgstr "Ver Informe"
#: ../../operation/reporting/reporting_viewer.php:170 #: ../../operation/reporting/reporting_viewer.php:170
#: ../../enterprise/include/functions_reporting_pdf.php:3988 #: ../../enterprise/include/functions_reporting_pdf.php:3988
@ -15956,7 +15956,7 @@ msgstr "Error al actualizar la información del usuario"
#: ../../operation/users/user_edit.php:191 #: ../../operation/users/user_edit.php:191
msgid "Edit my User" msgid "Edit my User"
msgstr "" msgstr "Editar mi Usuario"
#: ../../operation/users/user_edit.php:233 #: ../../operation/users/user_edit.php:233
msgid "New Password" msgid "New Password"
@ -16026,7 +16026,7 @@ msgstr "Detalle de alertas"
#: ../../operation/users/user_edit.php:357 #: ../../operation/users/user_edit.php:357
msgid "Show information" msgid "Show information"
msgstr "" msgstr "Mostrar información"
#: ../../operation/users/user_edit.php:388 #: ../../operation/users/user_edit.php:388
msgid "" msgid ""
@ -16855,7 +16855,7 @@ msgstr "Estado del módulo"
#: ../../operation/tree.php:168 #: ../../operation/tree.php:168
msgid "Search module" msgid "Search module"
msgstr "" msgstr "Buscar módulo"
#: ../../operation/tree.php:193 #: ../../operation/tree.php:193
msgid "Tree search" msgid "Tree search"
@ -16876,23 +16876,23 @@ msgstr "Alertas disparadas"
#: ../../operation/tree.php:289 #: ../../operation/tree.php:289
msgid "Critical agents" msgid "Critical agents"
msgstr "" msgstr "Agentes Críticos"
#: ../../operation/tree.php:294 #: ../../operation/tree.php:294
msgid "Warning agents" msgid "Warning agents"
msgstr "" msgstr "Agentes en advertencia"
#: ../../operation/tree.php:299 #: ../../operation/tree.php:299
msgid "Unknown agents" msgid "Unknown agents"
msgstr "" msgstr "Agentes en desconocido"
#: ../../operation/tree.php:304 #: ../../operation/tree.php:304
msgid "Not init agents" msgid "Not init agents"
msgstr "" msgstr "Agentes no inicializados"
#: ../../operation/tree.php:309 #: ../../operation/tree.php:309
msgid "Normal agents" msgid "Normal agents"
msgstr "" msgstr "Agentes en normal"
#: ../../operation/agentes/gis_view.php:93 #: ../../operation/agentes/gis_view.php:93
msgid "Last position in " msgid "Last position in "
@ -17099,7 +17099,7 @@ msgstr ""
#: ../../operation/agentes/networkmap_list.php:370 #: ../../operation/agentes/networkmap_list.php:370
msgid "None selected" msgid "None selected"
msgstr "" msgstr "Nada seleccionado"
#: ../../operation/agentes/custom_fields.php:28 #: ../../operation/agentes/custom_fields.php:28
#: ../../operation/agentes/agent_fields.php:28 #: ../../operation/agentes/agent_fields.php:28
@ -17274,7 +17274,7 @@ msgstr "Agente desconocido"
#: ../../operation/agentes/group_view.php:90 #: ../../operation/agentes/group_view.php:90
#: ../../include/functions_reporting.php:8163 #: ../../include/functions_reporting.php:8163
msgid "Agents not init" msgid "Agents not init"
msgstr "" msgstr "Agentes no inicializados"
#: ../../operation/agentes/group_view.php:92 #: ../../operation/agentes/group_view.php:92
msgid "Not Init" msgid "Not Init"
@ -17564,7 +17564,7 @@ msgstr "Lista completa de monitores"
#: ../../operation/agentes/estado_monitores.php:150 #: ../../operation/agentes/estado_monitores.php:150
msgid "List of modules" msgid "List of modules"
msgstr "" msgstr "Lista de módulos"
#: ../../operation/agentes/estado_monitores.php:422 #: ../../operation/agentes/estado_monitores.php:422
msgid "Status:" msgid "Status:"
@ -17664,7 +17664,7 @@ msgstr "Estado del monitor"
#: ../../operation/agentes/status_monitor.php:542 #: ../../operation/agentes/status_monitor.php:542
msgid "Advanced Options" msgid "Advanced Options"
msgstr "" msgstr "Opciones Avanzadas"
#: ../../operation/agentes/status_monitor.php:984 #: ../../operation/agentes/status_monitor.php:984
#: ../../operation/search_modules.php:52 #: ../../operation/search_modules.php:52
@ -18445,11 +18445,11 @@ msgstr "La operación no puedo completarse"
#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:107 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:107
msgid "Advance Options" msgid "Advance Options"
msgstr "" msgstr "Opciones Avanzadas"
#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:69 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:69
msgid "Advance Reporting" msgid "Advance Reporting"
msgstr "" msgstr "Opciones Avanzadas"
#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:101 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:101
#: ../../enterprise/godmode/reporting/reporting_builder.template.php:79 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:79
@ -18611,7 +18611,7 @@ msgstr "No se pudo aplicar"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221
msgid "Create template report wizard" msgid "Create template report wizard"
msgstr "" msgstr "Creación de informe con Asistente de Plantillas"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:142 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:142
@ -18636,7 +18636,7 @@ msgstr "Grupo de destino"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310
msgid "Filter by" msgid "Filter by"
msgstr "" msgstr "Filtrar por"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:366 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:366
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:162 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:162
@ -18648,7 +18648,7 @@ msgstr "Filtrar agente"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:373 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:373
msgid "Filter tag" msgid "Filter tag"
msgstr "" msgstr "Filtro etiqueta"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:385 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:385
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:173
@ -18908,11 +18908,11 @@ msgstr ""
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102
msgid "Tags unused" msgid "Tags unused"
msgstr "" msgstr "Etiquetas sin usar"
#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118
msgid "Tags used" msgid "Tags used"
msgstr "" msgstr "Etiquetas usadas"
#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165
#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
@ -21428,7 +21428,7 @@ msgstr "Pendiente de generar"
#: ../../enterprise/operation/agentes/networkmap_enterprise.php:249 #: ../../enterprise/operation/agentes/networkmap_enterprise.php:249
msgid "There are no maps defined." msgid "There are no maps defined."
msgstr "" msgstr "No hay mapas definidos."
#: ../../enterprise/operation/agentes/networkmap_enterprise.php:259 #: ../../enterprise/operation/agentes/networkmap_enterprise.php:259
#: ../../enterprise/meta/include/functions_networkmap_meta.php:180 #: ../../enterprise/meta/include/functions_networkmap_meta.php:180
@ -21532,11 +21532,12 @@ msgstr "(Adoptados)(Desvinculados)"
#: ../../enterprise/load_enterprise.php:306 #: ../../enterprise/load_enterprise.php:306
msgid "Invalid licence." msgid "Invalid licence."
msgstr "" msgstr "Licencia inválida"
#: ../../enterprise/load_enterprise.php:307 #: ../../enterprise/load_enterprise.php:307
msgid "Please contact Artica at info@artica.es for a valid licence." msgid "Please contact Artica at info@artica.es for a valid licence."
msgstr "" msgstr ""
"Por favor contacte con Ártica en info@artica.es para una licencia válida."
#: ../../enterprise/load_enterprise.php:309 #: ../../enterprise/load_enterprise.php:309
msgid "Or disable Pandora FMS enterprise" msgid "Or disable Pandora FMS enterprise"
@ -21601,11 +21602,11 @@ msgstr ""
#: ../../enterprise/load_enterprise.php:666 #: ../../enterprise/load_enterprise.php:666
msgid "E-mail:" msgid "E-mail:"
msgstr "" msgstr "E-mail:"
#: ../../enterprise/load_enterprise.php:670 #: ../../enterprise/load_enterprise.php:670
msgid "Contact:" msgid "Contact:"
msgstr "" msgstr "Contacto:"
#: ../../enterprise/load_enterprise.php:674 #: ../../enterprise/load_enterprise.php:674
msgid "Auth Key:" msgid "Auth Key:"
@ -21618,7 +21619,7 @@ msgstr ""
#: ../../enterprise/load_enterprise.php:690 #: ../../enterprise/load_enterprise.php:690
msgid "ERROR:" msgid "ERROR:"
msgstr "" msgstr "ERROR:"
#: ../../enterprise/load_enterprise.php:690 #: ../../enterprise/load_enterprise.php:690
msgid "When connecting to Artica server." msgid "When connecting to Artica server."
@ -21736,11 +21737,11 @@ msgstr "Vista de grupo"
#: ../../enterprise/meta/monitoring/group_view.php:74 #: ../../enterprise/meta/monitoring/group_view.php:74
msgid "Summary of the status groups" msgid "Summary of the status groups"
msgstr "" msgstr "Resumen de los grupos por estatus"
#: ../../enterprise/meta/monitoring/group_view.php:94 #: ../../enterprise/meta/monitoring/group_view.php:94
msgid "Group or Tag" msgid "Group or Tag"
msgstr "" msgstr "Grupo o Etiqueta"
#: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40
#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84
@ -21897,15 +21898,15 @@ msgstr "Vista táctica"
#: ../../enterprise/meta/monitoring/tactical.php:215 #: ../../enterprise/meta/monitoring/tactical.php:215
msgid "Report of state" msgid "Report of state"
msgstr "" msgstr "Informe de estado"
#: ../../enterprise/meta/monitoring/tactical.php:340 #: ../../enterprise/meta/monitoring/tactical.php:340
msgid "Report of events (last hour)" msgid "Report of events (last hour)"
msgstr "" msgstr "Informe de eventos (última hora)"
#: ../../enterprise/meta/monitoring/tactical.php:356 #: ../../enterprise/meta/monitoring/tactical.php:356
msgid "Info of state in events (last hour)" msgid "Info of state in events (last hour)"
msgstr "" msgstr "Información del estado en los eventos (última hora)"
#: ../../enterprise/meta/monitoring/tactical.php:371 #: ../../enterprise/meta/monitoring/tactical.php:371
msgid "More events" msgid "More events"
@ -21973,7 +21974,7 @@ msgstr "No se puede mover"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124
msgid "Move Agents" msgid "Move Agents"
msgstr "" msgstr "Mover Agentes"
#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:137 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:137
msgid "Source Server" msgid "Source Server"
@ -22181,7 +22182,7 @@ msgstr "Sólo bases de datos"
#: ../../enterprise/meta/advanced/policymanager.apply.php:188 #: ../../enterprise/meta/advanced/policymanager.apply.php:188
msgid "Apply Policies" msgid "Apply Policies"
msgstr "" msgstr "Aplicar Políticas"
#: ../../enterprise/meta/advanced/synchronizing.user.php:215 #: ../../enterprise/meta/advanced/synchronizing.user.php:215
#, php-format #, php-format
@ -22225,7 +22226,7 @@ msgstr ""
#: ../../enterprise/meta/advanced/synchronizing.user.php:498 #: ../../enterprise/meta/advanced/synchronizing.user.php:498
msgid "Synchronizing Users" msgid "Synchronizing Users"
msgstr "" msgstr "Sincronizando Usuarios"
#: ../../enterprise/meta/advanced/synchronizing.user.php:553 #: ../../enterprise/meta/advanced/synchronizing.user.php:553
msgid "Profile mode" msgid "Profile mode"
@ -22334,7 +22335,7 @@ msgstr "Creadas/actualizadas %s/%s plantillas"
#: ../../enterprise/meta/advanced/synchronizing.alert.php:324 #: ../../enterprise/meta/advanced/synchronizing.alert.php:324
msgid "Synchronizing Alerts" msgid "Synchronizing Alerts"
msgstr "" msgstr "Sincronizando Alertas"
#: ../../enterprise/meta/advanced/synchronizing.group.php:103 #: ../../enterprise/meta/advanced/synchronizing.group.php:103
#, php-format #, php-format
@ -22384,7 +22385,7 @@ msgstr "NInguna actualización o creación de grupo"
#: ../../enterprise/meta/advanced/synchronizing.group.php:227 #: ../../enterprise/meta/advanced/synchronizing.group.php:227
msgid "Synchronizing Groups" msgid "Synchronizing Groups"
msgstr "" msgstr "Sincronizando Grupos"
#: ../../enterprise/meta/advanced/synchronizing.tag.php:124 #: ../../enterprise/meta/advanced/synchronizing.tag.php:124
#, php-format #, php-format
@ -22398,7 +22399,7 @@ msgstr "Creados/actualizados %s/%s tags"
#: ../../enterprise/meta/advanced/synchronizing.tag.php:138 #: ../../enterprise/meta/advanced/synchronizing.tag.php:138
msgid "Synchronizing Tags" msgid "Synchronizing Tags"
msgstr "" msgstr "Sincronizando Etiquetas"
#: ../../enterprise/meta/advanced/metasetup.php:49 #: ../../enterprise/meta/advanced/metasetup.php:49
msgid "Consoles Setup" msgid "Consoles Setup"
@ -22930,7 +22931,7 @@ msgstr "Gracias por usar Pandora FMS"
#: ../../enterprise/dashboard/widgets/tree_view.php:24 #: ../../enterprise/dashboard/widgets/tree_view.php:24
msgid "Show the tree view" msgid "Show the tree view"
msgstr "" msgstr "Mostrar la vista de árbol"
#: ../../enterprise/dashboard/widgets/tree_view.php:27 #: ../../enterprise/dashboard/widgets/tree_view.php:27
#: ../../enterprise/dashboard/widgets/url.php:26 #: ../../enterprise/dashboard/widgets/url.php:26
@ -25155,11 +25156,11 @@ msgstr "Siguiente IP disponible"
#: ../../enterprise/extensions/check_acls.php:16 #: ../../enterprise/extensions/check_acls.php:16
msgid "ACL users for this agent" msgid "ACL users for this agent"
msgstr "" msgstr "Usuarios ACL para este agente"
#: ../../enterprise/extensions/check_acls.php:100 #: ../../enterprise/extensions/check_acls.php:100
msgid "There are no defined users" msgid "There are no defined users"
msgstr "" msgstr "No hay usuarios definidos"
#: ../../enterprise/extensions/check_acls.php:104 #: ../../enterprise/extensions/check_acls.php:104
msgid "ACL module tags for the modules in this agent" msgid "ACL module tags for the modules in this agent"
@ -25175,7 +25176,7 @@ msgstr ""
#: ../../enterprise/extensions/check_acls.php:201 #: ../../enterprise/extensions/check_acls.php:201
msgid "Check ACL" msgid "Check ACL"
msgstr "" msgstr "Chequear ACL"
#: ../../enterprise/extensions/backup/main.php:53 #: ../../enterprise/extensions/backup/main.php:53
msgid "Pandora database backup utility" msgid "Pandora database backup utility"
@ -25401,7 +25402,7 @@ msgstr "No existe un agente con este nombre"
#: ../../include/functions_api.php:886 #: ../../include/functions_api.php:886
msgid "Does not exist module with this name." msgid "Does not exist module with this name."
msgstr "" msgstr "No existe módulos con este nombre."
#: ../../include/functions_api.php:1231 #: ../../include/functions_api.php:1231
msgid "Correct Delete" msgid "Correct Delete"
@ -28374,20 +28375,20 @@ msgstr "Estado actual"
#: ../../include/functions_reporting.php:8137 #: ../../include/functions_reporting.php:8137
msgid "Agents critical" msgid "Agents critical"
msgstr "" msgstr "Agentes críticos"
#: ../../include/functions_reporting.php:8142 #: ../../include/functions_reporting.php:8142
msgid "Agents warning" msgid "Agents warning"
msgstr "" msgstr "Agentes warning"
#: ../../include/functions_reporting.php:8150 #: ../../include/functions_reporting.php:8150
msgid "Agents ok" msgid "Agents ok"
msgstr "" msgstr "Agentes ok"
#: ../../include/functions_reporting.php:8176 #: ../../include/functions_reporting.php:8176
#: ../../include/functions_reporting.php:8185 #: ../../include/functions_reporting.php:8185
msgid "Agents by status" msgid "Agents by status"
msgstr "" msgstr "Agentes por estado"
#: ../../include/functions_reporting.php:8231 #: ../../include/functions_reporting.php:8231
#: ../../include/functions_reporting.php:8239 #: ../../include/functions_reporting.php:8239
@ -28397,29 +28398,29 @@ msgstr "Resumen de nodos"
#: ../../include/functions_reporting.php:8263 #: ../../include/functions_reporting.php:8263
#: ../../include/functions_reporting.php:8286 #: ../../include/functions_reporting.php:8286
msgid "Warning events" msgid "Warning events"
msgstr "" msgstr "Eventos en advertencia"
#: ../../include/functions_reporting.php:8269 #: ../../include/functions_reporting.php:8269
#: ../../include/functions_reporting.php:8290 #: ../../include/functions_reporting.php:8290
msgid "OK events" msgid "OK events"
msgstr "" msgstr "Eventos OK"
#: ../../include/functions_reporting.php:8275 #: ../../include/functions_reporting.php:8275
#: ../../include/functions_reporting.php:8294 #: ../../include/functions_reporting.php:8294
msgid "Unknown events" msgid "Unknown events"
msgstr "" msgstr "Eventos desconocidos"
#: ../../include/functions_reporting.php:8343 #: ../../include/functions_reporting.php:8343
msgid "Last activity in Pandora FMS console" msgid "Last activity in Pandora FMS console"
msgstr "" msgstr "Última actividad en la consola de Pandora FMS"
#: ../../include/functions_reporting.php:8463 #: ../../include/functions_reporting.php:8463
msgid "Events info (1hr.)" msgid "Events info (1hr.)"
msgstr "" msgstr "Información de Eventos (1hr.)"
#: ../../include/functions_reporting.php:8476 #: ../../include/functions_reporting.php:8476
msgid "Events info (1hr)" msgid "Events info (1hr)"
msgstr "" msgstr "Información de Eventos (1hr.)"
#: ../../include/graphs/functions_flot.php:302 #: ../../include/graphs/functions_flot.php:302
msgid "Cancel zoom" msgid "Cancel zoom"
@ -28509,7 +28510,7 @@ msgstr ""
#: ../../include/ajax/double_auth.ajax.php:203 #: ../../include/ajax/double_auth.ajax.php:203
#: ../../include/ajax/double_auth.ajax.php:294 #: ../../include/ajax/double_auth.ajax.php:294
msgid "Continue" msgid "Continue"
msgstr "" msgstr "Continuar"
#: ../../include/ajax/double_auth.ajax.php:219 #: ../../include/ajax/double_auth.ajax.php:219
msgid "Are you installed the app yet?" msgid "Are you installed the app yet?"
@ -28856,7 +28857,7 @@ msgstr ""
#: ../../include/class/Tree.class.php:1281 #: ../../include/class/Tree.class.php:1281
msgid "NO DATA" msgid "NO DATA"
msgstr "" msgstr "SIN DATOS"
#: ../../include/functions_visual_map.php:823 #: ../../include/functions_visual_map.php:823
msgid "Last value: " msgid "Last value: "
@ -28931,7 +28932,7 @@ msgstr "Ir a \"editar agentes\""
#: ../../include/functions_treeview.php:433 #: ../../include/functions_treeview.php:433
msgid "Agent data" msgid "Agent data"
msgstr "" msgstr "Datos de agentes"
#: ../../include/functions_treeview.php:506 #: ../../include/functions_treeview.php:506
msgid "Advanced information" msgid "Advanced information"
@ -29832,7 +29833,7 @@ msgstr "Vista de Agentes/Alertas"
#: ../../extensions/db_status.php:43 ../../extensions/db_status.php:365 #: ../../extensions/db_status.php:43 ../../extensions/db_status.php:365
msgid "DB Status" msgid "DB Status"
msgstr "" msgstr "Estado BD"
#: ../../extensions/db_status.php:56 #: ../../extensions/db_status.php:56
msgid "" msgid ""
@ -29846,7 +29847,7 @@ msgstr ""
#: ../../extensions/db_status.php:63 #: ../../extensions/db_status.php:63
msgid "DB settings" msgid "DB settings"
msgstr "" msgstr "Configuración BD"
#: ../../extensions/db_status.php:67 #: ../../extensions/db_status.php:67
msgid "DB User with privileges" msgid "DB User with privileges"
@ -31229,15 +31230,9 @@ msgstr "Logs sistema"
#~ msgid "hour" #~ msgid "hour"
#~ msgstr "hora" #~ msgstr "hora"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Manage SNMP console" #~ msgid "Manage SNMP console"
#~ msgstr "Consola SNMP" #~ msgstr "Consola SNMP"
#~ msgid "Custom data:"
#~ msgstr "Datos personalizados:"
#~ msgid "" #~ msgid ""
#~ "Pandora FMS Sanity tool is used to remove bad database structure data, " #~ "Pandora FMS Sanity tool is used to remove bad database structure data, "
#~ "created modules with missing status, or modules that cannot be initialized " #~ "created modules with missing status, or modules that cannot be initialized "
@ -31255,91 +31250,3 @@ msgstr "Logs sistema"
#~ "datos esta también implementada en <b>Pandora_db.pl</b> de modo que debería " #~ "datos esta también implementada en <b>Pandora_db.pl</b> de modo que debería "
#~ "ejecutarla cada día o cada semana. Esta herramienta no COMPACTA O REDUCE su " #~ "ejecutarla cada día o cada semana. Esta herramienta no COMPACTA O REDUCE su "
#~ "base de datos, solo elimina las estructuras corruptas." #~ "base de datos, solo elimina las estructuras corruptas."
#~ msgid "Sort the agents by "
#~ msgstr "Listar los agentes por "
#~ msgid "Type:"
#~ msgstr "Tipo:"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "No hay agentes en esta agrupación"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Max. Demora (Sec)/Modulos retrasados"
#~ msgid "Add module macro"
#~ msgstr "Añadir macro de módulo"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Módulos de inventario de red en blanco"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Introduzca aquí el código de script para el módulo de inventario"
#~ msgid "Invalid license."
#~ msgstr "Licencia no válida"
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "Por favor, póngase en contacto con info@artica.es para obtener una licencia "
#~ "válida."
#~ msgid "Columns"
#~ msgstr "Columnas"
#~ msgid "Agent and monitor information"
#~ msgstr "Información sobre el agente y el monitor"
#~ msgid "Event information"
#~ msgstr "Información del evento"
#~ msgid "No servers"
#~ msgstr "No hay servidores"
#~ msgid "Without permissions"
#~ msgstr "Sin permisos"
#~ msgid "disabled"
#~ msgstr "desactivado"
#~ msgid "Events replication is not enabled"
#~ msgstr "La replicación de eventos no está habilitada"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr ""
#~ "La replicación eventos no está configurado correctamente para esta "
#~ "metaconsola"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "El servidor parece estar configurado para replicar eventos, pero no se han "
#~ "recibido eventos todavía"
#~ msgid "Unknown error"
#~ msgstr "Error desconocido"
#~ msgid "Custom OID/Data"
#~ msgstr "OID/Data Personalizado"
#~ msgid "Contact Ártica ST at info@artica.es to get an auth key."
#~ msgstr ""
#~ "Contactar con Artica ST en info@artica.es para obtener una clave de "
#~ "autenticación"
#~ msgid "Group by OID/IP"
#~ msgstr "Agrupar por OID/IP"
#~ msgid "Report group"
#~ msgstr "Informe de grupo"
#~ msgid "Modules status"
#~ msgstr "Estado de los módulos"
#~ msgid "Agents status"
#~ msgstr "Estado de los agentes"
#~ msgid "Alerts status"
#~ msgstr "Estado de las alertas"

View File

@ -9,13 +9,13 @@ msgstr ""
"Project-Id-Version: pandora-fr\n" "Project-Id-Version: pandora-fr\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-03-24 17:21+0100\n" "POT-Creation-Date: 2015-03-24 17:21+0100\n"
"PO-Revision-Date: 2014-10-01 22:06+0000\n" "PO-Revision-Date: 2015-03-29 11:01+0000\n"
"Last-Translator: katalina rodriguez <Unknown>\n" "Last-Translator: Jean Marc <Unknown>\n"
"Language-Team: French <fr@li.org>\n" "Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:52+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:28+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: fr\n" "Language: fr\n"
@ -61,12 +61,12 @@ msgstr "Pret"
#: ../../general/header.php:107 ../../general/header.php:108 #: ../../general/header.php:107 ../../general/header.php:108
msgid "QR Code of the page" msgid "QR Code of the page"
msgstr "" msgstr "Code QR de la page"
#: ../../general/header.php:112 #: ../../general/header.php:112
#: ../../operation/visual_console/public_console.php:104 #: ../../operation/visual_console/public_console.php:104
msgid "QR code of the page" msgid "QR code of the page"
msgstr "" msgstr "Code QR de la page"
#: ../../general/header.php:134 ../../general/header.php:135 #: ../../general/header.php:134 ../../general/header.php:135
#: ../../include/functions_clippy.php:128 #: ../../include/functions_clippy.php:128
@ -614,7 +614,7 @@ msgstr "Vous n'avez pas l'autorisation pour accéder à cette page"
#: ../../general/noaccess.php:26 #: ../../general/noaccess.php:26
msgid "Access to this page is restricted" msgid "Access to this page is restricted"
msgstr "" msgstr "L'accès à cette page est limité"
#: ../../general/noaccess.php:31 ../../enterprise/meta/general/noaccess.php:29 #: ../../general/noaccess.php:31 ../../enterprise/meta/general/noaccess.php:29
#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 #: ../../enterprise/meta/general/metaconsole_no_activated.php:21
@ -3877,7 +3877,7 @@ msgstr ""
#: ../../mobile/include/user.class.php:154 #: ../../mobile/include/user.class.php:154
msgid "Secret code not found" msgid "Secret code not found"
msgstr "" msgstr "Code secret introuvable"
#: ../../mobile/include/user.class.php:155 #: ../../mobile/include/user.class.php:155
msgid "Please contact the administrator to reset your double authentication" msgid "Please contact the administrator to reset your double authentication"
@ -3887,7 +3887,7 @@ msgstr ""
#: ../../enterprise/meta/index.php:236 #: ../../enterprise/meta/index.php:236
#: ../../include/ajax/double_auth.ajax.php:489 #: ../../include/ajax/double_auth.ajax.php:489
msgid "Invalid code" msgid "Invalid code"
msgstr "" msgstr "Code non valide"
#: ../../mobile/include/user.class.php:179 #: ../../mobile/include/user.class.php:179
msgid "There was an error checking the code" msgid "There was an error checking the code"
@ -5088,7 +5088,7 @@ msgstr "Filtre"
#: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 #: ../../enterprise/meta/advanced/metasetup.translate_string.php:148
#: ../../enterprise/meta/include/functions_networkmap_meta.php:84 #: ../../enterprise/meta/include/functions_networkmap_meta.php:84
msgid "Show Options" msgid "Show Options"
msgstr "" msgstr "Afficher les options"
#: ../../godmode/reporting/reporting_builder.list_items.php:270 #: ../../godmode/reporting/reporting_builder.list_items.php:270
#: ../../godmode/agentes/module_manager.php:505 #: ../../godmode/agentes/module_manager.php:505
@ -5504,7 +5504,7 @@ msgstr ""
#: ../../godmode/reporting/reporting_builder.php:78 #: ../../godmode/reporting/reporting_builder.php:78
msgid "An error has ocurred" msgid "An error has ocurred"
msgstr "" msgstr "Une erreur s'est produite"
#: ../../godmode/reporting/reporting_builder.php:279 #: ../../godmode/reporting/reporting_builder.php:279
#: ../../godmode/reporting/reporting_builder.php:1568 #: ../../godmode/reporting/reporting_builder.php:1568
@ -5569,7 +5569,7 @@ msgstr "Texte libre pour la recherche: "
#: ../../godmode/reporting/reporting_builder.php:394 #: ../../godmode/reporting/reporting_builder.php:394
msgid "Show Option" msgid "Show Option"
msgstr "" msgstr "Afficher les options"
#: ../../godmode/reporting/reporting_builder.php:469 #: ../../godmode/reporting/reporting_builder.php:469
#: ../../operation/reporting/custom_reporting.php:38 #: ../../operation/reporting/custom_reporting.php:38
@ -5770,7 +5770,7 @@ msgstr "Non valide"
#: ../../enterprise/godmode/reporting/reporting_builder.global.php:188 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:188
#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066
msgid "Last value" msgid "Last value"
msgstr "" msgstr "Dernière valeur"
#: ../../godmode/reporting/reporting_builder.item_editor.php:596 #: ../../godmode/reporting/reporting_builder.item_editor.php:596
#: ../../godmode/reporting/reporting_builder.item_editor.php:2356 #: ../../godmode/reporting/reporting_builder.item_editor.php:2356
@ -6857,7 +6857,7 @@ msgstr ""
#: ../../godmode/users/configure_profile.php:150 #: ../../godmode/users/configure_profile.php:150
msgid "Create Profile" msgid "Create Profile"
msgstr "" msgstr "Créer le profil"
#: ../../godmode/users/configure_profile.php:159 #: ../../godmode/users/configure_profile.php:159
#: ../../godmode/users/configure_user.php:613 #: ../../godmode/users/configure_user.php:613
@ -7160,7 +7160,7 @@ msgstr ""
#: ../../godmode/users/configure_user.php:425 #: ../../godmode/users/configure_user.php:425
msgid "Create User" msgid "Create User"
msgstr "" msgstr "Créer l'utilisateur"
#: ../../godmode/users/configure_user.php:442 #: ../../godmode/users/configure_user.php:442
#: ../../operation/users/user_edit.php:200 #: ../../operation/users/user_edit.php:200
@ -7944,14 +7944,14 @@ msgstr "Tout changement d'état"
#: ../../godmode/agentes/module_manager_editor_common.php:277 #: ../../godmode/agentes/module_manager_editor_common.php:277
#: ../../enterprise/godmode/modules/configure_local_component.php:253 #: ../../enterprise/godmode/modules/configure_local_component.php:253
msgid "To normal" msgid "To normal"
msgstr "" msgstr "À la normale"
#: ../../godmode/massive/massive_edit_modules.php:476 #: ../../godmode/massive/massive_edit_modules.php:476
#: ../../godmode/modules/manage_network_components_form_common.php:140 #: ../../godmode/modules/manage_network_components_form_common.php:140
#: ../../godmode/agentes/module_manager_editor_common.php:279 #: ../../godmode/agentes/module_manager_editor_common.php:279
#: ../../enterprise/godmode/modules/configure_local_component.php:255 #: ../../enterprise/godmode/modules/configure_local_component.php:255
msgid "To warning" msgid "To warning"
msgstr "" msgstr "Pour avertissement"
#: ../../godmode/massive/massive_edit_modules.php:477 #: ../../godmode/massive/massive_edit_modules.php:477
#: ../../godmode/modules/manage_network_components_form_common.php:142 #: ../../godmode/modules/manage_network_components_form_common.php:142
@ -9465,7 +9465,7 @@ msgstr ""
#: ../../godmode/events/event_edit_filter.php:169 #: ../../godmode/events/event_edit_filter.php:169
msgid "Create Filter" msgid "Create Filter"
msgstr "" msgstr "Créer le filtre"
#: ../../godmode/events/event_edit_filter.php:179 #: ../../godmode/events/event_edit_filter.php:179
#: ../../operation/events/events_list.php:234 #: ../../operation/events/events_list.php:234
@ -9903,7 +9903,7 @@ msgstr "Exécution"
#: ../../godmode/agentes/planned_downtime.editor.php:334 #: ../../godmode/agentes/planned_downtime.editor.php:334
#: ../../godmode/agentes/planned_downtime.list.php:252 #: ../../godmode/agentes/planned_downtime.list.php:252
msgid "Once" msgid "Once"
msgstr "" msgstr "Une fois"
#: ../../godmode/agentes/planned_downtime.editor.php:335 #: ../../godmode/agentes/planned_downtime.editor.php:335
#: ../../godmode/agentes/planned_downtime.list.php:252 #: ../../godmode/agentes/planned_downtime.list.php:252
@ -10614,7 +10614,7 @@ msgstr ""
#: ../../godmode/agentes/modificar_agente.php:145 #: ../../godmode/agentes/modificar_agente.php:145
msgid "Everyone" msgid "Everyone"
msgstr "" msgstr "Tout le monde"
#: ../../godmode/agentes/modificar_agente.php:146 #: ../../godmode/agentes/modificar_agente.php:146
msgid "Only disabled" msgid "Only disabled"
@ -12749,11 +12749,11 @@ msgstr ""
#: ../../godmode/setup/setup_general.php:247 #: ../../godmode/setup/setup_general.php:247
msgid "On demand" msgid "On demand"
msgstr "" msgstr "À la demande"
#: ../../godmode/setup/setup_general.php:248 #: ../../godmode/setup/setup_general.php:248
msgid "Expert" msgid "Expert"
msgstr "" msgstr "Expert"
#: ../../godmode/setup/setup_general.php:250 #: ../../godmode/setup/setup_general.php:250
#: ../../include/functions_config.php:186 #: ../../include/functions_config.php:186
@ -13329,7 +13329,7 @@ msgstr ""
#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 #: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224
msgid "Expiration" msgid "Expiration"
msgstr "" msgstr "Expiration"
#: ../../godmode/setup/news.php:215 #: ../../godmode/setup/news.php:215
msgid "There are no defined news" msgid "There are no defined news"
@ -13343,7 +13343,7 @@ msgstr "Auteur"
#: ../../godmode/setup/news.php:242 #: ../../godmode/setup/news.php:242
msgid "Modal" msgid "Modal"
msgstr "" msgstr "Modale"
#: ../../godmode/setup/news.php:245 #: ../../godmode/setup/news.php:245
msgid "Board" msgid "Board"
@ -13429,7 +13429,7 @@ msgstr "Pour obtenir votre <b> Pandora FMS Enterprise License </ b>:"
#: ../../godmode/setup/license.php:90 #: ../../godmode/setup/license.php:90
#, php-format #, php-format
msgid "Go to %s" msgid "Go to %s"
msgstr "" msgstr "Aller à %s"
#: ../../godmode/setup/license.php:93 #: ../../godmode/setup/license.php:93
msgid "Enter the <b>auth key</b> and the following <b>request key</b>:" msgid "Enter the <b>auth key</b> and the following <b>request key</b>:"
@ -13924,11 +13924,11 @@ msgstr "Actualiser le groupe"
#: ../../godmode/groups/configure_group.php:105 #: ../../godmode/groups/configure_group.php:105
msgid "Update Group" msgid "Update Group"
msgstr "" msgstr "Mettre à jour le groupe"
#: ../../godmode/groups/configure_group.php:107 #: ../../godmode/groups/configure_group.php:107
msgid "Create Group" msgid "Create Group"
msgstr "" msgstr "Créer le groupe"
#: ../../godmode/groups/configure_group.php:140 #: ../../godmode/groups/configure_group.php:140
msgid "You have not access to the parent." msgid "You have not access to the parent."
@ -14384,7 +14384,7 @@ msgstr "Configurer l'action d'alerte"
#: ../../godmode/alerts/configure_alert_action.php:97 #: ../../godmode/alerts/configure_alert_action.php:97
msgid "Update Action" msgid "Update Action"
msgstr "" msgstr "Mettre à jour l'action"
#: ../../godmode/alerts/configure_alert_action.php:100 #: ../../godmode/alerts/configure_alert_action.php:100
#: ../../godmode/alerts/alert_list.builder.php:126 #: ../../godmode/alerts/alert_list.builder.php:126
@ -15599,7 +15599,7 @@ msgstr "Retourner au mode normal"
#: ../../operation/reporting/reporting_viewer.php:140 #: ../../operation/reporting/reporting_viewer.php:140
msgid "View Report" msgid "View Report"
msgstr "" msgstr "Afficher le rapport"
#: ../../operation/reporting/reporting_viewer.php:170 #: ../../operation/reporting/reporting_viewer.php:170
#: ../../enterprise/include/functions_reporting_pdf.php:3988 #: ../../enterprise/include/functions_reporting_pdf.php:3988
@ -16000,7 +16000,7 @@ msgstr "Detail des alertes"
#: ../../operation/users/user_edit.php:357 #: ../../operation/users/user_edit.php:357
msgid "Show information" msgid "Show information"
msgstr "" msgstr "Afficher les informations"
#: ../../operation/users/user_edit.php:388 #: ../../operation/users/user_edit.php:388
msgid "" msgid ""
@ -16038,7 +16038,7 @@ msgstr ""
#: ../../operation/users/user_edit.php:674 #: ../../operation/users/user_edit.php:674
msgid "Deactivate" msgid "Deactivate"
msgstr "" msgstr "Désactiver"
#: ../../operation/users/user_edit.php:706 #: ../../operation/users/user_edit.php:706
msgid "The double autentication was deactivated successfully" msgid "The double autentication was deactivated successfully"
@ -17367,7 +17367,7 @@ msgstr "Vue de la topologie"
#: ../../operation/agentes/networkmap.php:219 #: ../../operation/agentes/networkmap.php:219
#: ../../operation/agentes/networkmap.php:289 #: ../../operation/agentes/networkmap.php:289
msgid "Dynamic view" msgid "Dynamic view"
msgstr "" msgstr "Vue dynamique"
#: ../../operation/agentes/networkmap.php:224 #: ../../operation/agentes/networkmap.php:224
#: ../../operation/agentes/networkmap.php:292 #: ../../operation/agentes/networkmap.php:292
@ -17642,7 +17642,7 @@ msgstr "Status du moniteur"
#: ../../operation/agentes/status_monitor.php:542 #: ../../operation/agentes/status_monitor.php:542
msgid "Advanced Options" msgid "Advanced Options"
msgstr "" msgstr "Options avancées"
#: ../../operation/agentes/status_monitor.php:984 #: ../../operation/agentes/status_monitor.php:984
#: ../../operation/search_modules.php:52 #: ../../operation/search_modules.php:52
@ -18602,7 +18602,7 @@ msgstr ""
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310
msgid "Filter by" msgid "Filter by"
msgstr "" msgstr "Filtrer par"
#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:366 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:366
#: ../../enterprise/godmode/reporting/graph_template_wizard.php:162 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:162
@ -18666,11 +18666,11 @@ msgstr ""
#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:114 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:114
msgid "Available" msgid "Available"
msgstr "" msgstr "Disponibles"
#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:116 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:116
msgid "Selected" msgid "Selected"
msgstr "" msgstr "Sélectionnés"
#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123
msgid "Push the selected services into the list" msgid "Push the selected services into the list"
@ -21212,7 +21212,7 @@ msgstr "Exporter au format PDF"
#: ../../enterprise/operation/reporting/custom_reporting.php:47 #: ../../enterprise/operation/reporting/custom_reporting.php:47
#: ../../enterprise/operation/reporting/custom_reporting.php:70 #: ../../enterprise/operation/reporting/custom_reporting.php:70
msgid "Send by email" msgid "Send by email"
msgstr "" msgstr "Envoyer par courriel"
#: ../../enterprise/operation/reporting/custom_reporting.php:55 #: ../../enterprise/operation/reporting/custom_reporting.php:55
msgid "ID Report" msgid "ID Report"
@ -21390,7 +21390,7 @@ msgstr "Avec succès supprimé"
#: ../../enterprise/operation/agentes/networkmap_enterprise.php:176 #: ../../enterprise/operation/agentes/networkmap_enterprise.php:176
#: ../../include/functions_reporting.php:8222 #: ../../include/functions_reporting.php:8222
msgid "Nodes" msgid "Nodes"
msgstr "" msgstr "Nœuds"
#: ../../enterprise/operation/agentes/networkmap_enterprise.php:212 #: ../../enterprise/operation/agentes/networkmap_enterprise.php:212
msgid "Pending to generate" msgid "Pending to generate"
@ -21571,11 +21571,11 @@ msgstr ""
#: ../../enterprise/load_enterprise.php:666 #: ../../enterprise/load_enterprise.php:666
msgid "E-mail:" msgid "E-mail:"
msgstr "" msgstr "Courriel :"
#: ../../enterprise/load_enterprise.php:670 #: ../../enterprise/load_enterprise.php:670
msgid "Contact:" msgid "Contact:"
msgstr "" msgstr "Contact :"
#: ../../enterprise/load_enterprise.php:674 #: ../../enterprise/load_enterprise.php:674
msgid "Auth Key:" msgid "Auth Key:"
@ -21588,7 +21588,7 @@ msgstr ""
#: ../../enterprise/load_enterprise.php:690 #: ../../enterprise/load_enterprise.php:690
msgid "ERROR:" msgid "ERROR:"
msgstr "" msgstr "ERREUR :"
#: ../../enterprise/load_enterprise.php:690 #: ../../enterprise/load_enterprise.php:690
msgid "When connecting to Artica server." msgid "When connecting to Artica server."
@ -23268,7 +23268,7 @@ msgstr ""
#: ../../include/functions_update_manager.php:333 #: ../../include/functions_update_manager.php:333
#: ../../include/functions_update_manager.php:336 #: ../../include/functions_update_manager.php:336
msgid "Server not found." msgid "Server not found."
msgstr "" msgstr "Serveur introuvable."
#: ../../enterprise/include/functions_update_manager.php:146 #: ../../enterprise/include/functions_update_manager.php:146
#: ../../enterprise/include/functions_update_manager.php:248 #: ../../enterprise/include/functions_update_manager.php:248
@ -23283,17 +23283,17 @@ msgstr ""
#: ../../enterprise/include/functions_update_manager.php:165 #: ../../enterprise/include/functions_update_manager.php:165
msgid "Version number:" msgid "Version number:"
msgstr "" msgstr "Numéro de version :"
#: ../../enterprise/include/functions_update_manager.php:166 #: ../../enterprise/include/functions_update_manager.php:166
#: ../../enterprise/include/functions_networkmap_enterprise.php:596 #: ../../enterprise/include/functions_networkmap_enterprise.php:596
msgid "Show details" msgid "Show details"
msgstr "" msgstr "Afficher les détails"
#: ../../enterprise/include/functions_update_manager.php:173 #: ../../enterprise/include/functions_update_manager.php:173
#: ../../include/functions_update_manager.php:355 #: ../../include/functions_update_manager.php:355
msgid "Update to the last version" msgid "Update to the last version"
msgstr "" msgstr "Mettre à jour vers la dernière version"
#: ../../enterprise/include/functions_update_manager.php:188 #: ../../enterprise/include/functions_update_manager.php:188
#: ../../include/functions_update_manager.php:358 #: ../../include/functions_update_manager.php:358
@ -23323,7 +23323,7 @@ msgstr ""
#: ../../enterprise/include/functions_update_manager.php:350 #: ../../enterprise/include/functions_update_manager.php:350
#: ../../include/ajax/update_manager.ajax.php:447 #: ../../include/ajax/update_manager.ajax.php:447
msgid "progress" msgid "progress"
msgstr "" msgstr "progression"
#: ../../enterprise/include/functions_update_manager.php:428 #: ../../enterprise/include/functions_update_manager.php:428
#: ../../enterprise/include/functions_update_manager.php:432 #: ../../enterprise/include/functions_update_manager.php:432
@ -23350,19 +23350,19 @@ msgstr ""
#: ../../include/functions_update_manager.php:175 #: ../../include/functions_update_manager.php:175
#: ../../include/ajax/update_manager.ajax.php:205 #: ../../include/ajax/update_manager.ajax.php:205
msgid "An error ocurred while reading a file." msgid "An error ocurred while reading a file."
msgstr "" msgstr "Une erreur s'est produite lors de la lecture d'un fichier."
#: ../../enterprise/include/functions_update_manager.php:481 #: ../../enterprise/include/functions_update_manager.php:481
#: ../../include/functions_update_manager.php:182 #: ../../include/functions_update_manager.php:182
#: ../../include/ajax/update_manager.ajax.php:211 #: ../../include/ajax/update_manager.ajax.php:211
msgid "The package does not exist" msgid "The package does not exist"
msgstr "" msgstr "Le paquet n'existe pas"
#: ../../enterprise/include/functions_update_manager.php:487 #: ../../enterprise/include/functions_update_manager.php:487
#: ../../include/functions_update_manager.php:188 #: ../../include/functions_update_manager.php:188
#: ../../include/ajax/update_manager.ajax.php:477 #: ../../include/ajax/update_manager.ajax.php:477
msgid "The package is installed." msgid "The package is installed."
msgstr "" msgstr "Le paquet est installé"
#: ../../enterprise/include/functions_groups.php:47 #: ../../enterprise/include/functions_groups.php:47
msgid "Metaconsole" msgid "Metaconsole"
@ -23417,12 +23417,12 @@ msgstr ""
#: ../../enterprise/include/functions_license.php:35 #: ../../enterprise/include/functions_license.php:35
#: ../../enterprise/include/functions_license.php:52 #: ../../enterprise/include/functions_license.php:52
msgid "Client" msgid "Client"
msgstr "" msgstr "Client"
#: ../../enterprise/include/functions_license.php:37 #: ../../enterprise/include/functions_license.php:37
#: ../../enterprise/include/functions_license.php:52 #: ../../enterprise/include/functions_license.php:52
msgid "Trial" msgid "Trial"
msgstr "" msgstr "Essai"
#: ../../enterprise/include/functions_policies.php:456 #: ../../enterprise/include/functions_policies.php:456
#: ../../enterprise/include/functions_policies.php:471 #: ../../enterprise/include/functions_policies.php:471
@ -23684,7 +23684,7 @@ msgstr "Hors des limites"
#: ../../enterprise/include/functions_reporting.php:1062 #: ../../enterprise/include/functions_reporting.php:1062
msgid "Day" msgid "Day"
msgstr "" msgstr "Jour"
#: ../../enterprise/include/functions_reporting.php:1063 #: ../../enterprise/include/functions_reporting.php:1063
#: ../../enterprise/include/functions_reporting.php:1520 #: ../../enterprise/include/functions_reporting.php:1520
@ -23720,7 +23720,7 @@ msgstr ""
#: ../../include/functions_reporting.php:3906 #: ../../include/functions_reporting.php:3906
#: ../../include/functions_reporting.php:4016 #: ../../include/functions_reporting.php:4016
msgid "Dates" msgid "Dates"
msgstr "" msgstr "Dates"
#: ../../enterprise/include/functions_reporting.php:1386 #: ../../enterprise/include/functions_reporting.php:1386
#: ../../enterprise/include/functions_reporting.php:2057 #: ../../enterprise/include/functions_reporting.php:2057
@ -24212,11 +24212,11 @@ msgstr ""
#: ../../enterprise/include/functions_networkmap_enterprise.php:602 #: ../../enterprise/include/functions_networkmap_enterprise.php:602
#: ../../enterprise/include/functions_networkmap_enterprise.php:1630 #: ../../enterprise/include/functions_networkmap_enterprise.php:1630
msgid "Add node" msgid "Add node"
msgstr "" msgstr "Ajouter un nœud"
#: ../../enterprise/include/functions_networkmap_enterprise.php:603 #: ../../enterprise/include/functions_networkmap_enterprise.php:603
msgid "Set center" msgid "Set center"
msgstr "" msgstr "Définir le centre"
#: ../../enterprise/include/functions_networkmap_enterprise.php:605 #: ../../enterprise/include/functions_networkmap_enterprise.php:605
msgid "Refresh Holding area" msgid "Refresh Holding area"
@ -24225,7 +24225,7 @@ msgstr ""
#: ../../enterprise/include/functions_networkmap_enterprise.php:1061 #: ../../enterprise/include/functions_networkmap_enterprise.php:1061
#: ../../enterprise/include/functions_networkmap_enterprise.php:1541 #: ../../enterprise/include/functions_networkmap_enterprise.php:1541
msgid "Circle" msgid "Circle"
msgstr "Cercl" msgstr "Cercle"
#: ../../enterprise/include/functions_networkmap_enterprise.php:1062 #: ../../enterprise/include/functions_networkmap_enterprise.php:1062
#: ../../enterprise/include/functions_networkmap_enterprise.php:1542 #: ../../enterprise/include/functions_networkmap_enterprise.php:1542
@ -24312,7 +24312,7 @@ msgstr ""
#: ../../enterprise/include/functions_networkmap_enterprise.php:1624 #: ../../enterprise/include/functions_networkmap_enterprise.php:1624
#: ../../enterprise/include/functions_networkmap_enterprise.php:1625 #: ../../enterprise/include/functions_networkmap_enterprise.php:1625
msgid "Relations" msgid "Relations"
msgstr "" msgstr "Relations"
#: ../../enterprise/include/functions_networkmap_enterprise.php:1649 #: ../../enterprise/include/functions_networkmap_enterprise.php:1649
#: ../../enterprise/include/functions_networkmap_enterprise.php:1654 #: ../../enterprise/include/functions_networkmap_enterprise.php:1654
@ -24788,11 +24788,11 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_network.php:521 #: ../../enterprise/extensions/ipam/ipam_network.php:521
#: ../../enterprise/extensions/ipam/ipam_excel.php:105 #: ../../enterprise/extensions/ipam/ipam_excel.php:105
msgid "Hostname" msgid "Hostname"
msgstr "" msgstr "Nom d'hôte"
#: ../../enterprise/extensions/ipam/ipam_ajax.php:167 #: ../../enterprise/extensions/ipam/ipam_ajax.php:167
msgid "Operating system" msgid "Operating system"
msgstr "" msgstr "Système d'exploitation"
#: ../../enterprise/extensions/ipam/ipam_ajax.php:177 #: ../../enterprise/extensions/ipam/ipam_ajax.php:177
msgid "This agent has other IPs" msgid "This agent has other IPs"
@ -24828,7 +24828,7 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 #: ../../enterprise/extensions/ipam/ipam_ajax.php:252
msgid "Ping" msgid "Ping"
msgstr "" msgstr "Ping"
#: ../../enterprise/extensions/ipam/ipam_ajax.php:269 #: ../../enterprise/extensions/ipam/ipam_ajax.php:269
#: ../../include/ajax/events.php:157 #: ../../include/ajax/events.php:157
@ -24847,7 +24847,7 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_massive.php:68 #: ../../enterprise/extensions/ipam/ipam_massive.php:68
msgid "Addresses" msgid "Addresses"
msgstr "" msgstr "Adresses"
#: ../../enterprise/extensions/ipam/ipam_network.php:89 #: ../../enterprise/extensions/ipam/ipam_network.php:89
msgid "No addresses found on this network" msgid "No addresses found on this network"
@ -24855,7 +24855,7 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_network.php:106 #: ../../enterprise/extensions/ipam/ipam_network.php:106
msgid "Subnet" msgid "Subnet"
msgstr "" msgstr "Sous-réseau"
#: ../../enterprise/extensions/ipam/ipam_network.php:204 #: ../../enterprise/extensions/ipam/ipam_network.php:204
msgid "Total IPs" msgid "Total IPs"
@ -24890,16 +24890,16 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_network.php:259 #: ../../enterprise/extensions/ipam/ipam_network.php:259
msgid "A -> Z" msgid "A -> Z"
msgstr "" msgstr "A -> Z"
#: ../../enterprise/extensions/ipam/ipam_network.php:260 #: ../../enterprise/extensions/ipam/ipam_network.php:260
msgid "Z -> A" msgid "Z -> A"
msgstr "" msgstr "Z -> A"
#: ../../enterprise/extensions/ipam/ipam_network.php:261 #: ../../enterprise/extensions/ipam/ipam_network.php:261
#: ../../enterprise/extensions/ipam/ipam_network.php:262 #: ../../enterprise/extensions/ipam/ipam_network.php:262
msgid "Last check" msgid "Last check"
msgstr "" msgstr "Dernière vérification"
#: ../../enterprise/extensions/ipam/ipam_network.php:261 #: ../../enterprise/extensions/ipam/ipam_network.php:261
msgid "Newer -> Older" msgid "Newer -> Older"
@ -24923,7 +24923,7 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_network.php:275 #: ../../enterprise/extensions/ipam/ipam_network.php:275
msgid "Icons style" msgid "Icons style"
msgstr "" msgstr "Style des icônes"
#: ../../enterprise/extensions/ipam/ipam_network.php:282 #: ../../enterprise/extensions/ipam/ipam_network.php:282
msgid "Show not alive hosts" msgid "Show not alive hosts"
@ -24947,7 +24947,7 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_network.php:457 #: ../../enterprise/extensions/ipam/ipam_network.php:457
msgid "Edit address" msgid "Edit address"
msgstr "" msgstr "Modifier l'adresse"
#: ../../enterprise/extensions/ipam/ipam_network.php:462 #: ../../enterprise/extensions/ipam/ipam_network.php:462
msgid "Disabled address" msgid "Disabled address"
@ -24983,7 +24983,7 @@ msgstr ""
#: ../../enterprise/extensions/ipam/ipam_list.php:45 #: ../../enterprise/extensions/ipam/ipam_list.php:45
msgid "No networks found" msgid "No networks found"
msgstr "" msgstr "Aucun réseau trouvé"
#: ../../enterprise/extensions/ipam/ipam_list.php:64 #: ../../enterprise/extensions/ipam/ipam_list.php:64
msgid "IPs" msgid "IPs"
@ -31035,9 +31035,6 @@ msgstr "Fichiers d'archive du sytème"
#~ msgid "Alerts disabled" #~ msgid "Alerts disabled"
#~ msgstr "Alertes désactivées" #~ msgstr "Alertes désactivées"
#~ msgid "OID:"
#~ msgstr "OID"
#~ msgid "Remote modules rate" #~ msgid "Remote modules rate"
#~ msgstr "Rythme des modules á distance" #~ msgstr "Rythme des modules á distance"
@ -31102,9 +31099,6 @@ msgstr "Fichiers d'archive du sytème"
#~ msgid "Search text" #~ msgid "Search text"
#~ msgstr "cherche texte" #~ msgstr "cherche texte"
#~ msgid "Custom data:"
#~ msgstr "Données du client"
#~ msgid "" #~ msgid ""
#~ "Red cell when the module group and agent have at least one module in " #~ "Red cell when the module group and agent have at least one module in "
#~ "critical state and the others in any state." #~ "critical state and the others in any state."
@ -31126,67 +31120,3 @@ msgstr "Fichiers d'archive du sytème"
#~ msgid "Modules warning" #~ msgid "Modules warning"
#~ msgstr "Alerte modules" #~ msgstr "Alerte modules"
#~ msgid "Sort the agents by "
#~ msgstr "Trier les agents de "
#~ msgid "Type:"
#~ msgstr "Type :"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Max. Retard (s) / Modules retardés"
#~ msgid "Add module macro"
#~ msgstr "Ajouter module de macro"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Gauche en blanc pour les modules d'inventaire de réseau"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Mettez ici votre code de script pour le module d'inventaire"
#~ msgid "Invalid license."
#~ msgstr "Licence invalide"
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "S'il vous plaît contacter Artica à info@artica.es pour une licence valide."
#~ msgid "Columns"
#~ msgstr "Colonnes"
#~ msgid "Agent and monitor information"
#~ msgstr "Agent de surveillance et d'information"
#~ msgid "No servers"
#~ msgstr "Pas de serveurs"
#~ msgid "Event information"
#~ msgstr "les informations de l'événement"
#~ msgid "Without permissions"
#~ msgstr "Sans autorisation"
#~ msgid "disabled"
#~ msgstr "désactivé"
#~ msgid "Events replication is not enabled"
#~ msgstr "la réplication des événements n'est pas activée"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr ""
#~ "la réplication des événements n'est pas correctement configuré pour cette "
#~ "metaconsole"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "Le serveur semble être configuré pour reproduire des événements, mais aucun "
#~ "événement n'a encore été reçue"
#~ msgid "Unknown error"
#~ msgstr "Erreur inconnue"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "Il n'y a pas d'agents dans ce agrupation"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"X-Poedit-Country: ITALY\n" "X-Poedit-Country: ITALY\n"
"Language: \n" "Language: \n"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:30+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
#: ../../general/links_menu.php:20 ../../godmode/menu.php:216 #: ../../general/links_menu.php:20 ../../godmode/menu.php:216
@ -30271,15 +30271,9 @@ msgstr "システムログファイル"
#~ msgid "Oper" #~ msgid "Oper"
#~ msgstr "演算子" #~ msgstr "演算子"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "S" #~ msgid "S"
#~ msgstr "状態" #~ msgstr "状態"
#~ msgid "Custom data:"
#~ msgstr "カスタムデータ:"
#~ msgid "int" #~ msgid "int"
#~ msgstr "間隔" #~ msgstr "間隔"
@ -30288,89 +30282,3 @@ msgstr "システムログファイル"
#~ msgid "Search text" #~ msgid "Search text"
#~ msgstr "検索文字列" #~ msgstr "検索文字列"
#~ msgid "Add module macro"
#~ msgstr "モジュールマクロの追加"
#~ msgid "Sort the agents by "
#~ msgstr "エージェントの並び替え: "
#~ msgid "Type:"
#~ msgstr "タイプ:"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "このグループのエージェントはありません。"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "最大遅延(秒)/遅延モジュール"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "ネットワークインベントリモジュールでは空にしてください"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "インベントリモジュールのスクリプトコードをここに入力してください"
#~ msgid "Invalid license."
#~ msgstr "不正なライセンスです。"
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr "正しいライセンスについては、Artica (info@artica.es) までお問い合わせください。"
#~ msgid "Agent and monitor information"
#~ msgstr "エージェントおよびモニタ情報"
#~ msgid "Columns"
#~ msgstr "カラム"
#~ msgid "Event information"
#~ msgstr "イベント情報"
#~ msgid "No servers"
#~ msgstr "サーバがありません"
#~ msgid "Without permissions"
#~ msgstr "パーミッションなし"
#~ msgid "disabled"
#~ msgstr "無効化"
#~ msgid "Events replication is not enabled"
#~ msgstr "イベント複製が有効化されていません"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr "サーバはイベントを複製する設定がされていますが、まだイベントを受信していません"
#~ msgid "Unknown error"
#~ msgstr "不明なエラー"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr "このメタコンソールでは、イベント複製が設定されていません"
#~ msgid "Custom OID/Data"
#~ msgstr "カスタム OID/データ"
#~ msgid "Group by OID/IP"
#~ msgstr "OID/IP ごとのグループ"
#~ msgid "Contact Ártica ST at info@artica.es to get an auth key."
#~ msgstr "authkey の入手は、Artica ST info@artica.es までお問い合わせください。"
#~ msgid "Report group"
#~ msgstr "レポートグループ"
#~ msgid "Alerts status"
#~ msgstr "アラートの状態"
#~ msgid "Modules status"
#~ msgstr "モジュールの状態"
#~ msgid "Agents status"
#~ msgstr "エージェントの状態"
#~ msgid "Trap OID"
#~ msgstr "トラップOID"
#~ msgid "Traps received by OID"
#~ msgstr "OID ごとの受信トラップ"

View File

@ -16,7 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:30+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"uProject-Id-Version: pandora-nl\n" "uProject-Id-Version: pandora-nl\n"
"Taal: nl\n" "Taal: nl\n"
@ -29935,21 +29935,9 @@ msgstr "Systeem log bestanden"
#~ msgid "Agent down" #~ msgid "Agent down"
#~ msgstr "Agent beneden" #~ msgstr "Agent beneden"
#~ msgid "Sort the agents by "
#~ msgstr "Sorteer de agenten door "
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "Zoek waarde" #~ msgstr "Zoek waarde"
#~ msgid "Custom data:"
#~ msgstr "Aangepaste gegevens:"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Type:"
#~ msgstr "Type:"
#~ msgid "Events generated -by module-" #~ msgid "Events generated -by module-"
#~ msgstr "Evenementen gegenereerd -door module-" #~ msgstr "Evenementen gegenereerd -door module-"
@ -30015,9 +30003,6 @@ msgstr "Systeem log bestanden"
#~ msgid "Agent keepalive monitor" #~ msgid "Agent keepalive monitor"
#~ msgstr "Agent houdt monitor levend" #~ msgstr "Agent houdt monitor levend"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "Er zijn geen agenten in deze agrupatie"
#~ msgid "SLA period (seconds)" #~ msgid "SLA period (seconds)"
#~ msgstr "SLA-periode (seconden)" #~ msgstr "SLA-periode (seconden)"
@ -30776,57 +30761,3 @@ msgstr "Systeem log bestanden"
#~ msgid "Configuration detail" #~ msgid "Configuration detail"
#~ msgstr "Configuration detail" #~ msgstr "Configuration detail"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Max. Vertraging(sec)/Modules vertraagd"
#~ msgid "Add module macro"
#~ msgstr "Toevoegen module macro"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Leeg gelaten voor Netwerk Voorraad Modules"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Plaats hier uw script code voor de voorraad module"
#~ msgid "Invalid license."
#~ msgstr "Ongeldige licentie."
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "Neem a.u.b. contact op met Artica op info@artica.es voor een geldige "
#~ "licentie."
#~ msgid "Columns"
#~ msgstr "Kolommen"
#~ msgid "Agent and monitor information"
#~ msgstr "Agent en monitor informatie"
#~ msgid "No servers"
#~ msgstr "Geen servers"
#~ msgid "Event information"
#~ msgstr "Gebeurtenis informatie"
#~ msgid "Without permissions"
#~ msgstr "Zonder machtigingen"
#~ msgid "disabled"
#~ msgstr "uitgeschakeld"
#~ msgid "Events replication is not enabled"
#~ msgstr "Gebeurtenis replicatie is niet ingeschakeld"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr "Gebeurtenis replicatie is niet juist ingesteld voor deze metaconsole"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "De server lijkt te zijn geconfigureerd om gebeurtenissen te repliceren, maar "
#~ "er zijn nog geen gebeurtenissen ontvangen"
#~ msgid "Unknown error"
#~ msgstr "Onbekende fout"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: pl\n" "Language: pl\n"

View File

@ -16,7 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: \n" "Language: \n"
@ -29560,9 +29560,6 @@ msgstr "Registo de actividade do sistema"
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "Valor de procura" #~ msgstr "Valor de procura"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Read message" #~ msgid "Read message"
#~ msgstr "Ler mensagem" #~ msgstr "Ler mensagem"
@ -30425,9 +30422,6 @@ msgstr "Registo de actividade do sistema"
#~ msgid "Profile successfully deleted" #~ msgid "Profile successfully deleted"
#~ msgstr "Perfil apagado com sucesso" #~ msgstr "Perfil apagado com sucesso"
#~ msgid "Custom data:"
#~ msgstr "Dados personalizados"
#~ msgid "Custom graph name" #~ msgid "Custom graph name"
#~ msgstr "Nome de grapho personalizado" #~ msgstr "Nome de grapho personalizado"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: \n" "Language: \n"
@ -30920,76 +30920,5 @@ msgstr "Logfile do Sistema"
#~ msgid "Create incident from event" #~ msgid "Create incident from event"
#~ msgstr "Criar incidente para o evento" #~ msgstr "Criar incidente para o evento"
#~ msgid "Sort the agents by "
#~ msgstr "Classificar os agentes por "
#~ msgid "Type:"
#~ msgstr "Tipo:"
#~ msgid "Custom data:"
#~ msgstr "Dados personalizados:"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Atraso Max.(seg)/Módulos atrasados"
#~ msgid "Add module macro"
#~ msgstr "Adicionar macro do módulo"
#~ msgid "E/D" #~ msgid "E/D"
#~ msgstr "E/D" #~ msgstr "E/D"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Deixado em branco para Módulos de Inventário de Rede"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Coloque aqui código do seu script para o módulo de inventário"
#~ msgid "Invalid license."
#~ msgstr "Licença inválida."
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "Por favor, entre em contato com Artica através do info@artica.es para obter "
#~ "uma licença válida."
#~ msgid "Columns"
#~ msgstr "Colunas"
#~ msgid "Agent and monitor information"
#~ msgstr "Informação de monitor e agente"
#~ msgid "Event information"
#~ msgstr "Informação sobre o evento"
#~ msgid "No servers"
#~ msgstr "Sem servidores"
#~ msgid "Without permissions"
#~ msgstr "Sem permissões"
#~ msgid "disabled"
#~ msgstr "desabilitado"
#~ msgid "Events replication is not enabled"
#~ msgstr "A replicação de eventos não está habilitada"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "O servidor parece ter sido configurado para replicar eventos, mas nenhum "
#~ "evento foi recebido ainda"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr ""
#~ "A replicação de eventos não está configurada apropriadamente para este "
#~ "metaconsole"
#~ msgid "Unknown error"
#~ msgstr "Erro desconhecido"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "Não há agentes neste agrupamento"

View File

@ -16,7 +16,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: ru\n" "Language: ru\n"
@ -30103,12 +30103,6 @@ msgstr "Система журнал фйлов"
#~ msgid "Monitors not init" #~ msgid "Monitors not init"
#~ msgstr "Мониторы не включены" #~ msgstr "Мониторы не включены"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "Максимальная Задержка (сек) / Модули отложены"
#~ msgid "Add module macro"
#~ msgstr "Добавить модуль макроса"
#~ msgid "Checking tagente_estado table" #~ msgid "Checking tagente_estado table"
#~ msgstr "Проверка таблицы tagente_estado" #~ msgstr "Проверка таблицы tagente_estado"
@ -30193,66 +30187,6 @@ msgstr "Система журнал фйлов"
#~ msgid "Field 3" #~ msgid "Field 3"
#~ msgstr "Поле 3" #~ msgstr "Поле 3"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "Слева в заготовке для модулей инвентаризации Network"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "Вставьте здесь ваш скрипт-код для инвентаризации модуля"
#~ msgid "Invalid license."
#~ msgstr "Лицензия недействительна"
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr ""
#~ "Пожалуйста, свяжитесь с Artica на info@artica.es для действительной лицензии."
#~ msgid "Columns"
#~ msgstr "Столбцы"
#~ msgid "Agent and monitor information"
#~ msgstr "Агент и Монитор информации"
#~ msgid "Event information"
#~ msgstr "Информация о событии"
#~ msgid "No servers"
#~ msgstr "Нет серверов"
#~ msgid "Without permissions"
#~ msgstr "Без разрешения"
#~ msgid "disabled"
#~ msgstr "отключено"
#~ msgid "Events replication is not enabled"
#~ msgstr "Последние событие репликации"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr ""
#~ "События репликация не настроены должным образом для этой мета консоли"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr ""
#~ "Сервер, кажется, сконфигурирован для репликации событий, но никаких событий "
#~ "не было еще получено"
#~ msgid "Unknown error"
#~ msgstr "Неизвестная ошибка"
#~ msgid "Sort the agents by "
#~ msgstr "Сорторовать агенты по "
#~ msgid "Type:"
#~ msgstr "Тип:"
#~ msgid "Custom data:"
#~ msgstr "Данные клиента:"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "Поисковое значение" #~ msgstr "Поисковое значение"
@ -30265,6 +30199,3 @@ msgstr "Система журнал фйлов"
#~ "FMS (число работующих агентов и модулей). Чтобы отключить ее, просто удалите " #~ "FMS (число работующих агентов и модулей). Чтобы отключить ее, просто удалите "
#~ "расширение или удалите дистанционный адрес сервера из настроек плагина " #~ "расширение или удалите дистанционный адрес сервера из настроек плагина "
#~ "Манеджера Обновлений." #~ "Манеджера Обновлений."
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "Нет агентов в этом agrupation"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:30+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: sk\n" "Language: sk\n"
@ -30160,9 +30160,6 @@ msgstr "Systémové log-súbory"
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "Hľadať hodnotu" #~ msgstr "Hľadať hodnotu"
#~ msgid "OID:"
#~ msgstr "OID:"
#~ msgid "Update server host" #~ msgid "Update server host"
#~ msgstr "Aktualizovať serverový host" #~ msgstr "Aktualizovať serverový host"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:54+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: tr\n" "Language: tr\n"

View File

@ -14,7 +14,7 @@ msgstr ""
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2015-03-24 16:53+0000\n" "X-Launchpad-Export-Date: 2015-04-01 07:29+0000\n"
"X-Generator: Launchpad (build 17413)\n" "X-Generator: Launchpad (build 17413)\n"
"Language: \n" "Language: \n"
@ -29848,12 +29848,6 @@ msgstr "系统日志文件"
#~ msgid "Monitors unknown" #~ msgid "Monitors unknown"
#~ msgstr "未知的" #~ msgstr "未知的"
#~ msgid "Max. Delay(sec)/Modules delayed"
#~ msgstr "最大延迟时间(秒)/最多延迟模块数量"
#~ msgid "Add module macro"
#~ msgstr "添加模块宏"
#~ msgid "Sanitize my database now" #~ msgid "Sanitize my database now"
#~ msgstr "正在清理我的数据库" #~ msgstr "正在清理我的数据库"
@ -29887,65 +29881,9 @@ msgstr "系统日志文件"
#~ msgid "Field 3" #~ msgid "Field 3"
#~ msgstr "域3" #~ msgstr "域3"
#~ msgid "Left in blank for Network Inventory Modules"
#~ msgstr "为网络索引模块留白"
#~ msgid "Put here your script code for the inventory module"
#~ msgstr "在此为索引模块填入脚本代码"
#~ msgid "Invalid license."
#~ msgstr "无效许可"
#~ msgid "Please contact Artica at info@artica.es for a valid license."
#~ msgstr "请通过info@artica.es联系Artica索要有效许可。"
#~ msgid "Columns"
#~ msgstr "栏"
#~ msgid "Agent and monitor information"
#~ msgstr "代理和监控器信息"
#~ msgid "Event information"
#~ msgstr "事件信息"
#~ msgid "No servers"
#~ msgstr "无服务器"
#~ msgid "Without permissions"
#~ msgstr "未经许可"
#~ msgid "disabled"
#~ msgstr "已禁用"
#~ msgid "Events replication is not enabled"
#~ msgstr "未启用事件复制"
#~ msgid "Events replication is not properly configured for this metaconsole"
#~ msgstr "此meta控制台未适当配置事件复制"
#~ msgid ""
#~ "The server seems to be configurated to replicate events, but no events has "
#~ "been received yet"
#~ msgstr "服务器似乎已配置以复制事件,但仍未收到任何事件"
#~ msgid "Unknown error"
#~ msgstr "未知错误"
#~ msgid "Sort the agents by "
#~ msgstr "代理排序按 "
#~ msgid "Type:"
#~ msgstr "类型:"
#~ msgid "OID:"
#~ msgstr "对象标识:"
#~ msgid "Search value" #~ msgid "Search value"
#~ msgstr "搜索值" #~ msgstr "搜索值"
#~ msgid "Custom data:"
#~ msgstr "自定义数据:"
#~ msgid "There's a new update for Pandora FMS" #~ msgid "There's a new update for Pandora FMS"
#~ msgstr "Pandora FMS 有新版本" #~ msgstr "Pandora FMS 有新版本"
@ -29957,15 +29895,3 @@ msgstr "系统日志文件"
#~ msgid "E/D" #~ msgid "E/D"
#~ msgstr "E/D" #~ msgstr "E/D"
#~ msgid "There aren't agents in this agrupation"
#~ msgstr "该中断无代理存在"
#~ msgid "Custom OID/Data"
#~ msgstr "自定义OID数据"
#~ msgid "Group by OID/IP"
#~ msgstr "OID/IP分组"
#~ msgid "Contact Ártica ST at info@artica.es to get an auth key."
#~ msgstr "联系Ártica ST at info@artica.es获得授权密钥。"

View File

@ -63,7 +63,7 @@
<div style='height: 10px'> <div style='height: 10px'>
<?php <?php
$version = '6.0dev'; $version = '6.0dev';
$build = '150329'; $build = '150406';
$banner = "v$version Build $build"; $banner = "v$version Build $build";
error_reporting(0); error_reporting(0);

View File

@ -3,7 +3,7 @@
# #
%define name pandorafms_console %define name pandorafms_console
%define version 6.0dev %define version 6.0dev
%define release 150329 %define release 150406
# User and Group under which Apache is running # User and Group under which Apache is running
%define httpd_name httpd %define httpd_name httpd

View File

@ -3,7 +3,7 @@
# #
%define name pandorafms_console %define name pandorafms_console
%define version 6.0dev %define version 6.0dev
%define release 150329 %define release 150406
%define httpd_name httpd %define httpd_name httpd
# User and Group under which Apache is running # User and Group under which Apache is running
%define httpd_name apache2 %define httpd_name apache2

View File

@ -38,7 +38,7 @@ INSERT INTO `tconfig` (`token`, `value`) VALUES
('graph_res','5'), ('graph_res','5'),
('step_compact','1'), ('step_compact','1'),
('db_scheme_version','6.0dev'), ('db_scheme_version','6.0dev'),
('db_scheme_build','PD150329'), ('db_scheme_build','PD150406'),
('show_unknown','0'), ('show_unknown','0'),
('show_lastalerts','1'), ('show_lastalerts','1'),
('style','pandora'), ('style','pandora'),

View File

@ -1,5 +1,5 @@
package: pandorafms-server package: pandorafms-server
Version: 6.0dev-150329 Version: 6.0dev-150406
Architecture: all Architecture: all
Priority: optional Priority: optional
Section: admin Section: admin

View File

@ -14,7 +14,7 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
pandora_version="6.0dev-150329" pandora_version="6.0dev-150406"
package_cpan=0 package_cpan=0
package_pandora=1 package_pandora=1

View File

@ -43,7 +43,7 @@ our @EXPORT = qw(
# version: Defines actual version of Pandora Server for this module only # version: Defines actual version of Pandora Server for this module only
my $pandora_version = "6.0dev"; my $pandora_version = "6.0dev";
my $pandora_build = "150329"; my $pandora_build = "150406";
our $VERSION = $pandora_version." ".$pandora_build; our $VERSION = $pandora_version." ".$pandora_build;
# Setup hash # Setup hash

View File

@ -3,7 +3,7 @@
# #
%define name pandorafms_server %define name pandorafms_server
%define version 6.0dev %define version 6.0dev
%define release 150329 %define release 150406
Summary: Pandora FMS Server Summary: Pandora FMS Server
Name: %{name} Name: %{name}

View File

@ -3,7 +3,7 @@
# #
%define name pandorafms_server %define name pandorafms_server
%define version 6.0dev %define version 6.0dev
%define release 150329 %define release 150406
Summary: Pandora FMS Server Summary: Pandora FMS Server
Name: %{name} Name: %{name}

View File

@ -33,7 +33,7 @@ use PandoraFMS::Tools;
use PandoraFMS::DB; use PandoraFMS::DB;
# version: define current version # version: define current version
my $version = "6.0dev PS150329"; my $version = "6.0dev PS150406";
# Pandora server configuration # Pandora server configuration
my %conf; my %conf;

View File

@ -35,7 +35,7 @@ use Encode::Locale;
Encode::Locale::decode_argv; Encode::Locale::decode_argv;
# version: define current version # version: define current version
my $version = "6.0dev PS150329"; my $version = "6.0dev PS150406";
# save program name for logging # save program name for logging
my $progname = basename($0); my $progname = basename($0);