diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 489ddd293d..7ea6c6a468 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 6.0dev-150329 +Version: 6.0dev-150406 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index d2f0e534b8..2668a6549e 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # 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." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index a11e832d64..a929d9d46c 100644 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -41,7 +41,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '6.0dev'; -use constant AGENT_BUILD => '150329'; +use constant AGENT_BUILD => '150406'; # Commands to retrieve total memory information in kB use constant TOTALMEMORY_CMDS => { diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index c32ca21821..3ce75006e2 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 6.0dev -%define release 150329 +%define release 150406 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 7f22bade07..ff7d533bcb 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 6.0dev -%define release 150329 +%define release 150406 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/tentacle_server b/pandora_agents/unix/tentacle_server index 0d10a5baa8..e881246823 100755 --- a/pandora_agents/unix/tentacle_server +++ b/pandora_agents/unix/tentacle_server @@ -171,6 +171,9 @@ my $t_proxy_socket; # Proxy selected handler my $t_proxy_select; +# Use SSL for proxy, 1 true, 0 false +my $t_proxy_ssl = 0; + # Use libwrap, 1 true, 0 false 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-v\t\tBe verbose.\n"); print ("\t-w\t\tPrompt for OpenSSL private key password.\n"); - print ("\t-x pwd\t\tServer password.\n\n"); - print ("\t-b proxy_ip_address\t\tProxied server address.\n\n"); - print ("\t-g proxy_port\t\tPort of proxied server.\n\n"); + print ("\t-x pwd\t\tServer password.\n"); + print ("\t-b proxy_ip_address\tProxied server address.\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(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; # 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 (); 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 if (defined ($opts{'T'})) { if ($t_libwrap_installed) { @@ -658,6 +671,30 @@ sub start_ssl { 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 ## Manage incoming connections. @@ -749,6 +786,11 @@ sub serve_proxy_connection { # Start a connection with the other Tentacle Server open_proxy(); + + # Start SSL for proxy + if ($t_proxy_ssl == 1) { + start_proxy_ssl(); + } my $command; @@ -1582,6 +1624,14 @@ __END__ =item I<-x> pwd B. +=item I<-b proxy_ip_address> B address. + +=item I<-g proxy_port> B of proxied server. + +=item I<-C> Enable SSL for proxy without a client certificate. + +=item I<-T> Enable tcpwrappers support ('Authen::Libwrap' required). + =back =head1 EXIT STATUS diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index e93e124dd2..40c44ec39c 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{150329} +{150406} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 83a2c3fade..53235936bf 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #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_dir; diff --git a/pandora_agents/win32/pandora_windows_service.cc b/pandora_agents/win32/pandora_windows_service.cc index 2c5ec01bf6..1a60579675 100644 --- a/pandora_agents/win32/pandora_windows_service.cc +++ b/pandora_agents/win32/pandora_windows_service.cc @@ -322,7 +322,7 @@ Pandora_Windows_Service::killTentacleProxy() { int 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; PROCESS_INFORMATION pi; STARTUPINFO si; @@ -331,6 +331,7 @@ Pandora_Windows_Service::launchTentacleProxy() { server_ip = conf->getValue("server_ip"); if (server_ip != "localhost") { + proxy_max_connections = conf->getValue("proxy_max_connection"); if (proxy_max_connections == "") { @@ -348,9 +349,18 @@ Pandora_Windows_Service::launchTentacleProxy() { if (server_port == "") { 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 (&pi, sizeof (pi)); if (CreateProcess (NULL , (CHAR *)proxy_cmd.c_str (), NULL, NULL, FALSE, diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index eb007acbfa..772c338377 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(6.0dev(Build 150329))" + VALUE "ProductVersion", "(6.0dev(Build 150406))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index ca72e03231..f09a2fa329 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 6.0dev-150329 +Version: 6.0dev-150406 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 8db5354477..2578f7755b 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="6.0dev-150329" +pandora_version="6.0dev-150406" package_pear=0 package_pandora=1 diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.js b/pandora_console/godmode/reporting/visual_console_builder.editor.js index 1bc6eb192b..1ca0a7637f 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.js +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.js @@ -1080,7 +1080,7 @@ function cleanFields(item) { tinymce.get('text-label').setContent("(_VALUE_)"); } - fill_parent_select(); + //fill_parent_select(); var anyText = $("#any_text").html(); //Trick for catch the translate text. $("#module") diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index b89093878d..1ceaff3c3a 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -22,7 +22,7 @@ /** * Pandora build version and version */ -$build_version = 'PC150329'; +$build_version = 'PC150406'; $pandora_version = 'v6.0dev'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index b27bb5eddc..ff4e4b1401 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -1407,6 +1407,12 @@ function config_check () { __("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; if ($develop_bypass == 1) { diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 79f578268f..d83d9102d0 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -2086,7 +2086,8 @@ function visual_map_create_internal_name_item($label = null, $type, $image, $age } 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) { $items = array(); } diff --git a/pandora_console/include/languages/ar.mo b/pandora_console/include/languages/ar.mo index eb79507342..2044021562 100644 Binary files a/pandora_console/include/languages/ar.mo and b/pandora_console/include/languages/ar.mo differ diff --git a/pandora_console/include/languages/ar.po b/pandora_console/include/languages/ar.po index d160812bd0..a667846ddf 100644 --- a/pandora_console/include/languages/ar.po +++ b/pandora_console/include/languages/ar.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" #: ../../godmode/menu.php:28 @@ -29388,9 +29388,6 @@ msgstr "" #~ msgid "Search value" #~ msgstr "البحث عن القيمة" -#~ msgid "OID:" -#~ msgstr "قائمة أوراكل إنترنت (OID" - #~ msgid "Read message" #~ msgstr "قراءة رسالة" @@ -29794,6 +29791,3 @@ msgstr "" #~ msgid "Total data" #~ msgstr "إجمالي البيانات" - -#~ msgid "Without permissions" -#~ msgstr "دون تصريح" diff --git a/pandora_console/include/languages/ca.mo b/pandora_console/include/languages/ca.mo index 7c24dcf791..005914541b 100644 Binary files a/pandora_console/include/languages/ca.mo and b/pandora_console/include/languages/ca.mo differ diff --git a/pandora_console/include/languages/ca.po b/pandora_console/include/languages/ca.po index d3374b57a0..8abe824a2b 100644 --- a/pandora_console/include/languages/ca.po +++ b/pandora_console/include/languages/ca.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" #: ../../general/links_menu.php:20 ../../godmode/menu.php:216 @@ -30237,12 +30237,6 @@ msgstr "Registres del sistema" #~ msgid "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" #~ msgstr "Eina de base de dades del seny" @@ -30278,72 +30272,9 @@ msgstr "Registres del sistema" #~ msgid "Field 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" #~ msgstr "Valor de Recerca" -#~ msgid "Custom data:" -#~ msgstr "Dades personalitzats:" - -#~ msgid "OID:" -#~ msgstr "OID:" - -#~ msgid "Type:" -#~ msgstr "Tipus:" - #~ msgid "Update manager settings" #~ msgstr "Actualització de valors del gestor" @@ -30369,9 +30300,6 @@ msgstr "Registres del sistema" #~ msgid "Code / binary directory" #~ 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" #~ msgstr "Directori actual no té permisos d'escriptura pel servidor HTTP" diff --git a/pandora_console/include/languages/cs.mo b/pandora_console/include/languages/cs.mo index b7a7d52461..9dffa69a78 100644 Binary files a/pandora_console/include/languages/cs.mo and b/pandora_console/include/languages/cs.mo differ diff --git a/pandora_console/include/languages/cs.po b/pandora_console/include/languages/cs.po index 3a50b6d4e4..09f1ebd2ab 100644 --- a/pandora_console/include/languages/cs.po +++ b/pandora_console/include/languages/cs.po @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: cs\n" @@ -29593,15 +29593,9 @@ msgstr "Soubory záznamu systému" #~ msgid "No layouts found" #~ msgstr "Nenalezena žádná rozržení" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "Search value" #~ msgstr "Hledaná hodnota" -#~ msgid "Custom data:" -#~ msgstr "Vlastní data:" - #~ msgid "Combined image render" #~ msgstr "Kombinované vykreslení obrázku" diff --git a/pandora_console/include/languages/de.mo b/pandora_console/include/languages/de.mo index fea409bda5..202990ece8 100644 Binary files a/pandora_console/include/languages/de.mo and b/pandora_console/include/languages/de.mo differ diff --git a/pandora_console/include/languages/de.po b/pandora_console/include/languages/de.po index 9e0e36eacf..304a61c83d 100644 --- a/pandora_console/include/languages/de.po +++ b/pandora_console/include/languages/de.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: \n" @@ -31086,9 +31086,6 @@ msgstr "System-Log" #~ msgid "No layouts found" #~ msgstr "Keine Layouts gefunden" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "MinMax.Al" #~ msgstr "MinMax.Al" @@ -31117,21 +31114,12 @@ msgstr "System-Log" #~ msgid "%d hour" #~ msgstr "%d Stunde" -#~ msgid "Custom data:" -#~ msgstr "Benutzerdefinierte Daten:" - #~ msgid "Download file" #~ msgstr "Datei herunterladen" -#~ msgid "Add module macro" -#~ msgstr "Modulmakro hinzufügen" - #~ msgid "Standard user" #~ msgstr "Standardbenutzer" -#~ msgid "Max. Delay(sec)/Modules delayed" -#~ msgstr "Max. Verzögerung (Sek.) / Module verzögert" - #~ msgid "Map element editor" #~ msgstr "Kartenelemente-Editor" @@ -31306,64 +31294,6 @@ msgstr "System-Log" #~ msgid "Event not validate" #~ 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" #~ 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 " #~ "unterbinden möchten, löschen Sie das Update Plugin oder die Adresse des " #~ "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" diff --git a/pandora_console/include/languages/el.mo b/pandora_console/include/languages/el.mo index 2e6b2f0410..9727e7db5c 100644 Binary files a/pandora_console/include/languages/el.mo and b/pandora_console/include/languages/el.mo differ diff --git a/pandora_console/include/languages/el.po b/pandora_console/include/languages/el.po index c7519bdf03..9861a8baf8 100644 --- a/pandora_console/include/languages/el.po +++ b/pandora_console/include/languages/el.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: el\n" diff --git a/pandora_console/include/languages/en_GB.mo b/pandora_console/include/languages/en_GB.mo index b8da06220c..c576c6a6ed 100644 Binary files a/pandora_console/include/languages/en_GB.mo and b/pandora_console/include/languages/en_GB.mo differ diff --git a/pandora_console/include/languages/en_GB.po b/pandora_console/include/languages/en_GB.po index 3485b7e261..982a8688f9 100644 --- a/pandora_console/include/languages/en_GB.po +++ b/pandora_console/include/languages/en_GB.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-24 17:21+0100\n" -"PO-Revision-Date: 2014-10-30 12:03+0000\n" -"Last-Translator: Vanessa \n" +"PO-Revision-Date: 2015-03-27 14:57+0000\n" +"Last-Translator: Andi Chandler \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: \n" @@ -50,7 +50,7 @@ msgstr "QR code of the page" #: ../../general/header.php:134 ../../general/header.php:135 #: ../../include/functions_clippy.php:128 msgid "Pandora FMS assistant" -msgstr "" +msgstr "Pandora FMS assistant" #: ../../general/header.php:160 #: ../../enterprise/meta/general/main_header.php:298 @@ -521,6 +521,9 @@ msgid "" "learn more about Pandora FMS. Monitoring could be overwhelm, but take your " "time to learn how to use the power of Pandora FMS!" 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:53 @@ -591,7 +594,7 @@ msgstr "You don't have access to this page" #: ../../general/noaccess.php:26 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 #: ../../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 " "security logs of Pandora System Database" msgstr "" +"Access to this page is restricted to authorised users only, please contact " +"system administrator if you need assistance.

\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 msgid "Press here to activate shortcut bar" @@ -747,11 +754,11 @@ msgstr "" #: ../../general/login_page.php:140 ../../mobile/include/user.class.php:295 #: ../../mobile/include/user.class.php:296 msgid "Authenticator code" -msgstr "" +msgstr "Authenticator code" #: ../../general/login_page.php:146 ../../mobile/include/user.class.php:300 msgid "Check code" -msgstr "" +msgstr "Check code" #: ../../general/login_page.php:154 msgid "View details" @@ -3869,25 +3876,25 @@ msgstr "Generated at" #: ../../mobile/include/user.class.php:171 #: ../../mobile/include/user.class.php:178 msgid "Double authentication failed" -msgstr "" +msgstr "Double authentication failed" #: ../../mobile/include/user.class.php:154 msgid "Secret code not found" -msgstr "" +msgstr "Secret code not found" #: ../../mobile/include/user.class.php:155 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 #: ../../enterprise/meta/index.php:236 #: ../../include/ajax/double_auth.ajax.php:489 msgid "Invalid code" -msgstr "" +msgstr "Invalid code" #: ../../mobile/include/user.class.php:179 msgid "There was an error checking the code" -msgstr "" +msgstr "There was an error checking the code" #: ../../mobile/include/user.class.php:211 msgid "Login Failed" @@ -4262,7 +4269,7 @@ msgstr "Create" #: ../../godmode/reporting/visual_console_builder.data.php:72 msgid "Create visual console" -msgstr "" +msgstr "Create visual console" #: ../../godmode/reporting/visual_console_builder.data.php:79 #: ../../godmode/setup/os.builder.php:33 @@ -4682,11 +4689,11 @@ msgstr "Could not be created." #: ../../godmode/reporting/visual_console_builder.php:167 msgid "Successfully multiple delete." -msgstr "" +msgstr "Successfully multiple delete." #: ../../godmode/reporting/visual_console_builder.php:168 msgid "Unsuccessfull multiple delete." -msgstr "" +msgstr "Unsuccessfull multiple delete." #: ../../godmode/reporting/visual_console_builder.php:245 msgid "Successfully delete." @@ -4882,7 +4889,7 @@ msgstr "Icon" #: ../../include/functions_visual_map_editor.php:545 #: ../../include/functions_visual_map.php:2035 msgid "Box" -msgstr "" +msgstr "Box" #: ../../godmode/reporting/visual_console_builder.elements.php:190 #: ../../godmode/reporting/visual_console_builder.elements.php:572 @@ -5083,7 +5090,7 @@ msgstr "Filter" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 #: ../../enterprise/meta/include/functions_networkmap_meta.php:84 msgid "Show Options" -msgstr "" +msgstr "Show Options" #: ../../godmode/reporting/reporting_builder.list_items.php:270 #: ../../godmode/agentes/module_manager.php:505 @@ -5560,7 +5567,7 @@ msgstr "Free text for search: " #: ../../godmode/reporting/reporting_builder.php:394 msgid "Show Option" -msgstr "" +msgstr "Show Option" #: ../../godmode/reporting/reporting_builder.php:469 #: ../../operation/reporting/custom_reporting.php:38 @@ -5751,7 +5758,7 @@ msgstr "Descending" #: ../../godmode/reporting/reporting_builder.item_editor.php:518 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1020 msgid "Item Editor" -msgstr "" +msgstr "Item Editor" #: ../../godmode/reporting/reporting_builder.item_editor.php:537 msgid "Not valid" @@ -5761,7 +5768,7 @@ msgstr "Not valid" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:188 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1066 msgid "Last value" -msgstr "" +msgstr "Last value" #: ../../godmode/reporting/reporting_builder.item_editor.php:596 #: ../../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 " "most recent information" 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 #: ../../operation/integria_incidents/incident.incident.php:97 @@ -30650,15 +30660,9 @@ msgstr "System logfiles" #~ msgid "From the last" #~ msgstr "From the last" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "S" #~ msgstr "S" -#~ msgid "Custom data:" -#~ msgstr "Custom data:" - #~ msgid "Search text" #~ msgstr "Search text" @@ -30973,76 +30977,3 @@ msgstr "System logfiles" #~ msgid "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" diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index 6f534dd64f..7c6f29f54e 100644 Binary files a/pandora_console/include/languages/es.mo and b/pandora_console/include/languages/es.mo differ diff --git a/pandora_console/include/languages/es.po b/pandora_console/include/languages/es.po index 388555234a..cabe6b05be 100644 --- a/pandora_console/include/languages/es.po +++ b/pandora_console/include/languages/es.po @@ -10,13 +10,13 @@ msgstr "" "Project-Id-Version: index.es\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-24 17:21+0100\n" -"PO-Revision-Date: 2015-03-24 16:46+0000\n" -"Last-Translator: Vanessa \n" +"PO-Revision-Date: 2015-03-31 09:50+0000\n" +"Last-Translator: Carlos Moreno \n" "Language-Team: Español; Castellano <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: \n" @@ -597,7 +597,7 @@ msgstr "No tiene permiso para acceder a esta página" #: ../../general/noaccess.php:26 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 #: ../../enterprise/meta/general/metaconsole_no_activated.php:21 @@ -3890,7 +3890,7 @@ msgstr "" #: ../../enterprise/meta/index.php:236 #: ../../include/ajax/double_auth.ajax.php:489 msgid "Invalid code" -msgstr "" +msgstr "Código inválido" #: ../../mobile/include/user.class.php:179 msgid "There was an error checking the code" @@ -4269,7 +4269,7 @@ msgstr "Crear" #: ../../godmode/reporting/visual_console_builder.data.php:72 msgid "Create visual console" -msgstr "" +msgstr "Crear consola visual" #: ../../godmode/reporting/visual_console_builder.data.php:79 #: ../../godmode/setup/os.builder.php:33 @@ -5090,7 +5090,7 @@ msgstr "Filtro" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 #: ../../enterprise/meta/include/functions_networkmap_meta.php:84 msgid "Show Options" -msgstr "" +msgstr "Mostrar opciones" #: ../../godmode/reporting/reporting_builder.list_items.php:270 #: ../../godmode/agentes/module_manager.php:505 @@ -5567,7 +5567,7 @@ msgstr "Texto libre de búsqueda " #: ../../godmode/reporting/reporting_builder.php:394 msgid "Show Option" -msgstr "" +msgstr "Mostrar Opciones" #: ../../godmode/reporting/reporting_builder.php:469 #: ../../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.template_item.php:1066 msgid "Last value" -msgstr "" +msgstr "Último valor" #: ../../godmode/reporting/reporting_builder.item_editor.php:596 #: ../../godmode/reporting/reporting_builder.item_editor.php:2356 @@ -6193,7 +6193,7 @@ msgstr "Media" #: ../../godmode/reporting/reporting_builder.item_editor.php:1043 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1313 msgid "Only average" -msgstr "" +msgstr "Solo media" #: ../../godmode/reporting/reporting_builder.item_editor.php:1047 #: ../../godmode/massive/massive_edit_modules.php:440 @@ -6851,11 +6851,11 @@ msgstr "Actualizar perfil" #: ../../godmode/users/configure_profile.php:148 msgid "Update Profile" -msgstr "" +msgstr "Actualizar Perfil" #: ../../godmode/users/configure_profile.php:150 msgid "Create Profile" -msgstr "" +msgstr "Crear Perfil" #: ../../godmode/users/configure_profile.php:159 #: ../../godmode/users/configure_user.php:613 @@ -7153,11 +7153,11 @@ msgstr "El perfil no se puede añadir" #: ../../godmode/users/configure_user.php:422 msgid "Update User" -msgstr "" +msgstr "Actualizar Usuario" #: ../../godmode/users/configure_user.php:425 msgid "Create User" -msgstr "" +msgstr "Crear Usuario" #: ../../godmode/users/configure_user.php:442 #: ../../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 msgid "Strict ACL" -msgstr "" +msgstr "ACL Estricto" #: ../../godmode/users/configure_user.php:540 msgid "" @@ -8114,7 +8114,7 @@ msgstr "No se selección ningún agente" #: ../../godmode/massive/massive_delete_tags.php:107 msgid "No tag selected" -msgstr "" +msgstr "Ninguna etiqueta seleccionada" #: ../../godmode/massive/massive_edit_agents.php:95 msgid "No values changed" @@ -8535,7 +8535,7 @@ msgstr "Alertas en standby" #: ../../godmode/massive/massive_add_tags.php:43 msgid "No tags selected" -msgstr "" +msgstr "Ninguna etiqueta seleccionada" #: ../../godmode/massive/massive_delete_profiles.php:61 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 msgid "Update category" -msgstr "" +msgstr "Actualizar categoría" #: ../../godmode/category/edit_category.php:148 #: ../../godmode/category/category.php:98 @@ -9458,11 +9458,11 @@ msgstr "No se encontraron respuestas" #: ../../godmode/events/event_edit_filter.php:166 msgid "Update Filter" -msgstr "" +msgstr "Actualizar Filtro" #: ../../godmode/events/event_edit_filter.php:169 msgid "Create Filter" -msgstr "" +msgstr "Crear filtro" #: ../../godmode/events/event_edit_filter.php:179 #: ../../operation/events/events_list.php:234 @@ -9590,7 +9590,7 @@ msgstr "Respuestas" #: ../../godmode/events/event_responses.editor.php:63 msgid "Edit event responses" -msgstr "" +msgstr "Editar respuestas de eventos" #: ../../godmode/events/event_responses.editor.php:93 #: ../../enterprise/extensions/ipam/ipam_network.php:125 @@ -10529,7 +10529,7 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor.php:467 #: ../../godmode/agentes/module_manager_editor_common.php:579 msgid "Custom macros" -msgstr "" +msgstr "Macros personalizadas" #: ../../godmode/agentes/module_manager_editor.php:469 msgid "Module relations" @@ -10602,11 +10602,11 @@ msgstr "Los ficheros conf o md5 han podido no ser borrados" #: ../../godmode/agentes/modificar_agente.php:143 msgid "Show Agents" -msgstr "" +msgstr "Mostrar Agentes" #: ../../godmode/agentes/modificar_agente.php:145 msgid "Everyone" -msgstr "" +msgstr "Todos" #: ../../godmode/agentes/modificar_agente.php:146 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 msgid "Tags from policy" -msgstr "" +msgstr "Etiquetas desde política" #: ../../godmode/agentes/module_manager_editor_common.php:514 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/include/functions_meta.php:414 msgid "Show only the group name" -msgstr "" +msgstr "Mostrar solo el nombre del grupo" #: ../../godmode/setup/setup_visuals.php:482 #: ../../enterprise/meta/advanced/metasetup.visual.php:169 #: ../../include/functions_config.php:457 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 #: ../../include/functions_config.php:459 @@ -13635,11 +13635,11 @@ msgstr "Etiqueta creada satisfactoriamente" #: ../../godmode/tag/edit_tag.php:159 msgid "Update Tag" -msgstr "" +msgstr "Actualizar Etiqueta" #: ../../godmode/tag/edit_tag.php:162 msgid "Create Tag" -msgstr "" +msgstr "Crear etiqueta" #: ../../godmode/tag/edit_tag.php:183 #: ../../enterprise/meta/monitoring/wizard/wizard.php:108 @@ -13702,7 +13702,7 @@ msgstr "URL update manager" #: ../../godmode/update_manager/update_manager.setup.php:65 msgid "Proxy server:" -msgstr "" +msgstr "Servidor Proxy:" #: ../../godmode/update_manager/update_manager.setup.php:67 msgid "Proxy server" @@ -13710,7 +13710,7 @@ msgstr "Servidor proxy" #: ../../godmode/update_manager/update_manager.setup.php:69 msgid "Proxy port:" -msgstr "" +msgstr "Puerto Proxy:" #: ../../godmode/update_manager/update_manager.setup.php:71 msgid "Proxy port" @@ -13726,7 +13726,7 @@ msgstr "Usuario del proxy" #: ../../godmode/update_manager/update_manager.setup.php:77 msgid "Proxy password:" -msgstr "" +msgstr "Contraseña del Proxy:" #: ../../godmode/update_manager/update_manager.setup.php:79 msgid "Proxy password" @@ -13942,11 +13942,11 @@ msgstr "Actualizar grupo" #: ../../godmode/groups/configure_group.php:105 msgid "Update Group" -msgstr "" +msgstr "Actualizar Grupo" #: ../../godmode/groups/configure_group.php:107 msgid "Create Group" -msgstr "" +msgstr "Crear Grupo" #: ../../godmode/groups/configure_group.php:140 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 msgid "Update Action" -msgstr "" +msgstr "Actualizar Acción" #: ../../godmode/alerts/configure_alert_action.php:100 #: ../../godmode/alerts/alert_list.builder.php:126 @@ -15624,7 +15624,7 @@ msgstr "Volver a modo normal" #: ../../operation/reporting/reporting_viewer.php:140 msgid "View Report" -msgstr "" +msgstr "Ver Informe" #: ../../operation/reporting/reporting_viewer.php:170 #: ../../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 msgid "Edit my User" -msgstr "" +msgstr "Editar mi Usuario" #: ../../operation/users/user_edit.php:233 msgid "New Password" @@ -16026,7 +16026,7 @@ msgstr "Detalle de alertas" #: ../../operation/users/user_edit.php:357 msgid "Show information" -msgstr "" +msgstr "Mostrar información" #: ../../operation/users/user_edit.php:388 msgid "" @@ -16855,7 +16855,7 @@ msgstr "Estado del módulo" #: ../../operation/tree.php:168 msgid "Search module" -msgstr "" +msgstr "Buscar módulo" #: ../../operation/tree.php:193 msgid "Tree search" @@ -16876,23 +16876,23 @@ msgstr "Alertas disparadas" #: ../../operation/tree.php:289 msgid "Critical agents" -msgstr "" +msgstr "Agentes Críticos" #: ../../operation/tree.php:294 msgid "Warning agents" -msgstr "" +msgstr "Agentes en advertencia" #: ../../operation/tree.php:299 msgid "Unknown agents" -msgstr "" +msgstr "Agentes en desconocido" #: ../../operation/tree.php:304 msgid "Not init agents" -msgstr "" +msgstr "Agentes no inicializados" #: ../../operation/tree.php:309 msgid "Normal agents" -msgstr "" +msgstr "Agentes en normal" #: ../../operation/agentes/gis_view.php:93 msgid "Last position in " @@ -17099,7 +17099,7 @@ msgstr "" #: ../../operation/agentes/networkmap_list.php:370 msgid "None selected" -msgstr "" +msgstr "Nada seleccionado" #: ../../operation/agentes/custom_fields.php:28 #: ../../operation/agentes/agent_fields.php:28 @@ -17274,7 +17274,7 @@ msgstr "Agente desconocido" #: ../../operation/agentes/group_view.php:90 #: ../../include/functions_reporting.php:8163 msgid "Agents not init" -msgstr "" +msgstr "Agentes no inicializados" #: ../../operation/agentes/group_view.php:92 msgid "Not Init" @@ -17564,7 +17564,7 @@ msgstr "Lista completa de monitores" #: ../../operation/agentes/estado_monitores.php:150 msgid "List of modules" -msgstr "" +msgstr "Lista de módulos" #: ../../operation/agentes/estado_monitores.php:422 msgid "Status:" @@ -17664,7 +17664,7 @@ msgstr "Estado del monitor" #: ../../operation/agentes/status_monitor.php:542 msgid "Advanced Options" -msgstr "" +msgstr "Opciones Avanzadas" #: ../../operation/agentes/status_monitor.php:984 #: ../../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 msgid "Advance Options" -msgstr "" +msgstr "Opciones Avanzadas" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:69 msgid "Advance Reporting" -msgstr "" +msgstr "Opciones Avanzadas" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:101 #: ../../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 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/graph_template_wizard.php:142 @@ -18636,7 +18636,7 @@ msgstr "Grupo de destino" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310 msgid "Filter by" -msgstr "" +msgstr "Filtrar por" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:366 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:162 @@ -18648,7 +18648,7 @@ msgstr "Filtrar agente" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:373 msgid "Filter tag" -msgstr "" +msgstr "Filtro etiqueta" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:385 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:173 @@ -18908,11 +18908,11 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 msgid "Tags unused" -msgstr "" +msgstr "Etiquetas sin usar" #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 msgid "Tags used" -msgstr "" +msgstr "Etiquetas usadas" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216 @@ -21428,7 +21428,7 @@ msgstr "Pendiente de generar" #: ../../enterprise/operation/agentes/networkmap_enterprise.php:249 msgid "There are no maps defined." -msgstr "" +msgstr "No hay mapas definidos." #: ../../enterprise/operation/agentes/networkmap_enterprise.php:259 #: ../../enterprise/meta/include/functions_networkmap_meta.php:180 @@ -21532,11 +21532,12 @@ msgstr "(Adoptados)(Desvinculados)" #: ../../enterprise/load_enterprise.php:306 msgid "Invalid licence." -msgstr "" +msgstr "Licencia inválida" #: ../../enterprise/load_enterprise.php:307 msgid "Please contact Artica at info@artica.es for a valid licence." msgstr "" +"Por favor contacte con Ártica en info@artica.es para una licencia válida." #: ../../enterprise/load_enterprise.php:309 msgid "Or disable Pandora FMS enterprise" @@ -21601,11 +21602,11 @@ msgstr "" #: ../../enterprise/load_enterprise.php:666 msgid "E-mail:" -msgstr "" +msgstr "E-mail:" #: ../../enterprise/load_enterprise.php:670 msgid "Contact:" -msgstr "" +msgstr "Contacto:" #: ../../enterprise/load_enterprise.php:674 msgid "Auth Key:" @@ -21618,7 +21619,7 @@ msgstr "" #: ../../enterprise/load_enterprise.php:690 msgid "ERROR:" -msgstr "" +msgstr "ERROR:" #: ../../enterprise/load_enterprise.php:690 msgid "When connecting to Artica server." @@ -21736,11 +21737,11 @@ msgstr "Vista de grupo" #: ../../enterprise/meta/monitoring/group_view.php:74 msgid "Summary of the status groups" -msgstr "" +msgstr "Resumen de los grupos por estatus" #: ../../enterprise/meta/monitoring/group_view.php:94 msgid "Group or Tag" -msgstr "" +msgstr "Grupo o Etiqueta" #: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84 @@ -21897,15 +21898,15 @@ msgstr "Vista táctica" #: ../../enterprise/meta/monitoring/tactical.php:215 msgid "Report of state" -msgstr "" +msgstr "Informe de estado" #: ../../enterprise/meta/monitoring/tactical.php:340 msgid "Report of events (last hour)" -msgstr "" +msgstr "Informe de eventos (última hora)" #: ../../enterprise/meta/monitoring/tactical.php:356 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 msgid "More events" @@ -21973,7 +21974,7 @@ msgstr "No se puede mover" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:124 msgid "Move Agents" -msgstr "" +msgstr "Mover Agentes" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:137 msgid "Source Server" @@ -22181,7 +22182,7 @@ msgstr "Sólo bases de datos" #: ../../enterprise/meta/advanced/policymanager.apply.php:188 msgid "Apply Policies" -msgstr "" +msgstr "Aplicar Políticas" #: ../../enterprise/meta/advanced/synchronizing.user.php:215 #, php-format @@ -22225,7 +22226,7 @@ msgstr "" #: ../../enterprise/meta/advanced/synchronizing.user.php:498 msgid "Synchronizing Users" -msgstr "" +msgstr "Sincronizando Usuarios" #: ../../enterprise/meta/advanced/synchronizing.user.php:553 msgid "Profile mode" @@ -22334,7 +22335,7 @@ msgstr "Creadas/actualizadas %s/%s plantillas" #: ../../enterprise/meta/advanced/synchronizing.alert.php:324 msgid "Synchronizing Alerts" -msgstr "" +msgstr "Sincronizando Alertas" #: ../../enterprise/meta/advanced/synchronizing.group.php:103 #, php-format @@ -22384,7 +22385,7 @@ msgstr "NInguna actualización o creación de grupo" #: ../../enterprise/meta/advanced/synchronizing.group.php:227 msgid "Synchronizing Groups" -msgstr "" +msgstr "Sincronizando Grupos" #: ../../enterprise/meta/advanced/synchronizing.tag.php:124 #, php-format @@ -22398,7 +22399,7 @@ msgstr "Creados/actualizados %s/%s tags" #: ../../enterprise/meta/advanced/synchronizing.tag.php:138 msgid "Synchronizing Tags" -msgstr "" +msgstr "Sincronizando Etiquetas" #: ../../enterprise/meta/advanced/metasetup.php:49 msgid "Consoles Setup" @@ -22930,7 +22931,7 @@ msgstr "Gracias por usar Pandora FMS" #: ../../enterprise/dashboard/widgets/tree_view.php:24 msgid "Show the tree view" -msgstr "" +msgstr "Mostrar la vista de árbol" #: ../../enterprise/dashboard/widgets/tree_view.php:27 #: ../../enterprise/dashboard/widgets/url.php:26 @@ -25155,11 +25156,11 @@ msgstr "Siguiente IP disponible" #: ../../enterprise/extensions/check_acls.php:16 msgid "ACL users for this agent" -msgstr "" +msgstr "Usuarios ACL para este agente" #: ../../enterprise/extensions/check_acls.php:100 msgid "There are no defined users" -msgstr "" +msgstr "No hay usuarios definidos" #: ../../enterprise/extensions/check_acls.php:104 msgid "ACL module tags for the modules in this agent" @@ -25175,7 +25176,7 @@ msgstr "" #: ../../enterprise/extensions/check_acls.php:201 msgid "Check ACL" -msgstr "" +msgstr "Chequear ACL" #: ../../enterprise/extensions/backup/main.php:53 msgid "Pandora database backup utility" @@ -25401,7 +25402,7 @@ msgstr "No existe un agente con este nombre" #: ../../include/functions_api.php:886 msgid "Does not exist module with this name." -msgstr "" +msgstr "No existe módulos con este nombre." #: ../../include/functions_api.php:1231 msgid "Correct Delete" @@ -28374,20 +28375,20 @@ msgstr "Estado actual" #: ../../include/functions_reporting.php:8137 msgid "Agents critical" -msgstr "" +msgstr "Agentes críticos" #: ../../include/functions_reporting.php:8142 msgid "Agents warning" -msgstr "" +msgstr "Agentes warning" #: ../../include/functions_reporting.php:8150 msgid "Agents ok" -msgstr "" +msgstr "Agentes ok" #: ../../include/functions_reporting.php:8176 #: ../../include/functions_reporting.php:8185 msgid "Agents by status" -msgstr "" +msgstr "Agentes por estado" #: ../../include/functions_reporting.php:8231 #: ../../include/functions_reporting.php:8239 @@ -28397,29 +28398,29 @@ msgstr "Resumen de nodos" #: ../../include/functions_reporting.php:8263 #: ../../include/functions_reporting.php:8286 msgid "Warning events" -msgstr "" +msgstr "Eventos en advertencia" #: ../../include/functions_reporting.php:8269 #: ../../include/functions_reporting.php:8290 msgid "OK events" -msgstr "" +msgstr "Eventos OK" #: ../../include/functions_reporting.php:8275 #: ../../include/functions_reporting.php:8294 msgid "Unknown events" -msgstr "" +msgstr "Eventos desconocidos" #: ../../include/functions_reporting.php:8343 msgid "Last activity in Pandora FMS console" -msgstr "" +msgstr "Última actividad en la consola de Pandora FMS" #: ../../include/functions_reporting.php:8463 msgid "Events info (1hr.)" -msgstr "" +msgstr "Información de Eventos (1hr.)" #: ../../include/functions_reporting.php:8476 msgid "Events info (1hr)" -msgstr "" +msgstr "Información de Eventos (1hr.)" #: ../../include/graphs/functions_flot.php:302 msgid "Cancel zoom" @@ -28509,7 +28510,7 @@ msgstr "" #: ../../include/ajax/double_auth.ajax.php:203 #: ../../include/ajax/double_auth.ajax.php:294 msgid "Continue" -msgstr "" +msgstr "Continuar" #: ../../include/ajax/double_auth.ajax.php:219 msgid "Are you installed the app yet?" @@ -28856,7 +28857,7 @@ msgstr "" #: ../../include/class/Tree.class.php:1281 msgid "NO DATA" -msgstr "" +msgstr "SIN DATOS" #: ../../include/functions_visual_map.php:823 msgid "Last value: " @@ -28931,7 +28932,7 @@ msgstr "Ir a \"editar agentes\"" #: ../../include/functions_treeview.php:433 msgid "Agent data" -msgstr "" +msgstr "Datos de agentes" #: ../../include/functions_treeview.php:506 msgid "Advanced information" @@ -29832,7 +29833,7 @@ msgstr "Vista de Agentes/Alertas" #: ../../extensions/db_status.php:43 ../../extensions/db_status.php:365 msgid "DB Status" -msgstr "" +msgstr "Estado BD" #: ../../extensions/db_status.php:56 msgid "" @@ -29846,7 +29847,7 @@ msgstr "" #: ../../extensions/db_status.php:63 msgid "DB settings" -msgstr "" +msgstr "Configuración BD" #: ../../extensions/db_status.php:67 msgid "DB User with privileges" @@ -31229,15 +31230,9 @@ msgstr "Logs sistema" #~ msgid "hour" #~ msgstr "hora" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "Manage SNMP console" #~ msgstr "Consola SNMP" -#~ msgid "Custom data:" -#~ msgstr "Datos personalizados:" - #~ msgid "" #~ "Pandora FMS Sanity tool is used to remove bad database structure data, " #~ "created modules with missing status, or modules that cannot be initialized " @@ -31255,91 +31250,3 @@ msgstr "Logs sistema" #~ "datos esta también implementada en Pandora_db.pl de modo que debería " #~ "ejecutarla cada día o cada semana. Esta herramienta no COMPACTA O REDUCE su " #~ "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" diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index 65e4e8c0b2..64bac1d8d0 100644 Binary files a/pandora_console/include/languages/fr.mo and b/pandora_console/include/languages/fr.mo differ diff --git a/pandora_console/include/languages/fr.po b/pandora_console/include/languages/fr.po index 0dbaf4b5fa..6e64a22673 100644 --- a/pandora_console/include/languages/fr.po +++ b/pandora_console/include/languages/fr.po @@ -9,13 +9,13 @@ msgstr "" "Project-Id-Version: pandora-fr\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2015-03-24 17:21+0100\n" -"PO-Revision-Date: 2014-10-01 22:06+0000\n" -"Last-Translator: katalina rodriguez \n" +"PO-Revision-Date: 2015-03-29 11:01+0000\n" +"Last-Translator: Jean Marc \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: fr\n" @@ -61,12 +61,12 @@ msgstr "Pret" #: ../../general/header.php:107 ../../general/header.php:108 msgid "QR Code of the page" -msgstr "" +msgstr "Code QR de la page" #: ../../general/header.php:112 #: ../../operation/visual_console/public_console.php:104 msgid "QR code of the page" -msgstr "" +msgstr "Code QR de la page" #: ../../general/header.php:134 ../../general/header.php:135 #: ../../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 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 #: ../../enterprise/meta/general/metaconsole_no_activated.php:21 @@ -3877,7 +3877,7 @@ msgstr "" #: ../../mobile/include/user.class.php:154 msgid "Secret code not found" -msgstr "" +msgstr "Code secret introuvable" #: ../../mobile/include/user.class.php:155 msgid "Please contact the administrator to reset your double authentication" @@ -3887,7 +3887,7 @@ msgstr "" #: ../../enterprise/meta/index.php:236 #: ../../include/ajax/double_auth.ajax.php:489 msgid "Invalid code" -msgstr "" +msgstr "Code non valide" #: ../../mobile/include/user.class.php:179 msgid "There was an error checking the code" @@ -5088,7 +5088,7 @@ msgstr "Filtre" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:148 #: ../../enterprise/meta/include/functions_networkmap_meta.php:84 msgid "Show Options" -msgstr "" +msgstr "Afficher les options" #: ../../godmode/reporting/reporting_builder.list_items.php:270 #: ../../godmode/agentes/module_manager.php:505 @@ -5504,7 +5504,7 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.php:78 msgid "An error has ocurred" -msgstr "" +msgstr "Une erreur s'est produite" #: ../../godmode/reporting/reporting_builder.php:279 #: ../../godmode/reporting/reporting_builder.php:1568 @@ -5569,7 +5569,7 @@ msgstr "Texte libre pour la recherche: " #: ../../godmode/reporting/reporting_builder.php:394 msgid "Show Option" -msgstr "" +msgstr "Afficher les options" #: ../../godmode/reporting/reporting_builder.php:469 #: ../../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.template_item.php:1066 msgid "Last value" -msgstr "" +msgstr "Dernière valeur" #: ../../godmode/reporting/reporting_builder.item_editor.php:596 #: ../../godmode/reporting/reporting_builder.item_editor.php:2356 @@ -6857,7 +6857,7 @@ msgstr "" #: ../../godmode/users/configure_profile.php:150 msgid "Create Profile" -msgstr "" +msgstr "Créer le profil" #: ../../godmode/users/configure_profile.php:159 #: ../../godmode/users/configure_user.php:613 @@ -7160,7 +7160,7 @@ msgstr "" #: ../../godmode/users/configure_user.php:425 msgid "Create User" -msgstr "" +msgstr "Créer l'utilisateur" #: ../../godmode/users/configure_user.php:442 #: ../../operation/users/user_edit.php:200 @@ -7944,14 +7944,14 @@ msgstr "Tout changement d'état" #: ../../godmode/agentes/module_manager_editor_common.php:277 #: ../../enterprise/godmode/modules/configure_local_component.php:253 msgid "To normal" -msgstr "" +msgstr "À la normale" #: ../../godmode/massive/massive_edit_modules.php:476 #: ../../godmode/modules/manage_network_components_form_common.php:140 #: ../../godmode/agentes/module_manager_editor_common.php:279 #: ../../enterprise/godmode/modules/configure_local_component.php:255 msgid "To warning" -msgstr "" +msgstr "Pour avertissement" #: ../../godmode/massive/massive_edit_modules.php:477 #: ../../godmode/modules/manage_network_components_form_common.php:142 @@ -9465,7 +9465,7 @@ msgstr "" #: ../../godmode/events/event_edit_filter.php:169 msgid "Create Filter" -msgstr "" +msgstr "Créer le filtre" #: ../../godmode/events/event_edit_filter.php:179 #: ../../operation/events/events_list.php:234 @@ -9903,7 +9903,7 @@ msgstr "Exécution" #: ../../godmode/agentes/planned_downtime.editor.php:334 #: ../../godmode/agentes/planned_downtime.list.php:252 msgid "Once" -msgstr "" +msgstr "Une fois" #: ../../godmode/agentes/planned_downtime.editor.php:335 #: ../../godmode/agentes/planned_downtime.list.php:252 @@ -10614,7 +10614,7 @@ msgstr "" #: ../../godmode/agentes/modificar_agente.php:145 msgid "Everyone" -msgstr "" +msgstr "Tout le monde" #: ../../godmode/agentes/modificar_agente.php:146 msgid "Only disabled" @@ -12749,11 +12749,11 @@ msgstr "" #: ../../godmode/setup/setup_general.php:247 msgid "On demand" -msgstr "" +msgstr "À la demande" #: ../../godmode/setup/setup_general.php:248 msgid "Expert" -msgstr "" +msgstr "Expert" #: ../../godmode/setup/setup_general.php:250 #: ../../include/functions_config.php:186 @@ -13329,7 +13329,7 @@ msgstr "" #: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 msgid "Expiration" -msgstr "" +msgstr "Expiration" #: ../../godmode/setup/news.php:215 msgid "There are no defined news" @@ -13343,7 +13343,7 @@ msgstr "Auteur" #: ../../godmode/setup/news.php:242 msgid "Modal" -msgstr "" +msgstr "Modale" #: ../../godmode/setup/news.php:245 msgid "Board" @@ -13429,7 +13429,7 @@ msgstr "Pour obtenir votre Pandora FMS Enterprise License :" #: ../../godmode/setup/license.php:90 #, php-format msgid "Go to %s" -msgstr "" +msgstr "Aller à %s" #: ../../godmode/setup/license.php:93 msgid "Enter the auth key and the following request key:" @@ -13924,11 +13924,11 @@ msgstr "Actualiser le groupe" #: ../../godmode/groups/configure_group.php:105 msgid "Update Group" -msgstr "" +msgstr "Mettre à jour le groupe" #: ../../godmode/groups/configure_group.php:107 msgid "Create Group" -msgstr "" +msgstr "Créer le groupe" #: ../../godmode/groups/configure_group.php:140 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 msgid "Update Action" -msgstr "" +msgstr "Mettre à jour l'action" #: ../../godmode/alerts/configure_alert_action.php:100 #: ../../godmode/alerts/alert_list.builder.php:126 @@ -15599,7 +15599,7 @@ msgstr "Retourner au mode normal" #: ../../operation/reporting/reporting_viewer.php:140 msgid "View Report" -msgstr "" +msgstr "Afficher le rapport" #: ../../operation/reporting/reporting_viewer.php:170 #: ../../enterprise/include/functions_reporting_pdf.php:3988 @@ -16000,7 +16000,7 @@ msgstr "Detail des alertes" #: ../../operation/users/user_edit.php:357 msgid "Show information" -msgstr "" +msgstr "Afficher les informations" #: ../../operation/users/user_edit.php:388 msgid "" @@ -16038,7 +16038,7 @@ msgstr "" #: ../../operation/users/user_edit.php:674 msgid "Deactivate" -msgstr "" +msgstr "Désactiver" #: ../../operation/users/user_edit.php:706 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:289 msgid "Dynamic view" -msgstr "" +msgstr "Vue dynamique" #: ../../operation/agentes/networkmap.php:224 #: ../../operation/agentes/networkmap.php:292 @@ -17642,7 +17642,7 @@ msgstr "Status du moniteur" #: ../../operation/agentes/status_monitor.php:542 msgid "Advanced Options" -msgstr "" +msgstr "Options avancées" #: ../../operation/agentes/status_monitor.php:984 #: ../../operation/search_modules.php:52 @@ -18602,7 +18602,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:310 msgid "Filter by" -msgstr "" +msgstr "Filtrer par" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:366 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:162 @@ -18666,11 +18666,11 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:114 msgid "Available" -msgstr "" +msgstr "Disponibles" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:116 msgid "Selected" -msgstr "" +msgstr "Sélectionnés" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 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:70 msgid "Send by email" -msgstr "" +msgstr "Envoyer par courriel" #: ../../enterprise/operation/reporting/custom_reporting.php:55 msgid "ID Report" @@ -21390,7 +21390,7 @@ msgstr "Avec succès supprimé" #: ../../enterprise/operation/agentes/networkmap_enterprise.php:176 #: ../../include/functions_reporting.php:8222 msgid "Nodes" -msgstr "" +msgstr "Nœuds" #: ../../enterprise/operation/agentes/networkmap_enterprise.php:212 msgid "Pending to generate" @@ -21571,11 +21571,11 @@ msgstr "" #: ../../enterprise/load_enterprise.php:666 msgid "E-mail:" -msgstr "" +msgstr "Courriel :" #: ../../enterprise/load_enterprise.php:670 msgid "Contact:" -msgstr "" +msgstr "Contact :" #: ../../enterprise/load_enterprise.php:674 msgid "Auth Key:" @@ -21588,7 +21588,7 @@ msgstr "" #: ../../enterprise/load_enterprise.php:690 msgid "ERROR:" -msgstr "" +msgstr "ERREUR :" #: ../../enterprise/load_enterprise.php:690 msgid "When connecting to Artica server." @@ -23268,7 +23268,7 @@ msgstr "" #: ../../include/functions_update_manager.php:333 #: ../../include/functions_update_manager.php:336 msgid "Server not found." -msgstr "" +msgstr "Serveur introuvable." #: ../../enterprise/include/functions_update_manager.php:146 #: ../../enterprise/include/functions_update_manager.php:248 @@ -23283,17 +23283,17 @@ msgstr "" #: ../../enterprise/include/functions_update_manager.php:165 msgid "Version number:" -msgstr "" +msgstr "Numéro de version :" #: ../../enterprise/include/functions_update_manager.php:166 #: ../../enterprise/include/functions_networkmap_enterprise.php:596 msgid "Show details" -msgstr "" +msgstr "Afficher les détails" #: ../../enterprise/include/functions_update_manager.php:173 #: ../../include/functions_update_manager.php:355 msgid "Update to the last version" -msgstr "" +msgstr "Mettre à jour vers la dernière version" #: ../../enterprise/include/functions_update_manager.php:188 #: ../../include/functions_update_manager.php:358 @@ -23323,7 +23323,7 @@ msgstr "" #: ../../enterprise/include/functions_update_manager.php:350 #: ../../include/ajax/update_manager.ajax.php:447 msgid "progress" -msgstr "" +msgstr "progression" #: ../../enterprise/include/functions_update_manager.php:428 #: ../../enterprise/include/functions_update_manager.php:432 @@ -23350,19 +23350,19 @@ msgstr "" #: ../../include/functions_update_manager.php:175 #: ../../include/ajax/update_manager.ajax.php:205 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 #: ../../include/functions_update_manager.php:182 #: ../../include/ajax/update_manager.ajax.php:211 msgid "The package does not exist" -msgstr "" +msgstr "Le paquet n'existe pas" #: ../../enterprise/include/functions_update_manager.php:487 #: ../../include/functions_update_manager.php:188 #: ../../include/ajax/update_manager.ajax.php:477 msgid "The package is installed." -msgstr "" +msgstr "Le paquet est installé" #: ../../enterprise/include/functions_groups.php:47 msgid "Metaconsole" @@ -23417,12 +23417,12 @@ msgstr "" #: ../../enterprise/include/functions_license.php:35 #: ../../enterprise/include/functions_license.php:52 msgid "Client" -msgstr "" +msgstr "Client" #: ../../enterprise/include/functions_license.php:37 #: ../../enterprise/include/functions_license.php:52 msgid "Trial" -msgstr "" +msgstr "Essai" #: ../../enterprise/include/functions_policies.php:456 #: ../../enterprise/include/functions_policies.php:471 @@ -23684,7 +23684,7 @@ msgstr "Hors des limites" #: ../../enterprise/include/functions_reporting.php:1062 msgid "Day" -msgstr "" +msgstr "Jour" #: ../../enterprise/include/functions_reporting.php:1063 #: ../../enterprise/include/functions_reporting.php:1520 @@ -23720,7 +23720,7 @@ msgstr "" #: ../../include/functions_reporting.php:3906 #: ../../include/functions_reporting.php:4016 msgid "Dates" -msgstr "" +msgstr "Dates" #: ../../enterprise/include/functions_reporting.php:1386 #: ../../enterprise/include/functions_reporting.php:2057 @@ -24212,11 +24212,11 @@ msgstr "" #: ../../enterprise/include/functions_networkmap_enterprise.php:602 #: ../../enterprise/include/functions_networkmap_enterprise.php:1630 msgid "Add node" -msgstr "" +msgstr "Ajouter un nœud" #: ../../enterprise/include/functions_networkmap_enterprise.php:603 msgid "Set center" -msgstr "" +msgstr "Définir le centre" #: ../../enterprise/include/functions_networkmap_enterprise.php:605 msgid "Refresh Holding area" @@ -24225,7 +24225,7 @@ msgstr "" #: ../../enterprise/include/functions_networkmap_enterprise.php:1061 #: ../../enterprise/include/functions_networkmap_enterprise.php:1541 msgid "Circle" -msgstr "Cercl" +msgstr "Cercle" #: ../../enterprise/include/functions_networkmap_enterprise.php:1062 #: ../../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:1625 msgid "Relations" -msgstr "" +msgstr "Relations" #: ../../enterprise/include/functions_networkmap_enterprise.php:1649 #: ../../enterprise/include/functions_networkmap_enterprise.php:1654 @@ -24788,11 +24788,11 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_network.php:521 #: ../../enterprise/extensions/ipam/ipam_excel.php:105 msgid "Hostname" -msgstr "" +msgstr "Nom d'hôte" #: ../../enterprise/extensions/ipam/ipam_ajax.php:167 msgid "Operating system" -msgstr "" +msgstr "Système d'exploitation" #: ../../enterprise/extensions/ipam/ipam_ajax.php:177 msgid "This agent has other IPs" @@ -24828,7 +24828,7 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_ajax.php:252 msgid "Ping" -msgstr "" +msgstr "Ping" #: ../../enterprise/extensions/ipam/ipam_ajax.php:269 #: ../../include/ajax/events.php:157 @@ -24847,7 +24847,7 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_massive.php:68 msgid "Addresses" -msgstr "" +msgstr "Adresses" #: ../../enterprise/extensions/ipam/ipam_network.php:89 msgid "No addresses found on this network" @@ -24855,7 +24855,7 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_network.php:106 msgid "Subnet" -msgstr "" +msgstr "Sous-réseau" #: ../../enterprise/extensions/ipam/ipam_network.php:204 msgid "Total IPs" @@ -24890,16 +24890,16 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_network.php:259 msgid "A -> Z" -msgstr "" +msgstr "A -> Z" #: ../../enterprise/extensions/ipam/ipam_network.php:260 msgid "Z -> A" -msgstr "" +msgstr "Z -> A" #: ../../enterprise/extensions/ipam/ipam_network.php:261 #: ../../enterprise/extensions/ipam/ipam_network.php:262 msgid "Last check" -msgstr "" +msgstr "Dernière vérification" #: ../../enterprise/extensions/ipam/ipam_network.php:261 msgid "Newer -> Older" @@ -24923,7 +24923,7 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_network.php:275 msgid "Icons style" -msgstr "" +msgstr "Style des icônes" #: ../../enterprise/extensions/ipam/ipam_network.php:282 msgid "Show not alive hosts" @@ -24947,7 +24947,7 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_network.php:457 msgid "Edit address" -msgstr "" +msgstr "Modifier l'adresse" #: ../../enterprise/extensions/ipam/ipam_network.php:462 msgid "Disabled address" @@ -24983,7 +24983,7 @@ msgstr "" #: ../../enterprise/extensions/ipam/ipam_list.php:45 msgid "No networks found" -msgstr "" +msgstr "Aucun réseau trouvé" #: ../../enterprise/extensions/ipam/ipam_list.php:64 msgid "IPs" @@ -31035,9 +31035,6 @@ msgstr "Fichiers d'archive du sytème" #~ msgid "Alerts disabled" #~ msgstr "Alertes désactivées" -#~ msgid "OID:" -#~ msgstr "OID" - #~ msgid "Remote modules rate" #~ msgstr "Rythme des modules á distance" @@ -31102,9 +31099,6 @@ msgstr "Fichiers d'archive du sytème" #~ msgid "Search text" #~ msgstr "cherche texte" -#~ msgid "Custom data:" -#~ msgstr "Données du client" - #~ msgid "" #~ "Red cell when the module group and agent have at least one module in " #~ "critical state and the others in any state." @@ -31126,67 +31120,3 @@ msgstr "Fichiers d'archive du sytème" #~ msgid "Modules warning" #~ 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" diff --git a/pandora_console/include/languages/it.mo b/pandora_console/include/languages/it.mo index 680fdf175f..27e2ef1df1 100644 Binary files a/pandora_console/include/languages/it.mo and b/pandora_console/include/languages/it.mo differ diff --git a/pandora_console/include/languages/it.po b/pandora_console/include/languages/it.po index e2792c9a06..f5051991fd 100644 --- a/pandora_console/include/languages/it.po +++ b/pandora_console/include/languages/it.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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-Poedit-Country: ITALY\n" "Language: \n" diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 6357163a26..ee1db2cfa3 100644 Binary files a/pandora_console/include/languages/ja.mo and b/pandora_console/include/languages/ja.mo differ diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index f5af7b3a8f..90c67e168f 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" #: ../../general/links_menu.php:20 ../../godmode/menu.php:216 @@ -30271,15 +30271,9 @@ msgstr "システムログファイル" #~ msgid "Oper" #~ msgstr "演算子" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "S" #~ msgstr "状態" -#~ msgid "Custom data:" -#~ msgstr "カスタムデータ:" - #~ msgid "int" #~ msgstr "間隔" @@ -30288,89 +30282,3 @@ msgstr "システムログファイル" #~ msgid "Search text" #~ 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 ごとの受信トラップ" diff --git a/pandora_console/include/languages/nl.mo b/pandora_console/include/languages/nl.mo index 038941cb7d..e5391d92c1 100644 Binary files a/pandora_console/include/languages/nl.mo and b/pandora_console/include/languages/nl.mo differ diff --git a/pandora_console/include/languages/nl.po b/pandora_console/include/languages/nl.po index 9287af3c2d..2702374d35 100644 --- a/pandora_console/include/languages/nl.po +++ b/pandora_console/include/languages/nl.po @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "uProject-Id-Version: pandora-nl\n" "Taal: nl\n" @@ -29935,21 +29935,9 @@ msgstr "Systeem log bestanden" #~ msgid "Agent down" #~ msgstr "Agent beneden" -#~ msgid "Sort the agents by " -#~ msgstr "Sorteer de agenten door " - #~ msgid "Search value" #~ msgstr "Zoek waarde" -#~ msgid "Custom data:" -#~ msgstr "Aangepaste gegevens:" - -#~ msgid "OID:" -#~ msgstr "OID:" - -#~ msgid "Type:" -#~ msgstr "Type:" - #~ msgid "Events generated -by module-" #~ msgstr "Evenementen gegenereerd -door module-" @@ -30015,9 +30003,6 @@ msgstr "Systeem log bestanden" #~ msgid "Agent keepalive monitor" #~ 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)" #~ msgstr "SLA-periode (seconden)" @@ -30776,57 +30761,3 @@ msgstr "Systeem log bestanden" #~ msgid "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" diff --git a/pandora_console/include/languages/pl.mo b/pandora_console/include/languages/pl.mo index 39e08b94a0..fdd8ec90e7 100644 Binary files a/pandora_console/include/languages/pl.mo and b/pandora_console/include/languages/pl.mo differ diff --git a/pandora_console/include/languages/pl.po b/pandora_console/include/languages/pl.po index 284be57fd4..ae28444750 100644 --- a/pandora_console/include/languages/pl.po +++ b/pandora_console/include/languages/pl.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: pl\n" diff --git a/pandora_console/include/languages/pt.mo b/pandora_console/include/languages/pt.mo index a146b79122..6afa0d69c5 100644 Binary files a/pandora_console/include/languages/pt.mo and b/pandora_console/include/languages/pt.mo differ diff --git a/pandora_console/include/languages/pt.po b/pandora_console/include/languages/pt.po index 67d1356ae9..d5faa7be6e 100644 --- a/pandora_console/include/languages/pt.po +++ b/pandora_console/include/languages/pt.po @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: \n" @@ -29560,9 +29560,6 @@ msgstr "Registo de actividade do sistema" #~ msgid "Search value" #~ msgstr "Valor de procura" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "Read message" #~ msgstr "Ler mensagem" @@ -30425,9 +30422,6 @@ msgstr "Registo de actividade do sistema" #~ msgid "Profile successfully deleted" #~ msgstr "Perfil apagado com sucesso" -#~ msgid "Custom data:" -#~ msgstr "Dados personalizados" - #~ msgid "Custom graph name" #~ msgstr "Nome de grapho personalizado" diff --git a/pandora_console/include/languages/pt_BR.mo b/pandora_console/include/languages/pt_BR.mo index 5907ce2f7f..b5fc252604 100644 Binary files a/pandora_console/include/languages/pt_BR.mo and b/pandora_console/include/languages/pt_BR.mo differ diff --git a/pandora_console/include/languages/pt_BR.po b/pandora_console/include/languages/pt_BR.po index 6ae0579c3f..e714e2ac93 100644 --- a/pandora_console/include/languages/pt_BR.po +++ b/pandora_console/include/languages/pt_BR.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: \n" @@ -30920,76 +30920,5 @@ msgstr "Logfile do Sistema" #~ msgid "Create incident from event" #~ 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" #~ 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" diff --git a/pandora_console/include/languages/ru.mo b/pandora_console/include/languages/ru.mo index f1c995323e..7213f9b3de 100644 Binary files a/pandora_console/include/languages/ru.mo and b/pandora_console/include/languages/ru.mo differ diff --git a/pandora_console/include/languages/ru.po b/pandora_console/include/languages/ru.po index 5c04e8d613..e5fd2fd76e 100644 --- a/pandora_console/include/languages/ru.po +++ b/pandora_console/include/languages/ru.po @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: ru\n" @@ -30103,12 +30103,6 @@ msgstr "Система журнал фйлов" #~ msgid "Monitors not init" #~ msgstr "Мониторы не включены" -#~ msgid "Max. Delay(sec)/Modules delayed" -#~ msgstr "Максимальная Задержка (сек) / Модули отложены" - -#~ msgid "Add module macro" -#~ msgstr "Добавить модуль макроса" - #~ msgid "Checking tagente_estado table" #~ msgstr "Проверка таблицы tagente_estado" @@ -30193,66 +30187,6 @@ msgstr "Система журнал фйлов" #~ msgid "Field 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" #~ msgstr "Поисковое значение" @@ -30265,6 +30199,3 @@ msgstr "Система журнал фйлов" #~ "FMS (число работующих агентов и модулей). Чтобы отключить ее, просто удалите " #~ "расширение или удалите дистанционный адрес сервера из настроек плагина " #~ "Манеджера Обновлений." - -#~ msgid "There aren't agents in this agrupation" -#~ msgstr "Нет агентов в этом agrupation" diff --git a/pandora_console/include/languages/sk.mo b/pandora_console/include/languages/sk.mo index c19c712ae0..a8d96ac880 100644 Binary files a/pandora_console/include/languages/sk.mo and b/pandora_console/include/languages/sk.mo differ diff --git a/pandora_console/include/languages/sk.po b/pandora_console/include/languages/sk.po index fabad23b15..e7032b3f47 100644 --- a/pandora_console/include/languages/sk.po +++ b/pandora_console/include/languages/sk.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: sk\n" @@ -30160,9 +30160,6 @@ msgstr "Systémové log-súbory" #~ msgid "Search value" #~ msgstr "Hľadať hodnotu" -#~ msgid "OID:" -#~ msgstr "OID:" - #~ msgid "Update server host" #~ msgstr "Aktualizovať serverový host" diff --git a/pandora_console/include/languages/tr.mo b/pandora_console/include/languages/tr.mo index 9f7bec6b21..64b1361d20 100644 Binary files a/pandora_console/include/languages/tr.mo and b/pandora_console/include/languages/tr.mo differ diff --git a/pandora_console/include/languages/tr.po b/pandora_console/include/languages/tr.po index 8f52588347..7727953c24 100644 --- a/pandora_console/include/languages/tr.po +++ b/pandora_console/include/languages/tr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: tr\n" diff --git a/pandora_console/include/languages/zh_CN.mo b/pandora_console/include/languages/zh_CN.mo index 31ee2befce..7160da82a1 100644 Binary files a/pandora_console/include/languages/zh_CN.mo and b/pandora_console/include/languages/zh_CN.mo differ diff --git a/pandora_console/include/languages/zh_CN.po b/pandora_console/include/languages/zh_CN.po index d2e538680d..9a0c077941 100644 --- a/pandora_console/include/languages/zh_CN.po +++ b/pandora_console/include/languages/zh_CN.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\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" "Language: \n" @@ -29848,12 +29848,6 @@ msgstr "系统日志文件" #~ msgid "Monitors unknown" #~ msgstr "未知的" -#~ msgid "Max. Delay(sec)/Modules delayed" -#~ msgstr "最大延迟时间(秒)/最多延迟模块数量" - -#~ msgid "Add module macro" -#~ msgstr "添加模块宏" - #~ msgid "Sanitize my database now" #~ msgstr "正在清理我的数据库" @@ -29887,65 +29881,9 @@ msgstr "系统日志文件" #~ msgid "Field 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" #~ msgstr "搜索值" -#~ msgid "Custom data:" -#~ msgstr "自定义数据:" - #~ msgid "There's a new update for Pandora FMS" #~ msgstr "Pandora FMS 有新版本" @@ -29957,15 +29895,3 @@ msgstr "系统日志文件" #~ msgid "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获得授权密钥。" diff --git a/pandora_console/install.php b/pandora_console/install.php index 6c710ca8a2..5ac0639d2e 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -63,7 +63,7 @@