2009-06-01 Jorge Gonzalez <jorgegonz@artica.es>
* include/languages/es.po, include/languages/es.mo: Updated Spanish * translation. * include/languages/index.pot: Updated po template. * godmode/reporting/map_builder.php, * godmode/reporting/graph_builder.php: Updated translatable period * strings to reduce its number and make them more compliant with the * rest. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1784 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
parent
79ae1e8b40
commit
c8f4224123
|
@ -1,3 +1,15 @@
|
|||
2009-06-01 Jorge Gonzalez <jorgegonz@artica.es>
|
||||
|
||||
* include/languages/es.po, include/languages/es.mo: Updated Spanish
|
||||
* translation.
|
||||
|
||||
* include/languages/index.pot: Updated po template.
|
||||
|
||||
* godmode/reporting/map_builder.php,
|
||||
* godmode/reporting/graph_builder.php: Updated translatable period
|
||||
* strings to reduce its number and make them more compliant with the
|
||||
* rest.
|
||||
|
||||
2009-06-30 Jorge Gonzalez <jorgegonz@artica.es>
|
||||
|
||||
* include/languages/es.po, include/languages/es.mo: Updated Spanish
|
||||
|
|
|
@ -333,49 +333,49 @@ echo "<input type='text' name='height' value='$height' size=6>";
|
|||
|
||||
switch ($period) {
|
||||
case 3600:
|
||||
$period_label = __('1 hour');
|
||||
$period_label = "1 ".__('hour');
|
||||
break;
|
||||
case 7200:
|
||||
$period_label = __('2 hours');
|
||||
$period_label = "2 ".__('hours');
|
||||
break;
|
||||
case 10800:
|
||||
$period_label = __('3 hours');
|
||||
$period_label = "3 ".__('hours');
|
||||
break;
|
||||
case 21600:
|
||||
$period_label = __('6 hours');
|
||||
$period_label = "6 ".__('hours');
|
||||
break;
|
||||
case 43200:
|
||||
$period_label = __('12 hours');
|
||||
$period_label = "12 ".__('hours');
|
||||
break;
|
||||
case 86400:
|
||||
$period_label = __('1 day');
|
||||
$period_label = "1 ".__('day');
|
||||
break;
|
||||
case 172800:
|
||||
$period_label = __('2 days');
|
||||
$period_label = "2 ".__('days');
|
||||
break;
|
||||
case 345600:
|
||||
$period_label = __('4 days');
|
||||
$period_label = "4 ".__('days');
|
||||
break;
|
||||
case 604800:
|
||||
$period_label = __('Last week');
|
||||
break;
|
||||
case 1296000:
|
||||
$period_label = __('15 days');
|
||||
$period_label = "15 ".__('days');
|
||||
break;
|
||||
case 2592000:
|
||||
$period_label = __('Last month');
|
||||
break;
|
||||
case 5184000:
|
||||
$period_label = __('2 months');
|
||||
$period_label = "2 ".__('months');
|
||||
break;
|
||||
case 15552000:
|
||||
$period_label = __('6 months');
|
||||
$period_label = "6 ".__('months');
|
||||
break;
|
||||
case 31104000:
|
||||
$period_label = __('1 year');
|
||||
break;
|
||||
default:
|
||||
$period_label = __('1 day');
|
||||
$period_label = "1 ".__('day');
|
||||
}
|
||||
|
||||
|
||||
|
@ -389,18 +389,18 @@ if ($period==0) {
|
|||
} else {
|
||||
echo "<option value=$period>".$period_label."</option>";
|
||||
}
|
||||
echo "<option value=3600>".__('1 hour')."</option>";
|
||||
echo "<option value=7200>".__('2 hours')."</option>";
|
||||
echo "<option value=10800>".__('3 hours')."</option>";
|
||||
echo "<option value=21600>".__('6 hours')."</option>";
|
||||
echo "<option value=43200>".__('12 hours')."</option>";
|
||||
echo "<option value=3600>"."1 ".__('hour')."</option>";
|
||||
echo "<option value=7200>"."2 ".__('hours')."</option>";
|
||||
echo "<option value=10800>"."3 ".__('hours')."</option>";
|
||||
echo "<option value=21600>"."6 ".__('hours')."</option>";
|
||||
echo "<option value=43200>"."12 ".__('hours')."</option>";
|
||||
echo "<option value=86400>".__('Last day')."</option>";
|
||||
echo "<option value=172800>".__('2 days')."</option>";
|
||||
echo "<option value=172800>"."2 ".__('days')."</option>";
|
||||
echo "<option value=604800>".__('Last week')."</option>";
|
||||
echo "<option value=1296000>".__('15 days')."</option>";
|
||||
echo "<option value=1296000>"."15 ".__('15 days')."</option>";
|
||||
echo "<option value=2592000>".__('Last month')."</option>";
|
||||
echo "<option value=5184000>".__('2 months')."</option>";
|
||||
echo "<option value=15552000>".__('6 months')."</option>";
|
||||
echo "<option value=5184000>"."2 ".__('months')."</option>";
|
||||
echo "<option value=15552000>"."6 ".__('months')."</option>";
|
||||
echo "</select>";
|
||||
|
||||
echo "<td class='datos'>";
|
||||
|
|
|
@ -378,7 +378,7 @@ if (! $edit_layout && ! $id_layout) {
|
|||
|
||||
/* Layout_data editor form */
|
||||
$intervals = array ();
|
||||
$intervals[3600] = __('hour');
|
||||
$intervals[3600] = "1 ".__('hour');
|
||||
$intervals[7200] = "2 ".__('hours');
|
||||
$intervals[10800] = "3 ".__('hours');
|
||||
$intervals[21600] = "6 ".__('hours');
|
||||
|
@ -386,10 +386,10 @@ if (! $edit_layout && ! $id_layout) {
|
|||
$intervals[86400] = __('Last day');
|
||||
$intervals[172800] = "2 ". __('days');
|
||||
$intervals[1209600] = __('Last week');
|
||||
$intervals[2419200] = __('15 days');
|
||||
$intervals[2419200] = "15 ".__('days');
|
||||
$intervals[4838400] = __('Last month');
|
||||
$intervals[9676800] = __('Two months');
|
||||
$intervals[29030400] = __('Six months');
|
||||
$intervals[9676800] = "2 ".__('months');
|
||||
$intervals[29030400] = "6 ".__('months');
|
||||
|
||||
$agents = get_group_agents ($id_group);
|
||||
|
||||
|
|
Binary file not shown.
|
@ -7,8 +7,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: index.es\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-07-01 08:49+0200\n"
|
||||
"PO-Revision-Date: 2009-07-01 08:49+0200\n"
|
||||
"POT-Creation-Date: 2009-07-01 12:20+0200\n"
|
||||
"PO-Revision-Date: 2009-07-01 12:21+0200\n"
|
||||
"Last-Translator: Jorge Gonzalez <jorge.gonzalez@artica.es>\n"
|
||||
"Language-Team: Español <artica@artica.es>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
|
@ -419,6 +419,8 @@ msgid "minutes"
|
|||
msgstr "minutos"
|
||||
|
||||
#: ../../general/header.php:88 ../../godmode/reporting/map_builder.php:381
|
||||
#: ../../godmode/reporting/graph_builder.php:336
|
||||
#: ../../godmode/reporting/graph_builder.php:392
|
||||
#: ../../include/functions_alerts.php:333
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:117
|
||||
msgid "hour"
|
||||
|
@ -1242,6 +1244,14 @@ msgstr "Arrastre un elemento aquí para borrarlo del mapa"
|
|||
#: ../../godmode/reporting/map_builder.php:383
|
||||
#: ../../godmode/reporting/map_builder.php:384
|
||||
#: ../../godmode/reporting/map_builder.php:385
|
||||
#: ../../godmode/reporting/graph_builder.php:339
|
||||
#: ../../godmode/reporting/graph_builder.php:342
|
||||
#: ../../godmode/reporting/graph_builder.php:345
|
||||
#: ../../godmode/reporting/graph_builder.php:348
|
||||
#: ../../godmode/reporting/graph_builder.php:393
|
||||
#: ../../godmode/reporting/graph_builder.php:394
|
||||
#: ../../godmode/reporting/graph_builder.php:395
|
||||
#: ../../godmode/reporting/graph_builder.php:396
|
||||
#: ../../godmode/reporting/reporting_builder.php:359
|
||||
#: ../../godmode/reporting/reporting_builder.php:360
|
||||
#: ../../godmode/reporting/reporting_builder.php:361
|
||||
|
@ -1266,8 +1276,14 @@ msgstr "horas"
|
|||
msgid "Last day"
|
||||
msgstr "Último día"
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:387 ../../godmode/db/db_main.php:44
|
||||
#: ../../godmode/db/db_main.php:45 ../../include/functions.php:441
|
||||
#: ../../godmode/reporting/map_builder.php:387
|
||||
#: ../../godmode/reporting/map_builder.php:389
|
||||
#: ../../godmode/reporting/graph_builder.php:354
|
||||
#: ../../godmode/reporting/graph_builder.php:357
|
||||
#: ../../godmode/reporting/graph_builder.php:363
|
||||
#: ../../godmode/reporting/graph_builder.php:398
|
||||
#: ../../godmode/db/db_main.php:44 ../../godmode/db/db_main.php:45
|
||||
#: ../../include/functions.php:441
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:122
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:123
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:124
|
||||
|
@ -1282,12 +1298,6 @@ msgstr "días"
|
|||
msgid "Last week"
|
||||
msgstr "Última semana"
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:389
|
||||
#: ../../godmode/reporting/graph_builder.php:363
|
||||
#: ../../godmode/reporting/graph_builder.php:400
|
||||
msgid "15 days"
|
||||
msgstr "15 días"
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:390
|
||||
#: ../../godmode/reporting/graph_builder.php:366
|
||||
#: ../../godmode/reporting/graph_builder.php:401 ../../include/fgraph.php:255
|
||||
|
@ -1297,12 +1307,14 @@ msgid "Last month"
|
|||
msgstr "Último mes"
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:391
|
||||
msgid "Two months"
|
||||
msgstr "Dos meses"
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:392
|
||||
msgid "Six months"
|
||||
msgstr "Seis meses"
|
||||
#: ../../godmode/reporting/graph_builder.php:369
|
||||
#: ../../godmode/reporting/graph_builder.php:372
|
||||
#: ../../godmode/reporting/graph_builder.php:402
|
||||
#: ../../godmode/reporting/graph_builder.php:403
|
||||
#: ../../include/functions.php:444 ../../include/functions.php:446
|
||||
msgid "months"
|
||||
msgstr "meses"
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:397
|
||||
msgid "Map element editor"
|
||||
|
@ -1504,76 +1516,21 @@ msgstr "Sí"
|
|||
msgid "No"
|
||||
msgstr "No"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:336
|
||||
#: ../../godmode/reporting/graph_builder.php:392
|
||||
#: ../../godmode/reporting/reporting_builder.php:358
|
||||
#: ../../include/functions_custom_graphs.php:107
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:30
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:32
|
||||
msgid "1 hour"
|
||||
msgstr "1 hora"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:339
|
||||
#: ../../godmode/reporting/graph_builder.php:393
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:31
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:33
|
||||
msgid "2 hours"
|
||||
msgstr "2 horas"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:342
|
||||
#: ../../godmode/reporting/graph_builder.php:394
|
||||
msgid "3 hours"
|
||||
msgstr "3 horas"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:345
|
||||
#: ../../godmode/reporting/graph_builder.php:395
|
||||
msgid "6 hours"
|
||||
msgstr "6 horas"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:348
|
||||
#: ../../godmode/reporting/graph_builder.php:396
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:33
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:35
|
||||
msgid "12 hours"
|
||||
msgstr "12 horas"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:351
|
||||
#: ../../godmode/reporting/graph_builder.php:378
|
||||
#: ../../godmode/reporting/reporting_builder.php:363
|
||||
#: ../../include/functions_custom_graphs.php:112
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:34
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:36
|
||||
msgid "1 day"
|
||||
msgstr "1 día"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:354
|
||||
#: ../../godmode/reporting/graph_builder.php:398
|
||||
#: ../../godmode/reporting/reporting_builder.php:364
|
||||
#: ../../include/functions_custom_graphs.php:113
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:35
|
||||
msgid "2 days"
|
||||
msgstr "2 días"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:357
|
||||
msgid "4 days"
|
||||
msgstr "días"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:369
|
||||
#: ../../godmode/reporting/graph_builder.php:402
|
||||
msgid "2 months"
|
||||
msgstr "2 meses"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:372
|
||||
#: ../../godmode/reporting/graph_builder.php:403
|
||||
#: ../../godmode/reporting/reporting_builder.php:369
|
||||
#: ../../include/functions_custom_graphs.php:116
|
||||
msgid "6 months"
|
||||
msgstr "6 meses"
|
||||
#: ../../include/functions_alerts.php:337
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:121
|
||||
msgid "day"
|
||||
msgstr "día"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:375
|
||||
msgid "1 year"
|
||||
msgstr "1 año"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:400
|
||||
msgid "15 days"
|
||||
msgstr "15 días"
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:407 ../../operation/menu.php:114
|
||||
msgid "View events"
|
||||
msgstr "Ver eventos"
|
||||
|
@ -1756,6 +1713,26 @@ msgstr "Añadir elemento al informe"
|
|||
msgid "Reporting type"
|
||||
msgstr "Tipo de informe"
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:358
|
||||
#: ../../include/functions_custom_graphs.php:107
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:30
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:32
|
||||
msgid "1 hour"
|
||||
msgstr "1 hora"
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:363
|
||||
#: ../../include/functions_custom_graphs.php:112
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:34
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:36
|
||||
msgid "1 day"
|
||||
msgstr "1 día"
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:364
|
||||
#: ../../include/functions_custom_graphs.php:113
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:35
|
||||
msgid "2 days"
|
||||
msgstr "2 días"
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:365
|
||||
#: ../../include/functions_custom_graphs.php:114
|
||||
msgid "1 week"
|
||||
|
@ -1774,6 +1751,11 @@ msgstr "1 mes"
|
|||
msgid "3 months"
|
||||
msgstr "3 meses"
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:369
|
||||
#: ../../include/functions_custom_graphs.php:116
|
||||
msgid "6 months"
|
||||
msgstr "6 meses"
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:384
|
||||
msgid "Custom graph name"
|
||||
msgstr "Nombre de gráfica personalizada"
|
||||
|
@ -5120,11 +5102,6 @@ msgstr "Igual a"
|
|||
msgid "Not equal to"
|
||||
msgstr "Diferente a"
|
||||
|
||||
#: ../../include/functions_alerts.php:337
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:121
|
||||
msgid "day"
|
||||
msgstr "día"
|
||||
|
||||
#: ../../include/functions_alerts.php:338
|
||||
msgid "week"
|
||||
msgstr "semana"
|
||||
|
@ -5158,10 +5135,6 @@ msgstr ","
|
|||
msgid "Now"
|
||||
msgstr "Ahora"
|
||||
|
||||
#: ../../include/functions.php:444 ../../include/functions.php:446
|
||||
msgid "months"
|
||||
msgstr "meses"
|
||||
|
||||
#: ../../include/functions.php:554 ../../include/functions.php:803
|
||||
#: ../../include/functions.php:823 ../../include/fgraph.php:770
|
||||
msgid "Informational"
|
||||
|
@ -6380,11 +6353,21 @@ msgstr "Salud global"
|
|||
msgid "Latest events list"
|
||||
msgstr "Lista de los últimos eventos"
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:31
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:33
|
||||
msgid "2 hours"
|
||||
msgstr "2 horas"
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:32
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:34
|
||||
msgid "5 hours"
|
||||
msgstr "5 horas"
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:33
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:35
|
||||
msgid "12 hours"
|
||||
msgstr "12 horas"
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:37
|
||||
msgid "Limit"
|
||||
msgstr "Límite"
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-07-01 08:51+0200\n"
|
||||
"POT-Creation-Date: 2009-07-01 12:21+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -407,6 +407,8 @@ msgid "minutes"
|
|||
msgstr ""
|
||||
|
||||
#: ../../general/header.php:88 ../../godmode/reporting/map_builder.php:381
|
||||
#: ../../godmode/reporting/graph_builder.php:336
|
||||
#: ../../godmode/reporting/graph_builder.php:392
|
||||
#: ../../include/functions_alerts.php:333
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:117
|
||||
msgid "hour"
|
||||
|
@ -1209,6 +1211,14 @@ msgstr ""
|
|||
#: ../../godmode/reporting/map_builder.php:383
|
||||
#: ../../godmode/reporting/map_builder.php:384
|
||||
#: ../../godmode/reporting/map_builder.php:385
|
||||
#: ../../godmode/reporting/graph_builder.php:339
|
||||
#: ../../godmode/reporting/graph_builder.php:342
|
||||
#: ../../godmode/reporting/graph_builder.php:345
|
||||
#: ../../godmode/reporting/graph_builder.php:348
|
||||
#: ../../godmode/reporting/graph_builder.php:393
|
||||
#: ../../godmode/reporting/graph_builder.php:394
|
||||
#: ../../godmode/reporting/graph_builder.php:395
|
||||
#: ../../godmode/reporting/graph_builder.php:396
|
||||
#: ../../godmode/reporting/reporting_builder.php:359
|
||||
#: ../../godmode/reporting/reporting_builder.php:360
|
||||
#: ../../godmode/reporting/reporting_builder.php:361
|
||||
|
@ -1233,8 +1243,14 @@ msgstr ""
|
|||
msgid "Last day"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:387 ../../godmode/db/db_main.php:44
|
||||
#: ../../godmode/db/db_main.php:45 ../../include/functions.php:441
|
||||
#: ../../godmode/reporting/map_builder.php:387
|
||||
#: ../../godmode/reporting/map_builder.php:389
|
||||
#: ../../godmode/reporting/graph_builder.php:354
|
||||
#: ../../godmode/reporting/graph_builder.php:357
|
||||
#: ../../godmode/reporting/graph_builder.php:363
|
||||
#: ../../godmode/reporting/graph_builder.php:398
|
||||
#: ../../godmode/db/db_main.php:44 ../../godmode/db/db_main.php:45
|
||||
#: ../../include/functions.php:441
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:122
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:123
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:124
|
||||
|
@ -1249,12 +1265,6 @@ msgstr ""
|
|||
msgid "Last week"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:389
|
||||
#: ../../godmode/reporting/graph_builder.php:363
|
||||
#: ../../godmode/reporting/graph_builder.php:400
|
||||
msgid "15 days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:390
|
||||
#: ../../godmode/reporting/graph_builder.php:366
|
||||
#: ../../godmode/reporting/graph_builder.php:401 ../../include/fgraph.php:255
|
||||
|
@ -1264,11 +1274,13 @@ msgid "Last month"
|
|||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:391
|
||||
msgid "Two months"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:392
|
||||
msgid "Six months"
|
||||
#: ../../godmode/reporting/graph_builder.php:369
|
||||
#: ../../godmode/reporting/graph_builder.php:372
|
||||
#: ../../godmode/reporting/graph_builder.php:402
|
||||
#: ../../godmode/reporting/graph_builder.php:403
|
||||
#: ../../include/functions.php:444 ../../include/functions.php:446
|
||||
msgid "months"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/map_builder.php:397
|
||||
|
@ -1471,76 +1483,21 @@ msgstr ""
|
|||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:336
|
||||
#: ../../godmode/reporting/graph_builder.php:392
|
||||
#: ../../godmode/reporting/reporting_builder.php:358
|
||||
#: ../../include/functions_custom_graphs.php:107
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:30
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:32
|
||||
msgid "1 hour"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:339
|
||||
#: ../../godmode/reporting/graph_builder.php:393
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:31
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:33
|
||||
msgid "2 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:342
|
||||
#: ../../godmode/reporting/graph_builder.php:394
|
||||
msgid "3 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:345
|
||||
#: ../../godmode/reporting/graph_builder.php:395
|
||||
msgid "6 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:348
|
||||
#: ../../godmode/reporting/graph_builder.php:396
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:33
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:35
|
||||
msgid "12 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:351
|
||||
#: ../../godmode/reporting/graph_builder.php:378
|
||||
#: ../../godmode/reporting/reporting_builder.php:363
|
||||
#: ../../include/functions_custom_graphs.php:112
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:34
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:36
|
||||
msgid "1 day"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:354
|
||||
#: ../../godmode/reporting/graph_builder.php:398
|
||||
#: ../../godmode/reporting/reporting_builder.php:364
|
||||
#: ../../include/functions_custom_graphs.php:113
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:35
|
||||
msgid "2 days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:357
|
||||
msgid "4 days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:369
|
||||
#: ../../godmode/reporting/graph_builder.php:402
|
||||
msgid "2 months"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:372
|
||||
#: ../../godmode/reporting/graph_builder.php:403
|
||||
#: ../../godmode/reporting/reporting_builder.php:369
|
||||
#: ../../include/functions_custom_graphs.php:116
|
||||
msgid "6 months"
|
||||
#: ../../include/functions_alerts.php:337
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:121
|
||||
msgid "day"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:375
|
||||
msgid "1 year"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:400
|
||||
msgid "15 days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/graph_builder.php:407 ../../operation/menu.php:114
|
||||
msgid "View events"
|
||||
msgstr ""
|
||||
|
@ -1723,6 +1680,26 @@ msgstr ""
|
|||
msgid "Reporting type"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:358
|
||||
#: ../../include/functions_custom_graphs.php:107
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:30
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:32
|
||||
msgid "1 hour"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:363
|
||||
#: ../../include/functions_custom_graphs.php:112
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:34
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:36
|
||||
msgid "1 day"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:364
|
||||
#: ../../include/functions_custom_graphs.php:113
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:35
|
||||
msgid "2 days"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:365
|
||||
#: ../../include/functions_custom_graphs.php:114
|
||||
msgid "1 week"
|
||||
|
@ -1741,6 +1718,11 @@ msgstr ""
|
|||
msgid "3 months"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:369
|
||||
#: ../../include/functions_custom_graphs.php:116
|
||||
msgid "6 months"
|
||||
msgstr ""
|
||||
|
||||
#: ../../godmode/reporting/reporting_builder.php:384
|
||||
msgid "Custom graph name"
|
||||
msgstr ""
|
||||
|
@ -5052,11 +5034,6 @@ msgstr ""
|
|||
msgid "Not equal to"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/functions_alerts.php:337
|
||||
#: ../../enterprise/godmode/agentes/inventory_manager.php:121
|
||||
msgid "day"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/functions_alerts.php:338
|
||||
msgid "week"
|
||||
msgstr ""
|
||||
|
@ -5090,10 +5067,6 @@ msgstr ""
|
|||
msgid "Now"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/functions.php:444 ../../include/functions.php:446
|
||||
msgid "months"
|
||||
msgstr ""
|
||||
|
||||
#: ../../include/functions.php:554 ../../include/functions.php:803
|
||||
#: ../../include/functions.php:823 ../../include/fgraph.php:770
|
||||
msgid "Informational"
|
||||
|
@ -6284,11 +6257,21 @@ msgstr ""
|
|||
msgid "Latest events list"
|
||||
msgstr ""
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:31
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:33
|
||||
msgid "2 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:32
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:34
|
||||
msgid "5 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:33
|
||||
#: ../../enterprise/dashboard/widgets/single_graph.php:35
|
||||
msgid "12 hours"
|
||||
msgstr ""
|
||||
|
||||
#: ../../enterprise/dashboard/widgets/events_list.php:37
|
||||
msgid "Limit"
|
||||
msgstr ""
|
||||
|
|
Loading…
Reference in New Issue