Project

General

Profile

Revision 2887f19e

ID2887f19e9f0ae70cec601547f330c20b7e2c3d9c
Parent 89fac0bf
Child 27d0bab2

Added by Francois POIROTTE almost 14 years ago

Mise en conformité du comportement de VigiGraph avec la doc:
- Dans le formulaire de recherche, si on ne saisit aucune valeur mais qu'on clique sur le bouton de recherhe, on doit afficher la liste complète des indicateurs (limitée à 100 entrées).
- Dans les autres cas, on honore les valeurs saisies.

Modification de la traduction pour "Host Picker" : utilisation de "Sélection d'un hôte".
Correction des espaces en fin de ligne (involontairement).

git-svn-id: https://vigilo-dev.si.c-s.fr/svn@4133 b22e2e97-25c9-44ff-b637-2e5ceca36478

View differences:

javascript/source/class/vigigraph/Application.js
14 14
   it under the terms of the GNU General Public License as published by
15 15
   the Free Software Foundation; either version 2 of the License, or
16 16
   (at your option) any later version.
17
  
17

  
18 18
   This program is distributed in the hope that it will be useful,
19 19
   but WITHOUT ANY WARRANTY; without even the implied warranty of
20 20
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 21
   GNU General Public License for more details.
22
  
22

  
23 23
   You should have received a copy of the GNU General Public License
24 24
   along with this program; if not, write to the Free Software
25 25
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
......
152 152
      gl.add(r3,2,2);
153 153
      gl.add(r4,2,3);
154 154
      gl.add(r5,2,4);
155
      
155

  
156 156
      gl.add(b1,3,0);
157 157
      gl.add(b3,3,2);
158 158
      gl.add(b5,3,4);
......
225 225
        win.open();
226 226
      });
227 227

  
228
      b5.addEventListener("execute",function(e) { 
228
      b5.addEventListener("execute",function(e) {
229 229
        var host=combo3.getSelected().getLabel();
230 230
        var graph=combo5.getSelected().getLabel();
231 231
        this.openGraph(host, graph, null, null, true);
232 232
      }, this);
233 233

  
234
      b1.addEventListener("execute",function(e) { 
234
      b1.addEventListener("execute",function(e) {
235 235
        var w_search = new qx.ui.window.Window(this.tr("Search"), "icon/16/actions/zoom.png");
236 236
        w_search.addToDocument();
237 237
        w_search.set({
......
297 297
        };
298 298
        w_search_v.add(search_results);
299 299
        //search_results.setLocation(10, 40);
300
        function _searchResultsUpdater(host,graph) {
300
        function _searchResultsUpdater(host,graph,glass) {
301 301
          var url = urls.searchHostAndGraph;
302 302
          if (host && graph) {
303 303
            url = url+"?host="+host+"&graph="+graph
......
305 305
            url = url+"?host="+host;
306 306
          } else if (graph) {
307 307
            url = url+"?graph="+graph;
308
          } else if (glass) {
309
            url = url+"?graph=*";
308 310
          }
309 311

  
312

  
310 313
          search_results_model.setData([]);
311 314
          var g=new qx.io.remote.Request(url,"GET","application/json");
312 315
          g.addEventListener("completed", function(e) {
......
331 334
              o.setSelected(c_item);
332 335
            }
333 336
          }
334
          combo1.addEventListener("changeEnabled", function(e) { 
337
          combo1.addEventListener("changeEnabled", function(e) {
335 338
            if (e.getValue() == true) {
336 339
              e.getTarget().removeEventListener("changeEnabled", arguments.callee);
337 340
              _selectItem(e.getTarget(), host_main_group);
338 341
            }
339 342
          });
340
          combo2.addEventListener("changeEnabled", function(e) { 
343
          combo2.addEventListener("changeEnabled", function(e) {
341 344
            if (e.getValue() == true) {
342 345
              e.getTarget().removeEventListener("changeEnabled", arguments.callee);
343 346
              _selectItem(e.getTarget(), host_sec_group);
344 347
            }
345 348
          });
346
          combo3.addEventListener("changeEnabled", function(e) { 
349
          combo3.addEventListener("changeEnabled", function(e) {
347 350
            if (e.getValue() == true) {
348 351
              e.getTarget().removeEventListener("changeEnabled", arguments.callee);
349
              _selectItem(e.getTarget(), host); 
352
              _selectItem(e.getTarget(), host);
350 353
            }
351 354
          });
352 355
          if ((graph) && (graph_group)) {
353 356
            combo4.addEventListener("changeEnabled", function(e) {
354 357
              if (e.getValue() == true) {
355 358
                e.getTarget().removeEventListener("changeEnabled", arguments.callee);
356
                _selectItem(e.getTarget(), graph_group); 
359
                _selectItem(e.getTarget(), graph_group);
357 360
              }
358 361
            });
359 362
            combo5.addEventListener("changeEnabled", function(e) {
360 363
              if (e.getValue() == true) {
361 364
                e.getTarget().removeEventListener("changeEnabled", arguments.callee);
362
                _selectItem(e.getTarget(), graph); 
365
                _selectItem(e.getTarget(), graph);
363 366
              }
364 367
            });
365 368
          }
......
379 382
          var g=new qx.io.remote.Request(url,"GET","application/json");
380 383
          g.addEventListener("completed", function(e) {
381 384
            r=e.getContent().items;
382
            
385

  
383 386
            /// @XXX pour le moment, on suppose qu'il y a 2 SupItemGroup
384 387
            /// dans la réponse. A terme, on devrait pouvoir en avoir plus.
385 388
            /// De même, on suppose qu'il n'y a qu'un seul GraphGroup à
......
388 391
            var host_main_group = r[0][0];
389 392
            var host_sec_group = r[0][1];
390 393

  
391
            if (!r[1].length) { 
394
            if (!r[1].length) {
392 395
              _chooseInCombos(host, host_main_group, host_sec_group, null, null);
393 396
            }
394 397
            else {
......
420 423
        // Submit events
421 424
        search_host.addEventListener("keydown", function(e) {
422 425
          if (e.getKeyIdentifier() == "Enter") {
423
            _searchResultsUpdater(search_host.getValue(), search_graph.getValue());
426
            _searchResultsUpdater(search_host.getValue(), search_graph.getValue(), false);
424 427
          }
425 428
        });
426 429
        search_host.addEventListener("changeValue", function(e) {
427
          _searchResultsUpdater(search_host.getValue(), search_graph.getValue());document.body.outerHTML
430
          _searchResultsUpdater(search_host.getValue(), search_graph.getValue(), false);
428 431
        });
429 432
        search_graph.addEventListener("keydown", function(e) {
430 433
          if (e.getKeyIdentifier() == "Enter") {
431
            _searchResultsUpdater(search_host.getValue(), search_graph.getValue());
434
            _searchResultsUpdater(search_host.getValue(), search_graph.getValue(), false);
432 435
          }
433 436
        });
434 437
        search_graph.addEventListener("changeValue", function(e) {
435
          _searchResultsUpdater(search_host.getValue(), search_graph.getValue());
438
          _searchResultsUpdater(search_host.getValue(), search_graph.getValue(), false);
436 439
        });
437 440
        // Submit button
438 441
        search_button.addEventListener("execute",function(e) {
439
          _searchResultsUpdater(search_host.getValue(), search_graph.getValue());
442
          _searchResultsUpdater(search_host.getValue(), search_graph.getValue(), true);
440 443
        });
441 444
        w_search.open();
442 445
        w_search.setTop(w1.getTop());document.body.outerHTML
......
609 612
      bt_refresh.setBorder("outset");
610 613
      // Timeframe menu
611 614
      var time_menu = new qx.ui.menu.Menu();
612
      var timeframes = [ 
615
      var timeframes = [
613 616
        [12, this.tr("Last 12 hours")],
614 617
        [24, this.tr("Last 24 hours")],
615 618
        [48, this.tr("Last 48 hours")],
......
680 683
      {
681 684
        var url= urls.getStartTime+"/"+encodeURIComponent(host)+"/starttime?host="+encodeURIComponent(host);
682 685
        var g=new qx.io.remote.Request(url,"GET","application/json");
683
        g.addEventListener("completed", function(e) { 
686
        g.addEventListener("completed", function(e) {
684 687
          start = parseInt(e.getContent().starttime);
685 688
          setStep(start);
686
          bt_first.setEnabled(false); 
689
          bt_first.setEnabled(false);
687 690
          bt_prev.setEnabled(false);
688 691
        });
689 692
        g.send();
......
750 753
      {
751 754
        var url= urls.tempoDelayRefresh;
752 755
        var r = new qx.io.remote.Request(url,"GET","text/plain");
753
        r.addEventListener("completed", function(e) { 
756
        r.addEventListener("completed", function(e) {
754 757
          delay = e.getContent();
755 758
        });
756 759
        r.send();
......
765 768
        }
766 769
        var url= urls.getIndicators+"?host="+host+"&graph="+graph;
767 770
        var r = new qx.io.remote.Request(url,"GET","application/json");
768
        r.addEventListener("completed", function(e) { 
771
        r.addEventListener("completed", function(e) {
769 772
          r = e.getContent().items;
770 773
          for(var i = 0; i < r.length; i++)
771 774
          {
......
847 850
      function setTail(hours)
848 851
      {
849 852
        now = getTime();
850
        start=now-hours*3600; 
851
        duration=hours*3600; 
853
        start=now-hours*3600;
854
        duration=hours*3600;
852 855

  
853 856
        setUrl(start,duration);
854 857
        loadImage(url,l);
......
874 877
      bt_first.addEventListener("execute", function(e) { updateGraphOnStartTime() });
875 878
      bt_prev.addEventListener("execute", function(e) { setStep(start-duration); });
876 879
      bt_next.addEventListener("execute", function(e) { setStep(start+duration); });
877
      bt_last.addEventListener("execute", function(e) { 
878
        now = getTime(); 
879
        setStep(now-duration); 
880
      bt_last.addEventListener("execute", function(e) {
881
        now = getTime();
882
        setStep(now-duration);
880 883
      });
881 884
      bt_zoomin.addEventListener("execute", function(e) { duration = duration / 2; setStep(start+duration/2); });
882
      bt_zoomout.addEventListener("execute", function(e) { 
883
        start = start - duration / 2; 
884
        duration = duration * 2; 
885
        setStep(start); 
885
      bt_zoomout.addEventListener("execute", function(e) {
886
        start = start - duration / 2;
887
        duration = duration * 2;
888
        setStep(start);
886 889
      });
887 890

  
888 891
      indicator_menu_bt.addEventListener("click", function(e)
......
969 972
          cdi.remove(c_l);
970 973
        }
971 974
      });
972
      w._captionBar.addEventListener("mouseup", function(e) { 
975
      w._captionBar.addEventListener("mouseup", function(e) {
973 976
        var state = qx.client.History.getInstance().getState();
974 977

  
975 978
        var wleft = this.getLeft();
......
993 996
      w.open();
994 997
      wleft = parseInt(wleft);
995 998
      wtop = parseInt(wtop);
996
      if (wleft) { 
997
        w.setLeft(wleft); 
999
      if (wleft) {
1000
        w.setLeft(wleft);
998 1001
      } else {
999 1002
        // w.setRight() makes the close button fixed on the page even if you move the window
1000 1003
        w.setLeft(qx.ui.core.ClientDocument.getInstance().getClientWidth() - 600);
1001 1004
      }
1002
      if (wtop) { 
1003
        w.setTop(wtop); 
1005
      if (wtop) {
1006
        w.setTop(wtop);
1004 1007
      } else {
1005 1008
        w.setTop(5);
1006 1009
      }
......
1017 1020
        qx.log.Logger.ROOT_LOGGER.debug("state: "+state);
1018 1021
      }
1019 1022
    },
1020
    
1021
	
1023

  
1024

  
1022 1025
    /**
1023 1026
     * On window close (verbatim from qooxdoo's skeleton)
1024 1027
     *
javascript/source/translation/C.po
7 7
msgstr ""
8 8
"Project-Id-Version: VigiGraph 1.0\n"
9 9
"Report-Msgid-Bugs-To: \n"
10
"POT-Creation-Date: 2010-04-30 17:14+0200\n"
10
"POT-Creation-Date: 2010-08-27 18:10+0200\n"
11 11
"PO-Revision-Date: 2007-12-06 16:03+0100\n"
12 12
"Last-Translator: Automatically generated\n"
13 13
"Language-Team: none\n"
......
84 84
msgid "Host"
85 85
msgstr "Host"
86 86

  
87
#: source/class/vigigraph/Application.js:597
88
msgid "\"%1\" Graph for host %2"
87
#: source/class/vigigraph/Application.js:605
88
#, fuzzy
89
msgid "Graph for \"%1\" on \"%2\""
89 90
msgstr "\"%1\" Graph for host %2"
90 91

  
91
#: source/class/vigigraph/Application.js:602
92
#: source/class/vigigraph/Application.js:611
92 93
msgid "Reload graph"
93 94
msgstr "Reload graph"
94 95

  
95
#: source/class/vigigraph/Application.js:607
96
#: source/class/vigigraph/Application.js:616
96 97
msgid "Last 12 hours"
97 98
msgstr "Last 12 hours"
98 99

  
99
#: source/class/vigigraph/Application.js:608
100
#: source/class/vigigraph/Application.js:617
100 101
msgid "Last 24 hours"
101 102
msgstr "Last 24 hours"
102 103

  
103
#: source/class/vigigraph/Application.js:609
104
#: source/class/vigigraph/Application.js:618
104 105
msgid "Last 48 hours"
105 106
msgstr "Last 48 hours"
106 107

  
107
#: source/class/vigigraph/Application.js:610
108
#: source/class/vigigraph/Application.js:619
108 109
msgid "Last 7 days"
109 110
msgstr "Last 7 days"
110 111

  
111
#: source/class/vigigraph/Application.js:611
112
#: source/class/vigigraph/Application.js:620
112 113
msgid "Last 14 days"
113 114
msgstr "Last 14 days"
114 115

  
115
#: source/class/vigigraph/Application.js:612
116
#: source/class/vigigraph/Application.js:621
116 117
msgid "Last 3 months"
117 118
msgstr "Last 3 months"
118 119

  
119
#: source/class/vigigraph/Application.js:613
120
#: source/class/vigigraph/Application.js:622
120 121
msgid "Last 6 months"
121 122
msgstr "Last 6 months"
122 123

  
123
#: source/class/vigigraph/Application.js:614
124
#: source/class/vigigraph/Application.js:623
124 125
msgid "Last year"
125 126
msgstr "Last year"
126 127

  
127
#: source/class/vigigraph/Application.js:623
128
#: source/class/vigigraph/Application.js:632
128 129
msgid "Timeframe"
129 130
msgstr "Timeframe"
130 131

  
131
#: source/class/vigigraph/Application.js:624
132
#: source/class/vigigraph/Application.js:633
132 133
msgid "Timeframe menu"
133 134
msgstr "Timeframe menu"
134 135

  
135
#: source/class/vigigraph/Application.js:627
136
#: source/class/vigigraph/Application.js:636
136 137
msgid "Graph start"
137 138
msgstr "Graph start"
138 139

  
139
#: source/class/vigigraph/Application.js:629
140
#: source/class/vigigraph/Application.js:638
140 141
msgid "Last section"
141 142
msgstr "Last section"
142 143

  
143
#: source/class/vigigraph/Application.js:631
144
#: source/class/vigigraph/Application.js:640
144 145
msgid "Next section"
145 146
msgstr "Next section"
146 147

  
147
#: source/class/vigigraph/Application.js:633
148
#: source/class/vigigraph/Application.js:642
148 149
msgid "Graph end"
149 150
msgstr "Graph end"
150 151

  
151
#: source/class/vigigraph/Application.js:635
152
#: source/class/vigigraph/Application.js:644
152 153
msgid "Zoom in"
153 154
msgstr "Zoom in"
154 155

  
155
#: source/class/vigigraph/Application.js:637
156
#: source/class/vigigraph/Application.js:646
156 157
msgid "Zoom out"
157 158
msgstr "Zoom out"
158 159

  
159
#: source/class/vigigraph/Application.js:639
160
#: source/class/vigigraph/Application.js:648
160 161
msgid "Print Graph"
161 162
msgstr "Print Graph"
162 163

  
163
#: source/class/vigigraph/Application.js:645
164
#: source/class/vigigraph/Application.js:646
164
#: source/class/vigigraph/Application.js:654
165
#: source/class/vigigraph/Application.js:655
165 166
msgid "Export CSV"
166 167
msgstr "Export CSV"
167 168

  
168
#: source/class/vigigraph/Application.js:769
169
#: source/class/vigigraph/Application.js:778
169 170
msgid "All"
170 171
msgstr ""
javascript/source/translation/en.po
7 7
msgstr ""
8 8
"Project-Id-Version: VigiGraph 1.0\n"
9 9
"Report-Msgid-Bugs-To: \n"
10
"POT-Creation-Date: 2010-04-30 17:14+0200\n"
10
"POT-Creation-Date: 2010-08-27 18:10+0200\n"
11 11
"PO-Revision-Date: 2010-04-23 13:12+0200\n"
12 12
"Last-Translator: Automatically generated\n"
13 13
"Language-Team: none\n"
......
85 85
msgid "Host"
86 86
msgstr "Host"
87 87

  
88
#: source/class/vigigraph/Application.js:597
89
msgid "\"%1\" Graph for host %2"
88
#: source/class/vigigraph/Application.js:605
89
#, fuzzy
90
msgid "Graph for \"%1\" on \"%2\""
90 91
msgstr "\"%1\" Graph for host %2"
91 92

  
92
#: source/class/vigigraph/Application.js:602
93
#: source/class/vigigraph/Application.js:611
93 94
msgid "Reload graph"
94 95
msgstr "Reload graph"
95 96

  
96
#: source/class/vigigraph/Application.js:607
97
#: source/class/vigigraph/Application.js:616
97 98
msgid "Last 12 hours"
98 99
msgstr "Last 12 hours"
99 100

  
100
#: source/class/vigigraph/Application.js:608
101
#: source/class/vigigraph/Application.js:617
101 102
msgid "Last 24 hours"
102 103
msgstr "Last 24 hours"
103 104

  
104
#: source/class/vigigraph/Application.js:609
105
#: source/class/vigigraph/Application.js:618
105 106
msgid "Last 48 hours"
106 107
msgstr "Last 48 hours"
107 108

  
108
#: source/class/vigigraph/Application.js:610
109
#: source/class/vigigraph/Application.js:619
109 110
msgid "Last 7 days"
110 111
msgstr "Last 7 days"
111 112

  
112
#: source/class/vigigraph/Application.js:611
113
#: source/class/vigigraph/Application.js:620
113 114
msgid "Last 14 days"
114 115
msgstr "Last 14 days"
115 116

  
116
#: source/class/vigigraph/Application.js:612
117
#: source/class/vigigraph/Application.js:621
117 118
msgid "Last 3 months"
118 119
msgstr "Last 3 months"
119 120

  
120
#: source/class/vigigraph/Application.js:613
121
#: source/class/vigigraph/Application.js:622
121 122
msgid "Last 6 months"
122 123
msgstr "Last 6 months"
123 124

  
124
#: source/class/vigigraph/Application.js:614
125
#: source/class/vigigraph/Application.js:623
125 126
msgid "Last year"
126 127
msgstr "Last year"
127 128

  
128
#: source/class/vigigraph/Application.js:623
129
#: source/class/vigigraph/Application.js:632
129 130
msgid "Timeframe"
130 131
msgstr "Timeframe"
131 132

  
132
#: source/class/vigigraph/Application.js:624
133
#: source/class/vigigraph/Application.js:633
133 134
msgid "Timeframe menu"
134 135
msgstr "Timeframe menu"
135 136

  
136
#: source/class/vigigraph/Application.js:627
137
#: source/class/vigigraph/Application.js:636
137 138
msgid "Graph start"
138 139
msgstr "Graph start"
139 140

  
140
#: source/class/vigigraph/Application.js:629
141
#: source/class/vigigraph/Application.js:638
141 142
msgid "Last section"
142 143
msgstr "Last section"
143 144

  
144
#: source/class/vigigraph/Application.js:631
145
#: source/class/vigigraph/Application.js:640
145 146
msgid "Next section"
146 147
msgstr "Next section"
147 148

  
148
#: source/class/vigigraph/Application.js:633
149
#: source/class/vigigraph/Application.js:642
149 150
msgid "Graph end"
150 151
msgstr "Graph end"
151 152

  
152
#: source/class/vigigraph/Application.js:635
153
#: source/class/vigigraph/Application.js:644
153 154
msgid "Zoom in"
154 155
msgstr "Zoom in"
155 156

  
156
#: source/class/vigigraph/Application.js:637
157
#: source/class/vigigraph/Application.js:646
157 158
msgid "Zoom out"
158 159
msgstr "Zoom out"
159 160

  
160
#: source/class/vigigraph/Application.js:639
161
#: source/class/vigigraph/Application.js:648
161 162
msgid "Print Graph"
162 163
msgstr "Print Graph"
163 164

  
164
#: source/class/vigigraph/Application.js:645
165
#: source/class/vigigraph/Application.js:646
165
#: source/class/vigigraph/Application.js:654
166
#: source/class/vigigraph/Application.js:655
166 167
msgid "Export CSV"
167 168
msgstr "Export CSV"
168 169

  
169
#: source/class/vigigraph/Application.js:769
170
#: source/class/vigigraph/Application.js:778
170 171
msgid "All"
171 172
msgstr ""
javascript/source/translation/fr.po
7 7
msgstr ""
8 8
"Project-Id-Version: VigiGraph 1.0\n"
9 9
"Report-Msgid-Bugs-To: \n"
10
"POT-Creation-Date: 2010-04-30 17:14+0200\n"
10
"POT-Creation-Date: 2010-08-27 18:10+0200\n"
11 11
"PO-Revision-Date: 2007-12-06 16:03+0100\n"
12 12
"Last-Translator: Automatically generated\n"
13 13
"Language-Team: none\n"
......
18 18

  
19 19
#: source/class/vigigraph/Application.js:90
20 20
msgid "Host Picker"
21
msgstr "Sélecteur d'hôtes"
21
msgstr "Sélection d'un hôte"
22 22

  
23 23
#: source/class/vigigraph/Application.js:118
24 24
msgid "Main Group"
......
85 85
msgid "Host"
86 86
msgstr "Hôte"
87 87

  
88
#: source/class/vigigraph/Application.js:597
89
msgid "\"%1\" Graph for host %2"
88
#: source/class/vigigraph/Application.js:605
89
msgid "Graph for \"%1\" on \"%2\""
90 90
msgstr "Graphe \"%1\" pour l'hôte %2"
91 91

  
92
#: source/class/vigigraph/Application.js:602
92
#: source/class/vigigraph/Application.js:611
93 93
msgid "Reload graph"
94 94
msgstr "Recharger le graphe"
95 95

  
96
#: source/class/vigigraph/Application.js:607
96
#: source/class/vigigraph/Application.js:616
97 97
msgid "Last 12 hours"
98 98
msgstr "12 dernières heures"
99 99

  
100
#: source/class/vigigraph/Application.js:608
100
#: source/class/vigigraph/Application.js:617
101 101
msgid "Last 24 hours"
102 102
msgstr "24 dernières heures"
103 103

  
104
#: source/class/vigigraph/Application.js:609
104
#: source/class/vigigraph/Application.js:618
105 105
msgid "Last 48 hours"
106 106
msgstr "48 dernières heures"
107 107

  
108
#: source/class/vigigraph/Application.js:610
108
#: source/class/vigigraph/Application.js:619
109 109
msgid "Last 7 days"
110 110
msgstr "7 derniers jours"
111 111

  
112
#: source/class/vigigraph/Application.js:611
112
#: source/class/vigigraph/Application.js:620
113 113
msgid "Last 14 days"
114 114
msgstr "14 derniers jours"
115 115

  
116
#: source/class/vigigraph/Application.js:612
116
#: source/class/vigigraph/Application.js:621
117 117
msgid "Last 3 months"
118 118
msgstr "3 derniers mois"
119 119

  
120
#: source/class/vigigraph/Application.js:613
120
#: source/class/vigigraph/Application.js:622
121 121
msgid "Last 6 months"
122 122
msgstr "6 derniers mois"
123 123

  
124
#: source/class/vigigraph/Application.js:614
124
#: source/class/vigigraph/Application.js:623
125 125
msgid "Last year"
126 126
msgstr "Dernière année"
127 127

  
128
#: source/class/vigigraph/Application.js:623
128
#: source/class/vigigraph/Application.js:632
129 129
msgid "Timeframe"
130 130
msgstr "Période"
131 131

  
132
#: source/class/vigigraph/Application.js:624
132
#: source/class/vigigraph/Application.js:633
133 133
msgid "Timeframe menu"
134 134
msgstr "Menu de choix de la période"
135 135

  
136
#: source/class/vigigraph/Application.js:627
136
#: source/class/vigigraph/Application.js:636
137 137
msgid "Graph start"
138 138
msgstr "Début du graphe"
139 139

  
140
#: source/class/vigigraph/Application.js:629
140
#: source/class/vigigraph/Application.js:638
141 141
msgid "Last section"
142 142
msgstr "Dernière section"
143 143

  
144
#: source/class/vigigraph/Application.js:631
144
#: source/class/vigigraph/Application.js:640
145 145
msgid "Next section"
146 146
msgstr "Section suivante"
147 147

  
148
#: source/class/vigigraph/Application.js:633
148
#: source/class/vigigraph/Application.js:642
149 149
msgid "Graph end"
150 150
msgstr "Fin du graphe"
151 151

  
152
#: source/class/vigigraph/Application.js:635
152
#: source/class/vigigraph/Application.js:644
153 153
msgid "Zoom in"
154 154
msgstr "Zoomer"
155 155

  
156
#: source/class/vigigraph/Application.js:637
156
#: source/class/vigigraph/Application.js:646
157 157
msgid "Zoom out"
158 158
msgstr "Dézoomer"
159 159

  
160
#: source/class/vigigraph/Application.js:639
160
#: source/class/vigigraph/Application.js:648
161 161
msgid "Print Graph"
162 162
msgstr "Imprimer le graphe"
163 163

  
164
#: source/class/vigigraph/Application.js:645
165
#: source/class/vigigraph/Application.js:646
164
#: source/class/vigigraph/Application.js:654
165
#: source/class/vigigraph/Application.js:655
166 166
msgid "Export CSV"
167 167
msgstr "Export CSV"
168 168

  
169
#: source/class/vigigraph/Application.js:769
169
#: source/class/vigigraph/Application.js:778
170 170
msgid "All"
171 171
msgstr "Tous"
javascript/source/translation/messages.pot
8 8
msgstr ""
9 9
"Project-Id-Version: PACKAGE VERSION\n"
10 10
"Report-Msgid-Bugs-To: \n"
11
"POT-Creation-Date: 2010-04-30 17:14+0200\n"
11
"POT-Creation-Date: 2010-08-27 18:14+0200\n"
12 12
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13 13
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14 14
"Language-Team: LANGUAGE <LL@li.org>\n"
......
85 85
msgid "Host"
86 86
msgstr ""
87 87

  
88
#: source/class/vigigraph/Application.js:597
89
msgid "\"%1\" Graph for host %2"
88
#: source/class/vigigraph/Application.js:605
89
msgid "Graph for \"%1\" on \"%2\""
90 90
msgstr ""
91 91

  
92
#: source/class/vigigraph/Application.js:602
92
#: source/class/vigigraph/Application.js:611
93 93
msgid "Reload graph"
94 94
msgstr ""
95 95

  
96
#: source/class/vigigraph/Application.js:607
96
#: source/class/vigigraph/Application.js:616
97 97
msgid "Last 12 hours"
98 98
msgstr ""
99 99

  
100
#: source/class/vigigraph/Application.js:608
100
#: source/class/vigigraph/Application.js:617
101 101
msgid "Last 24 hours"
102 102
msgstr ""
103 103

  
104
#: source/class/vigigraph/Application.js:609
104
#: source/class/vigigraph/Application.js:618
105 105
msgid "Last 48 hours"
106 106
msgstr ""
107 107

  
108
#: source/class/vigigraph/Application.js:610
108
#: source/class/vigigraph/Application.js:619
109 109
msgid "Last 7 days"
110 110
msgstr ""
111 111

  
112
#: source/class/vigigraph/Application.js:611
112
#: source/class/vigigraph/Application.js:620
113 113
msgid "Last 14 days"
114 114
msgstr ""
115 115

  
116
#: source/class/vigigraph/Application.js:612
116
#: source/class/vigigraph/Application.js:621
117 117
msgid "Last 3 months"
118 118
msgstr ""
119 119

  
120
#: source/class/vigigraph/Application.js:613
120
#: source/class/vigigraph/Application.js:622
121 121
msgid "Last 6 months"
122 122
msgstr ""
123 123

  
124
#: source/class/vigigraph/Application.js:614
124
#: source/class/vigigraph/Application.js:623
125 125
msgid "Last year"
126 126
msgstr ""
127 127

  
128
#: source/class/vigigraph/Application.js:623
128
#: source/class/vigigraph/Application.js:632
129 129
msgid "Timeframe"
130 130
msgstr ""
131 131

  
132
#: source/class/vigigraph/Application.js:624
132
#: source/class/vigigraph/Application.js:633
133 133
msgid "Timeframe menu"
134 134
msgstr ""
135 135

  
136
#: source/class/vigigraph/Application.js:627
136
#: source/class/vigigraph/Application.js:636
137 137
msgid "Graph start"
138 138
msgstr ""
139 139

  
140
#: source/class/vigigraph/Application.js:629
140
#: source/class/vigigraph/Application.js:638
141 141
msgid "Last section"
142 142
msgstr ""
143 143

  
144
#: source/class/vigigraph/Application.js:631
144
#: source/class/vigigraph/Application.js:640
145 145
msgid "Next section"
146 146
msgstr ""
147 147

  
148
#: source/class/vigigraph/Application.js:633
148
#: source/class/vigigraph/Application.js:642
149 149
msgid "Graph end"
150 150
msgstr ""
151 151

  
152
#: source/class/vigigraph/Application.js:635
152
#: source/class/vigigraph/Application.js:644
153 153
msgid "Zoom in"
154 154
msgstr ""
155 155

  
156
#: source/class/vigigraph/Application.js:637
156
#: source/class/vigigraph/Application.js:646
157 157
msgid "Zoom out"
158 158
msgstr ""
159 159

  
160
#: source/class/vigigraph/Application.js:639
160
#: source/class/vigigraph/Application.js:648
161 161
msgid "Print Graph"
162 162
msgstr ""
163 163

  
164
#: source/class/vigigraph/Application.js:645
165
#: source/class/vigigraph/Application.js:646
164
#: source/class/vigigraph/Application.js:654
165
#: source/class/vigigraph/Application.js:655
166 166
msgid "Export CSV"
167 167
msgstr ""
168 168

  
169
#: source/class/vigigraph/Application.js:769
169
#: source/class/vigigraph/Application.js:778
170 170
msgid "All"
171 171
msgstr ""

Also available in: Unified diff