'.__('Update manager').''; echo '
'; echo ' '; /* Translators: Do not translade Update Manager, it's the name of the program */ echo __('The new Update Manager client is shipped with the new Pandora FMS 2.0. It lets systems administrators to do not need to update their PandoraFMS manually since the Update Manager is the one getting new modules, new plugins and new features (even full migrations tools for future versions) automatically'); echo '

'; echo __('Update Manager is one of the most advanced features of PandoraFMS 2.0 Enterprise version, for more information visit http://pandorafms.com'); echo '

'; $user_key = get_user_key (); $package = um_client_check_latest_update ($settings, $user_key); if (is_int ($package) && $package == 1) { echo '
'.__('Your system is up-to-date').'.
'; } elseif ($package === false) { echo '
'.__('Server connection failed')."
"; } elseif (is_int ($package) && $package == 0) { echo '
'.__('Server authorization rejected')."
"; } else { echo '
'.__('There\'s a new update for Pandora')."
"; $table->width = '50%'; $table->head = array (); $table->data = array (); $table->head[0] = ''.__('Description').''; $table->data[0][0] = html_entity_decode ($package->description); print_table ($table); } echo '

'.__('Your system version number is').': '.$settings->current_update.'

'; ?>