]> dev.renevier.net Git - syj.git/blob - application/views/scripts/idx/index.phtml
update translations
[syj.git] / application / views / scripts / idx / index.phtml
1     <noscript>
2         <style type="text/css">
3             #map, #message, #data_controls, #login_controls, #user_area, #login_area, #newpwd_area {
4                 display: none;
5             }
6         </style>
7
8         <p><?php echo $this->translate('SYJ needs javascript. Please activate scripts in your browser.');?></p>
9     </noscript>
10
11     <div id="map"></div>
12
13     <div id="message" class="message info">
14     <?php if (!$this->path and !$this->loggedUser) {?>
15     <?php echo $this->translate('Welcome on Syj.')?>
16     <br/>
17     <?php echo $this->translate('To create a journey, just click on the map to add points to your route. You can zoom and move map with controls upper left.')?>
18     <br/>
19     <?php echo $this->translate('When you have finished a path, press "save", button.')?>
20     <?php }?>
21     </div>
22
23     <div id="data_controls">
24     <input id="edit-btn" name="edit-btn" type="button" value="<?php
25         echo isset($this->path) ? $this->translate('edit'): $this->translate('start a route');
26     ?>">
27
28     <?php
29         print $this->geomform;
30     ?>
31
32     </div>
33
34     <div id="login_controls">
35         <div>
36             <?php
37                 echo $this->anchor('login', $this->translate('login'), array('id' => 'login_control_anchor', 'class' => 'login-anchor'));
38                 $anchortext = sprintf("%s<img id=\"account-info-bullet\" src=\"icons/bullet_arrow_right.png\"><span id=\"account-info\"><br>%s</span>",
39                                       $this->translate('create an account'),
40                                       $this->translate('Whith an account, you can manage and modify your routes'));
41                 echo $this->anchor('', $anchortext, array('id' => 'user_control_anchor', 'class' => 'login-anchor'), false);
42             ?>
43         </div>
44         <div>
45             <?php echo $this->logoutLink(); ?>
46         </div>
47     </div>
48
49     <div id="newpwd_area" class="modal">
50         <div id="newpwd_message" class="message"></div>
51         <?php
52             print $this->newpwdform;
53         ?>
54     </div>
55
56     <div id="user_area" class="modal">
57         <div id="user_message" class="message"></div>
58         <?php
59             print $this->userform;
60         ?>
61     </div>
62
63       <div id="login_area" class="modal">
64          <div id="login_message" class="message"></div>
65
66       <?php
67         print $this->loginform;
68       ?>
69
70       <p id="login_area_create"><a id="login_area_create_anchor" href=""><?php echo $this->translate('create an account')?></a></p>
71
72       </div>
73
74       <div id="termsofusearea" class="modal">
75         <iframe id="termsofuseiframe" width="100%" height="100%" frameborder="0"></iframe>
76       </div>
77
78 <?php echo $this->localeSwitcher(); ?>