gestion 1.9.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (233) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +48 -0
  3. data/.project +14 -0
  4. data/Binaries/adduser_to_buzz +15 -0
  5. data/Binaries/backup +7 -0
  6. data/Binaries/check_gestion +8 -0
  7. data/Binaries/gestion.gnumail +22 -0
  8. data/Binaries/gestion.logrotate +34 -0
  9. data/Binaries/gestion.service +12 -0
  10. data/Binaries/gestion_update.rb +183 -0
  11. data/Binaries/gestion_update.service +10 -0
  12. data/Binaries/get_compta +11 -0
  13. data/Binaries/kill_gestion +16 -0
  14. data/Binaries/ldap/add_indexes +51 -0
  15. data/Binaries/ldap/backup +2 -0
  16. data/Binaries/ldap/install_ldap +92 -0
  17. data/Binaries/ldap/restore +7 -0
  18. data/Binaries/lib_backup +5 -0
  19. data/Binaries/log_scan_errors +8 -0
  20. data/Binaries/loop_gestion +64 -0
  21. data/Binaries/onetimers/sync_courses_from_compta.rb +74 -0
  22. data/Binaries/onetimers/transfer_cash_from_ldap_to_csv +26 -0
  23. data/Binaries/reboot +5 -0
  24. data/Binaries/restore +3 -0
  25. data/Binaries/restore_do +22 -0
  26. data/Binaries/sort_events +31 -0
  27. data/Binaries/start_gestion +18 -0
  28. data/Binaries/swipe_gestion +18 -0
  29. data/Binaries/update_africompta +21 -0
  30. data/Binaries/update_users +3 -0
  31. data/Diplomas.src/accredited.odg +0 -0
  32. data/Diplomas.src/diploma.odg +0 -0
  33. data/Diplomas.src/label.odg +0 -0
  34. data/Diplomas.src/presence_sheet.ods +0 -0
  35. data/Diplomas.src/presence_sheet_small.ods +0 -0
  36. data/Diplomas.src/student_card.odg +0 -0
  37. data/Doc/130514-it-ideas.odt +0 -0
  38. data/Doc/Compta-cash.mm +179 -0
  39. data/Doc/General.odt +0 -0
  40. data/Entities/AccessGroups.rb +117 -0
  41. data/Entities/Activity.rb +178 -0
  42. data/Entities/ChatMsg.rb +142 -0
  43. data/Entities/Classroom.rb +11 -0
  44. data/Entities/Client.rb +19 -0
  45. data/Entities/Computer.rb +21 -0
  46. data/Entities/ConfigBase.rb +280 -0
  47. data/Entities/Course.rb +1588 -0
  48. data/Entities/CourseType.rb +171 -0
  49. data/Entities/DFiles.rb +466 -0
  50. data/Entities/FilesManage.rb +226 -0
  51. data/Entities/Grade.rb +186 -0
  52. data/Entities/Internet.rb +300 -0
  53. data/Entities/Netdev.rb +10 -0
  54. data/Entities/Person.rb +1175 -0
  55. data/Entities/Plug.rb +98 -0
  56. data/Entities/Quiz.rb +33 -0
  57. data/Entities/Recharges.rb +37 -0
  58. data/Entities/Report.rb +136 -0
  59. data/Entities/Room.rb +12 -0
  60. data/Entities/SMS.rb +30 -0
  61. data/Entities/ScheduleType.rb +33 -0
  62. data/Entities/Share.rb +120 -0
  63. data/Entities/Task.rb +51 -0
  64. data/Entities/Ticket.rb +72 -0
  65. data/Entities/Usage.rb +143 -0
  66. data/Entities/Worker.rb +29 -0
  67. data/Files/apache-profeda.conf +36 -0
  68. data/Files/label.erb +121 -0
  69. data/Files/label_notfound.erb +64 -0
  70. data/Files/label_notpassed.erb +84 -0
  71. data/Files/mobileinfo.erb +115 -0
  72. data/Files/smb.conf +333 -0
  73. data/Files/timetable.html +36 -0
  74. data/Files/timetable.js +239 -0
  75. data/Gemfile +12 -0
  76. data/Gemfile.dev +12 -0
  77. data/Gemfile.dev.lock +127 -0
  78. data/Gemfile.lock +127 -0
  79. data/Gemfile.prod +8 -0
  80. data/Gestion +35 -0
  81. data/Gestion.rb +220 -0
  82. data/INSTALL +40 -0
  83. data/Images/connection.xcf +0 -0
  84. data/Images/connection_no.png +0 -0
  85. data/Images/connection_wait.png +0 -0
  86. data/Images/connection_yes.png +0 -0
  87. data/Paths/Exas.rb +13 -0
  88. data/Paths/Files.rb +19 -0
  89. data/Paths/GetDiplomas.rb +20 -0
  90. data/Paths/Info.rb +114 -0
  91. data/Paths/Label.rb +187 -0
  92. data/Paths/MobileInfo.rb +19 -0
  93. data/Paths/internetCash.rb +34 -0
  94. data/Paths/internetWifi.rb +54 -0
  95. data/README.md +60 -0
  96. data/Rakefile +13 -0
  97. data/TODO +1391 -0
  98. data/Test/.gitignore +3 -0
  99. data/Test/Diplomas/base_gestion.odt +0 -0
  100. data/Test/Diplomas/base_report.odt +0 -0
  101. data/Test/Diplomas/carte_etudiant.odg +0 -0
  102. data/Test/Diplomas/exam_language.odt +0 -0
  103. data/Test/Diplomas/label.odg +0 -0
  104. data/Test/Diplomas/presence_sheet.ods +0 -0
  105. data/Test/Diplomas/presence_sheet_small.ods +0 -0
  106. data/Test/Diplomas/student_card.odg +0 -0
  107. data/Test/Manual/testMerge +18 -0
  108. data/Test/config_test.yaml +26 -0
  109. data/Test/db.testGestion +0 -0
  110. data/Test/dfiles/descs/avg-rescue.desc +10 -0
  111. data/Test/dfiles/descs/avg.desc +8 -0
  112. data/Test/dfiles/descs/driver.desc +8 -0
  113. data/Test/dfiles/descs/linuxmint.desc +7 -0
  114. data/Test/dfiles/files/avg-160203.exe +1 -0
  115. data/Test/dfiles/files/avg.iso +1 -0
  116. data/Test/dfiles/files/driver.exe +1 -0
  117. data/Test/dfiles/index_post.html +3 -0
  118. data/Test/dfiles/index_pre.html +8 -0
  119. data/Test/dfiles/priorities +5 -0
  120. data/Test/ge_activity.rb +124 -0
  121. data/Test/ge_chat.rb +106 -0
  122. data/Test/ge_compta.rb +67 -0
  123. data/Test/ge_configbase.rb +54 -0
  124. data/Test/ge_course.rb +1114 -0
  125. data/Test/ge_dfiles.rb +121 -0
  126. data/Test/ge_filesmanage.rb +180 -0
  127. data/Test/ge_info.rb +27 -0
  128. data/Test/ge_internet.rb +246 -0
  129. data/Test/ge_login.rb +55 -0
  130. data/Test/ge_person.rb +373 -0
  131. data/Test/ge_qvinfo.rb +28 -0
  132. data/Test/ge_report.rb +97 -0
  133. data/Test/ge_share.rb +27 -0
  134. data/Test/ge_sms.rb +34 -0
  135. data/Test/ge_tasks.rb +19 -0
  136. data/Test/ge_usage.rb +168 -0
  137. data/Test/ge_view.rb +46 -0
  138. data/Test/multiconf-captive +29 -0
  139. data/Test/test.conf +7 -0
  140. data/Test/test.rb +49 -0
  141. data/Test/test_bytes.png +0 -0
  142. data/VERSION +140 -0
  143. data/Views/Admin/Backup.rb +91 -0
  144. data/Views/Admin/Configuration.rb +44 -0
  145. data/Views/Admin/Credit.rb +32 -0
  146. data/Views/Admin/FilesManage.rb +219 -0
  147. data/Views/Admin/Function.rb +39 -0
  148. data/Views/Admin/Power.rb +49 -0
  149. data/Views/Admin/Printer.rb +37 -0
  150. data/Views/Admin/Server.rb +252 -0
  151. data/Views/Admin/Tabs.rb +5 -0
  152. data/Views/Admin/Update.rb +73 -0
  153. data/Views/Admin/UpdateSystem.rb +26 -0
  154. data/Views/Cashbox/Activity.rb +191 -0
  155. data/Views/Cashbox/Course.rb +141 -0
  156. data/Views/Cashbox/Credit.rb +79 -0
  157. data/Views/Cashbox/Report.rb +115 -0
  158. data/Views/Cashbox/Service.rb +105 -0
  159. data/Views/Cashbox/Tabs.rb +10 -0
  160. data/Views/Compta/Accounts.rb +36 -0
  161. data/Views/Compta/Course.rb +96 -0
  162. data/Views/Compta/Show.rb +6 -0
  163. data/Views/Compta/Transfer.rb +66 -0
  164. data/Views/Course/Diploma.rb +203 -0
  165. data/Views/Course/Grade.rb +401 -0
  166. data/Views/Course/Modify.rb +447 -0
  167. data/Views/Course/Print.rb +94 -0
  168. data/Views/Course/Responsible.rb +44 -0
  169. data/Views/Course/Stats.rb +76 -0
  170. data/Views/Course/Students.rb +92 -0
  171. data/Views/Course/Tabs.rb +220 -0
  172. data/Views/Internet/Access.rb +134 -0
  173. data/Views/Internet/ClassEdit.rb +24 -0
  174. data/Views/Internet/ClassUsers.rb +81 -0
  175. data/Views/Internet/Config.rb +32 -0
  176. data/Views/Internet/Mobile.rb +213 -0
  177. data/Views/Internet/Recharges.rb +49 -0
  178. data/Views/Internet/Tabs.rb +6 -0
  179. data/Views/Inventory/Computer.rb +24 -0
  180. data/Views/Inventory/Room.rb +18 -0
  181. data/Views/Inventory/Tabs.rb +9 -0
  182. data/Views/Inventory/TicketClosed.rb +7 -0
  183. data/Views/Inventory/TicketOpen.rb +23 -0
  184. data/Views/Library/Person.rb +36 -0
  185. data/Views/Library/Tabs.rb +7 -0
  186. data/Views/Network/Block.rb +87 -0
  187. data/Views/Network/Netdevs.rb +21 -0
  188. data/Views/Network/Restriction.rb +37 -0
  189. data/Views/Network/Share.rb +167 -0
  190. data/Views/Network/Tables.rb +28 -0
  191. data/Views/Network/Tabs.rb +6 -0
  192. data/Views/Person/Admin.rb +99 -0
  193. data/Views/Person/Center.rb +48 -0
  194. data/Views/Person/Course.rb +72 -0
  195. data/Views/Person/Modify.rb +153 -0
  196. data/Views/Person/Tabs.rb +162 -0
  197. data/Views/Report/ComptaExecutive.rb +221 -0
  198. data/Views/Report/ComptaFlat.rb +79 -0
  199. data/Views/Report/ReportCourse.rb +47 -0
  200. data/Views/Report/Tabs.rb +8 -0
  201. data/Views/Report/Usage.rb +52 -0
  202. data/Views/Report/UsageCases.rb +59 -0
  203. data/Views/Self/Cash.rb +67 -0
  204. data/Views/Self/Chat.rb +55 -0
  205. data/Views/Self/Concours.rb +109 -0
  206. data/Views/Self/Email.rb +34 -0
  207. data/Views/Self/Internet.rb +255 -0
  208. data/Views/Self/Results.rb +17 -0
  209. data/Views/Self/Services.rb +85 -0
  210. data/Views/Self/Show.rb +47 -0
  211. data/Views/Self/Tabs.rb +5 -0
  212. data/Views/Special/DFileEdit.rb +13 -0
  213. data/Views/Special/PlugEdit.rb +56 -0
  214. data/Views/Special/Tabs.rb +6 -0
  215. data/Views/Special/Vnc.rb +39 -0
  216. data/Views/Task/Client.rb +21 -0
  217. data/Views/Task/Edit.rb +33 -0
  218. data/Views/Task/List.rb +55 -0
  219. data/Views/Task/Tabs.rb +9 -0
  220. data/Views/Task/Worker.rb +30 -0
  221. data/Views/Template/Activity.rb +33 -0
  222. data/Views/Template/CourseType.rb +63 -0
  223. data/Views/Template/ScheduleType.rb +29 -0
  224. data/Views/Template/Tabs.rb +5 -0
  225. data/Views/Welcome.rb +121 -0
  226. data/config.yaml.default +36 -0
  227. data/po/Gestion-ar.po +2356 -0
  228. data/po/Gestion-en.mo +0 -0
  229. data/po/Gestion-en.po +4363 -0
  230. data/po/Gestion-fr.mo +0 -0
  231. data/po/Gestion-fr.po +4345 -0
  232. data/po/traduction-ar.rtf +76 -0
  233. metadata +381 -0
data/po/Gestion-fr.po ADDED
@@ -0,0 +1,4345 @@
1
+ # French translation of the Gestion-package.
2
+ # Copyright (C) 2012
3
+ # This file is distributed under the same license as the Gestion package.
4
+ #
5
+ # Linus Gasser <info@profeda.org> 2012
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: 0.8.5\n"
9
+ "POT-Creation-Date: 2015-07-03 06:25+0100\n"
10
+ "PO-Revision-Date: 2015-07-03 06:32+0100\n"
11
+ "Last-Translator: Linus Gasser <ineiti@linusetviviane.ch>\n"
12
+ "Language-Team: French <fr@profeda.org>\n"
13
+ "Language: \n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
+
19
+ #. Comes from file Entities/AccessGroups.rb and line is value_str :name
20
+ #.
21
+ #. Comes from file Entities/Activity.rb and line is value_str :name
22
+ #.
23
+ #. Comes from file Entities/Classroom.rb and line is value_str :name
24
+ #.
25
+ #. Comes from file Entities/Client.rb and line is value_str :name
26
+ #.
27
+ #. Comes from file Entities/Course.rb and line is value_str :name
28
+ #.
29
+ #. Comes from file Entities/CourseType.rb and line is value_str :name
30
+ #.
31
+ #. Comes from file Entities/Internet.rb and line is value_str :name
32
+ #.
33
+ #. Comes from file Entities/Netdev.rb and line is value_str :name
34
+ #.
35
+ #. Comes from file Entities/Report.rb and line is value_str :name
36
+ #.
37
+ #. Comes from file Entities/Room.rb and line is value_str :name
38
+ #.
39
+ #. Comes from file Entities/ScheduleType.rb and line is value_str :name
40
+ #.
41
+ #. Comes from file Entities/Share.rb and line is value_str :name
42
+ #.
43
+ #. Comes from file Entities/Usage.rb and line is value_str :name
44
+ #.
45
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_str :name
46
+ #.
47
+ #. Comes from file Views/Compta/Users.rb and line is show_str :name
48
+ #.
49
+ #. Comes from file Views/Course/Modify.rb and line is show_arg :name, :ro => true
50
+ #.
51
+ #. Comes from file Views/Internet/Access.rb and line is show_field :name
52
+ #.
53
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_str :name
54
+ #.
55
+ #. Comes from file Views/Report/UsageCases.rb and line is show_str :name
56
+ #: ../Entities/AccessGroups.rb:5
57
+ #: ../Entities/Activity.rb:7
58
+ #: ../Entities/Classroom.rb:7
59
+ #: ../Entities/Client.rb:4
60
+ #: ../Entities/Course.rb:23
61
+ #: ../Entities/CourseType.rb:10
62
+ #: ../Entities/Internet.rb:16
63
+ #: ../Entities/Netdev.rb:3
64
+ #: ../Entities/Report.rb:12
65
+ #: ../Entities/Room.rb:6
66
+ #: ../Entities/ScheduleType.rb:3
67
+ #: ../Entities/Share.rb:6
68
+ #: ../Entities/Usage.rb:9
69
+ #: ../Views/Compta/EditAccounts.rb:15
70
+ #: ../Views/Compta/Users.rb:14
71
+ #: ../Views/Course/Modify.rb:28
72
+ #: ../Views/Internet/Access.rb:16
73
+ #: ../Views/Report/ComptaExecutive.rb:23
74
+ #: ../Views/Report/UsageCases.rb:20
75
+ msgid "name"
76
+ msgstr "Nom"
77
+
78
+ #. Comes from file Entities/AccessGroups.rb and line is value_list_single :members
79
+ #: ../Entities/AccessGroups.rb:6
80
+ msgid "members"
81
+ msgstr "Membres"
82
+
83
+ #. Comes from file Entities/AccessGroups.rb and line is value_list_drop :action, "%w( allow allow_else_block block )"
84
+ #.
85
+ #. Comes from file Entities/Netdev.rb and line is value_list :action, '%w( ping traffic )'
86
+ #.
87
+ #. Comes from file Views/Internet/Access.rb and line is show_field :action
88
+ #: ../Entities/AccessGroups.rb:7
89
+ #: ../Entities/Netdev.rb:8
90
+ #: ../Views/Internet/Access.rb:17
91
+ msgid "action"
92
+ msgstr "Action"
93
+
94
+ #. Comes from file Entities/AccessGroups.rb and line is value_int :priority
95
+ #.
96
+ #. Comes from file Views/Internet/Access.rb and line is show_field :priority
97
+ #: ../Entities/AccessGroups.rb:8
98
+ #: ../Views/Internet/Access.rb:18
99
+ msgid "priority"
100
+ msgstr "Priorité"
101
+
102
+ #. Comes from file Entities/AccessGroups.rb and line is value_int :limit_day_mo
103
+ #.
104
+ #. Comes from file Views/Internet/Access.rb and line is show_field :limit_day_mo
105
+ #: ../Entities/AccessGroups.rb:9
106
+ #: ../Views/Internet/Access.rb:19
107
+ msgid "limit_day_mo"
108
+ msgstr "Limite Mo/j"
109
+
110
+ #. Comes from file Entities/AccessGroups.rb and line is value_list_single :access_times, "[]"
111
+ #: ../Entities/AccessGroups.rb:10
112
+ msgid "access_times"
113
+ msgstr "Temps d'accès"
114
+
115
+ #. Comes from file Entities/Activity.rb and line is value_str :description
116
+ #.
117
+ #. Comes from file Entities/Course.rb and line is value_str :description
118
+ #.
119
+ #. Comes from file Entities/CourseType.rb and line is value_str :description
120
+ #.
121
+ #. Comes from file Entities/Room.rb and line is value_str :description
122
+ #: ../Entities/Activity.rb:10
123
+ #: ../Entities/Course.rb:46
124
+ #: ../Entities/CourseType.rb:14
125
+ #: ../Entities/Room.rb:10
126
+ msgid "description"
127
+ msgstr "Description"
128
+
129
+ #. Comes from file Entities/Activity.rb and line is value_int :cost
130
+ #.
131
+ #. Comes from file Entities/Task.rb and line is value_int :cost
132
+ #: ../Entities/Activity.rb:11
133
+ #: ../Entities/Task.rb:19
134
+ msgid "cost"
135
+ msgstr "Coût"
136
+
137
+ #. Comes from file Entities/Activity.rb and line is value_list_drop :payment_period, 'Activities::PAYMENTS'
138
+ #: ../Entities/Activity.rb:12
139
+ msgid "payment_period"
140
+ msgstr "Période"
141
+
142
+ #. Comes from file Entities/Activity.rb and line is value_list_drop :start_type, 'Activities::START'
143
+ #: ../Entities/Activity.rb:13
144
+ msgid "start_type"
145
+ msgstr "Payment"
146
+
147
+ #. Comes from file Entities/Activity.rb and line is value_int :overlap
148
+ #: ../Entities/Activity.rb:14
149
+ msgid "overlap"
150
+ msgstr "Pré-enregistrement"
151
+
152
+ #. Comes from file Entities/Activity.rb and line is value_str :card_filename
153
+ #.
154
+ #. Comes from file Views/Template/Activity.rb and line is show_list_drop :card_filename, 'Activities.files.sort'
155
+ #: ../Entities/Activity.rb:17
156
+ #: ../Views/Template/Activity.rb:22
157
+ msgid "card_filename"
158
+ msgstr "Nom du fichier"
159
+
160
+ #. Comes from file Entities/Activity.rb and line is value_list :tags, '%w( library internet club )'
161
+ #.
162
+ #. Comes from file Views/Template/Activity.rb and line is show_field :tags
163
+ #: ../Entities/Activity.rb:18
164
+ #: ../Views/Template/Activity.rb:23
165
+ msgid "tags"
166
+ msgstr "Etiquettes"
167
+
168
+ #. Comes from file Entities/Activity.rb and line is value_entity_activity :activity
169
+ #.
170
+ #. Comes from file Views/Template/Activity.rb and line is vtlp_list :activity, 'name', :flexheight => 1
171
+ #: ../Entities/Activity.rb:66
172
+ #: ../Views/Template/Activity.rb:15
173
+ msgid "activity"
174
+ msgstr "Activité"
175
+
176
+ #. Comes from file Entities/Activity.rb and line is value_entity_person :person_paid
177
+ #: ../Entities/Activity.rb:67
178
+ msgid "person_paid"
179
+ msgstr "Payeur"
180
+
181
+ #. Comes from file Entities/Activity.rb and line is value_entity_person :person_cashed
182
+ #: ../Entities/Activity.rb:68
183
+ msgid "person_cashed"
184
+ msgstr "Receveur"
185
+
186
+ #. Comes from file Entities/Activity.rb and line is value_entity_movement :movement
187
+ #: ../Entities/Activity.rb:69
188
+ msgid "movement"
189
+ msgstr "Movement"
190
+
191
+ #. Comes from file Entities/Activity.rb and line is value_date :date_start
192
+ #.
193
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_date :date_start
194
+ #: ../Entities/Activity.rb:70
195
+ #: ../Views/Cashbox/Activity.rb:28
196
+ msgid "date_start"
197
+ msgstr "Début"
198
+
199
+ #. Comes from file Entities/Activity.rb and line is value_date :date_end
200
+ #: ../Entities/Activity.rb:71
201
+ msgid "date_end"
202
+ msgstr "Fin"
203
+
204
+ #. Comes from file Entities/ChatMsg.rb and line is value_time :time
205
+ #.
206
+ #. Comes from file Entities/Plug.rb and line is value_time :time
207
+ #.
208
+ #. Comes from file Entities/Recharges.rb and line is value_str :time
209
+ #.
210
+ #. Comes from file Entities/Task.rb and line is value_list_drop :time, "22.times.collect{|t| sprintf( '%02i.%02i', 7 + ( t / 2 ).floor, 30 * ( t % 2 ) )}"
211
+ #.
212
+ #. Comes from file Views/Internet/Access.rb and line is show_fromto :time
213
+ #: ../Entities/ChatMsg.rb:3
214
+ #: ../Entities/Plug.rb:92
215
+ #: ../Entities/Recharges.rb:3
216
+ #: ../Entities/Task.rb:12
217
+ #: ../Views/Internet/Access.rb:21
218
+ msgid "time"
219
+ msgstr "Temps"
220
+
221
+ #. Comes from file Entities/ChatMsg.rb and line is value_str :msg
222
+ #.
223
+ #. Comes from file Entities/Plug.rb and line is value_str :msg
224
+ #.
225
+ #. Comes from file Views/Cashbox/Course.rb and line is show_html :msg
226
+ #.
227
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_html :msg
228
+ #: ../Entities/ChatMsg.rb:4
229
+ #: ../Entities/Plug.rb:93
230
+ #: ../Views/Cashbox/Course.rb:33
231
+ #: ../Views/Compta/EditAccounts.rb:28
232
+ msgid "msg"
233
+ msgstr "Erreur"
234
+
235
+ #. Comes from file Entities/ChatMsg.rb and line is value_entity_person :center
236
+ #.
237
+ #. Comes from file Entities/Course.rb and line is value_entity_person_empty_all :center, :drop, :full_name
238
+ #: ../Entities/ChatMsg.rb:5
239
+ #: ../Entities/Course.rb:43
240
+ msgid "center"
241
+ msgstr "Centre"
242
+
243
+ #. Comes from file Entities/ChatMsg.rb and line is value_str :login
244
+ #: ../Entities/ChatMsg.rb:6
245
+ msgid "login"
246
+ msgstr "Pseudo"
247
+
248
+ #. Comes from file Entities/Classroom.rb and line is value_int :max_students
249
+ #: ../Entities/Classroom.rb:8
250
+ msgid "max_students"
251
+ msgstr "Places disponibles"
252
+
253
+ #. Comes from file Entities/Classroom.rb and line is value_int :computers
254
+ #.
255
+ #. Comes from file Entities/Room.rb and line is value_int :computers
256
+ #: ../Entities/Classroom.rb:9
257
+ #: ../Entities/Room.rb:9
258
+ msgid "computers"
259
+ msgstr "Nombre d'ordinateurs"
260
+
261
+ #. Comes from file Entities/Client.rb and line is value_str :addr1
262
+ #: ../Entities/Client.rb:7
263
+ msgid "addr1"
264
+ msgstr "Adresse 1"
265
+
266
+ #. Comes from file Entities/Client.rb and line is value_str :addr2
267
+ #: ../Entities/Client.rb:8
268
+ msgid "addr2"
269
+ msgstr "Adresse 2"
270
+
271
+ #. Comes from file Entities/Client.rb and line is value_str :country
272
+ #.
273
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :country, :ldap_name => 'st'
274
+ #: ../Entities/Client.rb:9
275
+ #: ../Entities/Person.rb:42
276
+ msgid "country"
277
+ msgstr "Pays"
278
+
279
+ #. Comes from file Entities/Client.rb and line is value_int :price_assistant
280
+ #: ../Entities/Client.rb:12
281
+ msgid "price_assistant"
282
+ msgstr "Prix assistant"
283
+
284
+ #. Comes from file Entities/Client.rb and line is value_int :price_expert
285
+ #: ../Entities/Client.rb:13
286
+ msgid "price_expert"
287
+ msgstr "Prix expert"
288
+
289
+ #. Comes from file Entities/Client.rb and line is value_str :email
290
+ #.
291
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :email, :ldap_name => 'mail'
292
+ #.
293
+ #. Comes from file Entities/Quiz.rb and line is value_str :email
294
+ #.
295
+ #. Comes from file Views/Self/Chat.rb and line is show_str :email
296
+ #.
297
+ #. Comes from file Views/Self/Concours.rb and line is show_str :email, :width => 300
298
+ #.
299
+ #. Comes from file Views/Self/Email.rb and line is show_str :email, :width => 300
300
+ #: ../Entities/Client.rb:16
301
+ #: ../Entities/Person.rb:40
302
+ #: ../Entities/Quiz.rb:3
303
+ #: ../Views/Self/Chat.rb:15
304
+ #: ../Views/Self/Concours.rb:12
305
+ #: ../Views/Self/Email.rb:11
306
+ msgid "email"
307
+ msgstr "Courriel"
308
+
309
+ #. Comes from file Entities/Client.rb and line is value_str :phone
310
+ #.
311
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :phone, :ldap_name => 'mobile'
312
+ #.
313
+ #. Comes from file Entities/SMS.rb and line is value_phone :phone
314
+ #: ../Entities/Client.rb:17
315
+ #: ../Entities/Person.rb:39
316
+ #: ../Entities/SMS.rb:6
317
+ msgid "phone"
318
+ msgstr "Téléphone"
319
+
320
+ #. Comes from file Entities/Computer.rb and line is value_str :name_service
321
+ #: ../Entities/Computer.rb:8
322
+ msgid "name_service"
323
+ msgstr "Identifiant interne"
324
+
325
+ #. Comes from file Entities/Computer.rb and line is value_entity_room_all :room, :drop, :name
326
+ #: ../Entities/Computer.rb:9
327
+ msgid "room"
328
+ msgstr "Salle de classe"
329
+
330
+ #. Comes from file Entities/Computer.rb and line is value_str :name_place
331
+ #: ../Entities/Computer.rb:10
332
+ msgid "name_place"
333
+ msgstr "Identifiant de l'endroit"
334
+
335
+ #. Comes from file Entities/Computer.rb and line is value_str :brand
336
+ #: ../Entities/Computer.rb:13
337
+ msgid "brand"
338
+ msgstr "Marque"
339
+
340
+ #. Comes from file Entities/Computer.rb and line is value_int :RAM_MB
341
+ #: ../Entities/Computer.rb:14
342
+ msgid "RAM_MB"
343
+ msgstr "RAM (Mo)"
344
+
345
+ #. Comes from file Entities/Computer.rb and line is value_int :HD_GB
346
+ #: ../Entities/Computer.rb:15
347
+ msgid "HD_GB"
348
+ msgstr "Disque dur (Go)"
349
+
350
+ #. Comes from file Entities/Computer.rb and line is value_int :CPU_GHz
351
+ #: ../Entities/Computer.rb:16
352
+ msgid "CPU_GHz"
353
+ msgstr "Processeur (GHz)"
354
+
355
+ #. Comes from file Entities/Computer.rb and line is value_text :comment
356
+ #.
357
+ #. Comes from file Entities/Share.rb and line is value_str :comment
358
+ #: ../Entities/Computer.rb:19
359
+ #: ../Entities/Share.rb:8
360
+ msgid "comment"
361
+ msgstr "Commentaires"
362
+
363
+ #. Comes from file Entities/ConfigBase.rb and line is value_list_drop :show_passwords, '%w(always lesser students never)'
364
+ #: ../Entities/ConfigBase.rb:8
365
+ msgid "show_passwords"
366
+ msgstr "Afficher mots de passe"
367
+
368
+ #. Comes from file Entities/ConfigBase.rb and line is value_list_drop :autosave, '%w(true false)'
369
+ #: ../Entities/ConfigBase.rb:9
370
+ msgid "autosave"
371
+ msgstr "Sauvegarde automatique"
372
+
373
+ #. Comes from file Entities/ConfigBase.rb and line is value_int :autosave_timer
374
+ #: ../Entities/ConfigBase.rb:10
375
+ msgid "autosave_timer"
376
+ msgstr "Sauvegarde seconds"
377
+
378
+ #. Comes from file Entities/ConfigBase.rb and line is value_list_drop :samba_simul, '%w(true false)'
379
+ #: ../Entities/ConfigBase.rb:11
380
+ msgid "samba_simul"
381
+ msgstr "Simulation partage"
382
+
383
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :samba_config
384
+ #: ../Entities/ConfigBase.rb:12
385
+ msgid "samba_config"
386
+ msgstr "Répertoire samba"
387
+
388
+ #. Comes from file Entities/ConfigBase.rb and line is value_list_drop :persons_add_del_users, '%w(true false)'
389
+ #: ../Entities/ConfigBase.rb:13
390
+ msgid "persons_add_del_users"
391
+ msgstr "Utilisateurs unix"
392
+
393
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :persons_adduser_cmd
394
+ #: ../Entities/ConfigBase.rb:14
395
+ msgid "persons_adduser_cmd"
396
+ msgstr "Commande adduser"
397
+
398
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :persons_addeduser_cmd
399
+ #: ../Entities/ConfigBase.rb:15
400
+ msgid "persons_addeduser_cmd"
401
+ msgstr "Commande après-adduser"
402
+
403
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :server_url
404
+ #.
405
+ #. Comes from file Views/Admin/Configuration.rb and line is show_arg :server_url, :width => 300
406
+ #: ../Entities/ConfigBase.rb:18
407
+ #: ../Views/Admin/Configuration.rb:20
408
+ msgid "server_url"
409
+ msgstr "URL serveur"
410
+
411
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :label_url
412
+ #: ../Entities/ConfigBase.rb:19
413
+ msgid "label_url"
414
+ msgstr "URL label"
415
+
416
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :html_title
417
+ #: ../Entities/ConfigBase.rb:20
418
+ msgid "html_title"
419
+ msgstr "Titre de Gestion"
420
+
421
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :upload_files
422
+ #: ../Entities/ConfigBase.rb:21
423
+ msgid "upload_files"
424
+ msgstr "Répertoire déchargement"
425
+
426
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :template_dir
427
+ #.
428
+ #. Comes from file Views/Admin/Configuration.rb and line is show_field :template_dir
429
+ #: ../Entities/ConfigBase.rb:24
430
+ #: ../Views/Admin/Configuration.rb:13
431
+ msgid "template_dir"
432
+ msgstr "Répertoire templates"
433
+
434
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :diploma_dir
435
+ #.
436
+ #. Comes from file Views/Admin/Configuration.rb and line is show_field :diploma_dir
437
+ #: ../Entities/ConfigBase.rb:25
438
+ #: ../Views/Admin/Configuration.rb:14
439
+ msgid "diploma_dir"
440
+ msgstr "Répertoire Diplomes"
441
+
442
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :exam_dir
443
+ #.
444
+ #. Comes from file Views/Admin/Configuration.rb and line is show_field :exam_dir
445
+ #: ../Entities/ConfigBase.rb:26
446
+ #: ../Views/Admin/Configuration.rb:15
447
+ msgid "exam_dir"
448
+ msgstr "Répertoire examen"
449
+
450
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :presence_sheet
451
+ #.
452
+ #. Comes from file Views/Admin/Configuration.rb and line is show_list_drop :presence_sheet, 'ConfigBase.templates'
453
+ #: ../Entities/ConfigBase.rb:27
454
+ #: ../Views/Admin/Configuration.rb:18
455
+ msgid "presence_sheet"
456
+ msgstr "Feuille de présence"
457
+
458
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :presence_sheet_small
459
+ #.
460
+ #. Comes from file Views/Admin/Configuration.rb and line is show_list_drop :presence_sheet_small, 'ConfigBase.templates'
461
+ #: ../Entities/ConfigBase.rb:28
462
+ #: ../Views/Admin/Configuration.rb:19
463
+ msgid "presence_sheet_small"
464
+ msgstr "Petite feuille de présence"
465
+
466
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :card_student
467
+ #.
468
+ #. Comes from file Views/Admin/Configuration.rb and line is show_list_drop :card_student, 'ConfigBase.templates'
469
+ #: ../Entities/ConfigBase.rb:29
470
+ #: ../Views/Admin/Configuration.rb:16
471
+ msgid "card_student"
472
+ msgstr "Carte étudiante"
473
+
474
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :card_responsible
475
+ #.
476
+ #. Comes from file Views/Admin/Configuration.rb and line is show_list_drop :card_responsible, 'ConfigBase.templates'
477
+ #: ../Entities/ConfigBase.rb:30
478
+ #: ../Views/Admin/Configuration.rb:17
479
+ msgid "card_responsible"
480
+ msgstr "Carte responsable"
481
+
482
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :keep_idle_free
483
+ #: ../Entities/ConfigBase.rb:33
484
+ msgid "keep_idle_free"
485
+ msgstr "Timeout gratuit"
486
+
487
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :keep_idle_minutes
488
+ #: ../Entities/ConfigBase.rb:34
489
+ msgid "keep_idle_minutes"
490
+ msgstr "Timeout payant"
491
+
492
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :captive_dev
493
+ #: ../Entities/ConfigBase.rb:35
494
+ msgid "captive_dev"
495
+ msgstr "Interface capt."
496
+
497
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :prerouting
498
+ #.
499
+ #. Comes from file Views/Network/Tables.rb and line is show_arg :prerouting, :width => 300
500
+ #: ../Entities/ConfigBase.rb:38
501
+ #: ../Views/Network/Tables.rb:11
502
+ msgid "prerouting"
503
+ msgstr "Prerouting"
504
+
505
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :http_proxy
506
+ #: ../Entities/ConfigBase.rb:39
507
+ msgid "http_proxy"
508
+ msgstr "HTTP proxy"
509
+
510
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :allow_dst
511
+ #: ../Entities/ConfigBase.rb:40
512
+ msgid "allow_dst"
513
+ msgstr "Dest. acceptées"
514
+
515
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :internal_ips
516
+ #: ../Entities/ConfigBase.rb:41
517
+ msgid "internal_ips"
518
+ msgstr "IPs internes"
519
+
520
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :captive_dnat
521
+ #: ../Entities/ConfigBase.rb:42
522
+ msgid "captive_dnat"
523
+ msgstr "Captive DNAT"
524
+
525
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :openvpn_allow_double
526
+ #: ../Entities/ConfigBase.rb:43
527
+ msgid "openvpn_allow_double"
528
+ msgstr "Openvpn double"
529
+
530
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :allow_src_direct
531
+ #: ../Entities/ConfigBase.rb:44
532
+ msgid "allow_src_direct"
533
+ msgstr "Accès direct src"
534
+
535
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :allow_src_proxy
536
+ #: ../Entities/ConfigBase.rb:45
537
+ msgid "allow_src_proxy"
538
+ msgstr "Accès proxy src"
539
+
540
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :allow_double
541
+ #: ../Entities/ConfigBase.rb:46
542
+ msgid "allow_double"
543
+ msgstr "Openvpn double"
544
+
545
+ #. Comes from file Entities/ConfigBase.rb and line is value_int :cost_base
546
+ #: ../Entities/ConfigBase.rb:49
547
+ msgid "cost_base"
548
+ msgstr "Coût de base"
549
+
550
+ #. Comes from file Entities/ConfigBase.rb and line is value_int :cost_shared
551
+ #: ../Entities/ConfigBase.rb:50
552
+ msgid "cost_shared"
553
+ msgstr "Coût partagé"
554
+
555
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :allow_free
556
+ #: ../Entities/ConfigBase.rb:51
557
+ msgid "allow_free"
558
+ msgstr "Permettre gratuit"
559
+
560
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :phone_main
561
+ #: ../Entities/ConfigBase.rb:52
562
+ msgid "phone_main"
563
+ msgstr "Téléphone"
564
+
565
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :start_loaded
566
+ #: ../Entities/ConfigBase.rb:53
567
+ msgid "start_loaded"
568
+ msgstr "Précharge"
569
+
570
+ #. Comes from file Entities/ConfigBase.rb and line is value_entity_internetClass_empty_all :iclass_default, :drop, :name
571
+ #: ../Entities/ConfigBase.rb:56
572
+ msgid "iclass_default"
573
+ msgstr "Internet défault"
574
+
575
+ #. Comes from file Entities/ConfigBase.rb and line is value_text :connection_cmds_up
576
+ #: ../Entities/ConfigBase.rb:59
577
+ #, fuzzy
578
+ msgid "connection_cmds_up"
579
+ msgstr "État de connexion"
580
+
581
+ #. Comes from file Entities/ConfigBase.rb and line is value_text :connection_cmds_down
582
+ #: ../Entities/ConfigBase.rb:60
583
+ #, fuzzy
584
+ msgid "connection_cmds_down"
585
+ msgstr "État de connexion"
586
+
587
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :connection_services_up
588
+ #: ../Entities/ConfigBase.rb:61
589
+ #, fuzzy
590
+ msgid "connection_services_up"
591
+ msgstr "État de connexion"
592
+
593
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :connection_services_down
594
+ #: ../Entities/ConfigBase.rb:62
595
+ #, fuzzy
596
+ msgid "connection_services_down"
597
+ msgstr "État de connexion"
598
+
599
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :connection_vpns
600
+ #: ../Entities/ConfigBase.rb:63
601
+ #, fuzzy
602
+ msgid "connection_vpns"
603
+ msgstr "État de connexion"
604
+
605
+ #. Comes from file Entities/ConfigBase.rb and line is value_entity_account :account_activities, :drop, :path
606
+ #: ../Entities/ConfigBase.rb:66
607
+ msgid "account_activities"
608
+ msgstr "Activités"
609
+
610
+ #. Comes from file Entities/ConfigBase.rb and line is value_entity_account :account_services, :drop, :path
611
+ #: ../Entities/ConfigBase.rb:67
612
+ msgid "account_services"
613
+ msgstr "Compte services payants"
614
+
615
+ #. Comes from file Entities/ConfigBase.rb and line is value_entity_account :account_lending, :drop, :path
616
+ #: ../Entities/ConfigBase.rb:68
617
+ msgid "account_lending"
618
+ msgstr "Comptes prêts"
619
+
620
+ #. Comes from file Entities/ConfigBase.rb and line is value_entity_account :account_cash, :drop, :path
621
+ #.
622
+ #. Comes from file Entities/Person.rb and line is value_entity_account :account_cash
623
+ #.
624
+ #. Comes from file Views/Compta/Accounts.rb and line is show_arg :account_cash, :width => 400
625
+ #: ../Entities/ConfigBase.rb:69
626
+ #: ../Entities/Person.rb:55
627
+ #: ../Views/Compta/Accounts.rb:11
628
+ msgid "account_cash"
629
+ msgstr "Compte caisse"
630
+
631
+ #. Comes from file Entities/Course.rb and line is value_entity_courseType_ro_all :ctype, :drop, :name
632
+ #.
633
+ #. Comes from file Views/Template/CourseType.rb and line is vtlp_list :ctype, 'name', :flexheight => 1
634
+ #: ../Entities/Course.rb:22
635
+ #: ../Views/Template/CourseType.rb:16
636
+ msgid "ctype"
637
+ msgstr "Genre cours"
638
+
639
+ #. Comes from file Entities/Course.rb and line is value_date :start
640
+ #.
641
+ #. Comes from file Entities/Internet.rb and line is value_date :start
642
+ #.
643
+ #. Comes from file Entities/Worker.rb and line is value_date :start
644
+ #.
645
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_date :start
646
+ #.
647
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_date :start
648
+ #: ../Entities/Course.rb:26
649
+ #: ../Entities/Internet.rb:42
650
+ #: ../Entities/Worker.rb:9
651
+ #: ../Views/Internet/ClassUsers.rb:21
652
+ #: ../Views/Report/ComptaExecutive.rb:17
653
+ msgid "start"
654
+ msgstr "Date début"
655
+
656
+ #. Comes from file Entities/Course.rb and line is value_date :end
657
+ #.
658
+ #. Comes from file Entities/Worker.rb and line is value_date :end
659
+ #: ../Entities/Course.rb:27
660
+ #: ../Entities/Worker.rb:10
661
+ msgid "end"
662
+ msgstr "Date fin"
663
+
664
+ #. Comes from file Entities/Course.rb and line is value_date :sign
665
+ #: ../Entities/Course.rb:28
666
+ msgid "sign"
667
+ msgstr "Date signature"
668
+
669
+ #. Comes from file Entities/Course.rb and line is value_int :duration
670
+ #.
671
+ #. Comes from file Entities/CourseType.rb and line is value_str :duration
672
+ #.
673
+ #. Comes from file Entities/Internet.rb and line is value_int :duration
674
+ #.
675
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_int :duration
676
+ #.
677
+ #. Comes from file Views/Report/Usage.rb and line is show_list_drop :duration, '[[1, :day],[7, :week], [14, :bi_week],' +
678
+ #: ../Entities/Course.rb:29
679
+ #: ../Entities/CourseType.rb:11
680
+ #: ../Entities/Internet.rb:43
681
+ #: ../Views/Internet/ClassUsers.rb:22
682
+ #: ../Views/Report/Usage.rb:16
683
+ msgid "duration"
684
+ msgstr "Durée totale"
685
+
686
+ #. Comes from file Entities/Course.rb and line is value_list_drop :dow, '%w( lu-me-ve ma-je-sa lu-ve ma-sa )'
687
+ #: ../Entities/Course.rb:30
688
+ msgid "dow"
689
+ msgstr "Journées"
690
+
691
+ #. Comes from file Entities/Course.rb and line is value_list_drop :hours, '%w( 9-12 16-18 9-11 )'
692
+ #: ../Entities/Course.rb:31
693
+ msgid "hours"
694
+ msgstr "Horaire"
695
+
696
+ #. Comes from file Entities/Course.rb and line is value_entity_room_all :classroom, :drop, :name
697
+ #: ../Entities/Course.rb:32
698
+ msgid "classroom"
699
+ msgstr "Salle de classe"
700
+
701
+ #. Comes from file Entities/Course.rb and line is value_list :students
702
+ #.
703
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_entity_person :students, :multi, :full_name,
704
+ #.
705
+ #. Comes from file Views/Cashbox/Course.rb and line is show_entity_person :students, :single, :full_name,
706
+ #.
707
+ #. Comes from file Views/Course/Grade.rb and line is show_table :students, headings: %w(Name Grade Files Status),
708
+ #.
709
+ #. Comes from file Views/Course/Modify.rb and line is show_list :students, :width => 300, :flexheight => 1
710
+ #.
711
+ #. Comes from file Views/Course/Students.rb and line is show_list_single :students, :width => 300, :callback => true, :flexheight => 1
712
+ #: ../Entities/Course.rb:35
713
+ #: ../Views/Cashbox/Activity.rb:18
714
+ #: ../Views/Cashbox/Course.rb:15
715
+ #: ../Views/Course/Grade.rb:15
716
+ #: ../Views/Course/Modify.rb:41
717
+ #: ../Views/Course/Students.rb:14
718
+ msgid "students"
719
+ msgstr "Étudiants"
720
+
721
+ #. Comes from file Entities/Course.rb and line is value_entity_person :teacher, :drop, :full_name
722
+ #: ../Entities/Course.rb:38
723
+ msgid "teacher"
724
+ msgstr "Enseignant"
725
+
726
+ #. Comes from file Entities/Course.rb and line is value_entity_person_empty :assistant, :drop, :full_name
727
+ #: ../Entities/Course.rb:39
728
+ msgid "assistant"
729
+ msgstr "Assistant"
730
+
731
+ #. Comes from file Entities/Course.rb and line is value_entity_person :responsible, :drop, :full_name
732
+ #: ../Entities/Course.rb:40
733
+ msgid "responsible"
734
+ msgstr "Responsable"
735
+
736
+ #. Comes from file Entities/Course.rb and line is value_text :contents
737
+ #.
738
+ #. Comes from file Entities/CourseType.rb and line is value_text :contents
739
+ #: ../Entities/Course.rb:47
740
+ #: ../Entities/CourseType.rb:15
741
+ msgid "contents"
742
+ msgstr "Contenu"
743
+
744
+ #. Comes from file Entities/Course.rb and line is value_int :salary_teacher
745
+ #.
746
+ #. Comes from file Entities/CourseType.rb and line is value_int :salary_teacher
747
+ #: ../Entities/Course.rb:50
748
+ #: ../Entities/CourseType.rb:32
749
+ msgid "salary_teacher"
750
+ msgstr "Salaire enseignant"
751
+
752
+ #. Comes from file Entities/Course.rb and line is value_int :salary_assistant
753
+ #: ../Entities/Course.rb:51
754
+ msgid "salary_assistant"
755
+ msgstr "Salaire assistant"
756
+
757
+ #. Comes from file Entities/Course.rb and line is value_int :students_start
758
+ #: ../Entities/Course.rb:52
759
+ msgid "students_start"
760
+ msgstr "Étudiants au début"
761
+
762
+ #. Comes from file Entities/Course.rb and line is value_int :students_finish
763
+ #: ../Entities/Course.rb:53
764
+ msgid "students_finish"
765
+ msgstr "Étudiants à la fin"
766
+
767
+ #. Comes from file Entities/Course.rb and line is value_int :cost_student
768
+ #.
769
+ #. Comes from file Entities/CourseType.rb and line is value_int :cost_student
770
+ #: ../Entities/Course.rb:54
771
+ #: ../Entities/CourseType.rb:33
772
+ msgid "cost_student"
773
+ msgstr "Coût étudiant"
774
+
775
+ #. Comes from file Entities/Course.rb and line is value_int :entry_total
776
+ #: ../Entities/Course.rb:55
777
+ msgid "entry_total"
778
+ msgstr "Entrée totale"
779
+
780
+ #. Comes from file Entities/Course.rb and line is value_entity_account_empty :entries, :drop, :path
781
+ #.
782
+ #. Comes from file Views/Course/Stats.rb and line is show_arg :entries, :width => 500
783
+ #: ../Entities/Course.rb:58
784
+ #: ../Views/Course/Stats.rb:20
785
+ msgid "entries"
786
+ msgstr "Entrées"
787
+
788
+ #. Comes from file Entities/CourseType.rb and line is value_str :file_diploma
789
+ #.
790
+ #. Comes from file Views/Template/CourseType.rb and line is show_list_drop :file_diploma, 'CourseTypes.files.sort', :width => 200
791
+ #: ../Entities/CourseType.rb:6
792
+ #: ../Views/Template/CourseType.rb:29
793
+ msgid "file_diploma"
794
+ msgstr "Fichier attestation"
795
+
796
+ #. Comes from file Entities/CourseType.rb and line is value_str :file_exam
797
+ #.
798
+ #. Comes from file Views/Template/CourseType.rb and line is show_list_drop :file_exam, 'CourseTypes.files.sort', :width => 200
799
+ #: ../Entities/CourseType.rb:7
800
+ #: ../Views/Template/CourseType.rb:30
801
+ msgid "file_exam"
802
+ msgstr "Fichier examen"
803
+
804
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :diploma_type, '%w( simple files accredited report )'
805
+ #: ../Entities/CourseType.rb:18
806
+ msgid "diploma_type"
807
+ msgstr "Genre d'attestation"
808
+
809
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :output, '%w( certificate label )'
810
+ #: ../Entities/CourseType.rb:19
811
+ msgid "output"
812
+ msgstr "Sortie"
813
+
814
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :diploma_lang, '%w( en fr )'
815
+ #: ../Entities/CourseType.rb:20
816
+ msgid "diploma_lang"
817
+ msgstr "Langage attestation"
818
+
819
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :page_format,
820
+ #: ../Entities/CourseType.rb:21
821
+ msgid "page_format"
822
+ msgstr "Format de page"
823
+
824
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :remark, '%w(false true)'
825
+ #.
826
+ #. Comes from file Entities/Grade.rb and line is value_str :remark
827
+ #.
828
+ #. Comes from file Views/Cashbox/Course.rb and line is show_str :remark
829
+ #.
830
+ #. Comes from file Views/Course/Grade.rb and line is show_str :remark
831
+ #: ../Entities/CourseType.rb:23
832
+ #: ../Entities/Grade.rb:11
833
+ #: ../Views/Cashbox/Course.rb:26
834
+ #: ../Views/Course/Grade.rb:28
835
+ msgid "remark"
836
+ msgstr "Ajout"
837
+
838
+ #. Comes from file Entities/CourseType.rb and line is value_str :tests_str
839
+ #.
840
+ #. Comes from file Views/Template/CourseType.rb and line is show_text :tests_str, :flexheight => 1, :width => 200
841
+ #: ../Entities/CourseType.rb:26
842
+ #: ../Views/Template/CourseType.rb:36
843
+ msgid "tests_str"
844
+ msgstr "Examens"
845
+
846
+ #. Comes from file Entities/CourseType.rb and line is value_int :tests_nbr
847
+ #.
848
+ #. Comes from file Views/Template/CourseType.rb and line is show_int_ro :tests_nbr
849
+ #: ../Entities/CourseType.rb:27
850
+ #: ../Views/Template/CourseType.rb:35
851
+ msgid "tests_nbr"
852
+ msgstr "Nbr d'examens"
853
+
854
+ #. Comes from file Entities/CourseType.rb and line is value_str :files_str
855
+ #.
856
+ #. Comes from file Views/Template/CourseType.rb and line is show_text :files_str, :flexheight => 1, :width => 200
857
+ #: ../Entities/CourseType.rb:28
858
+ #: ../Views/Template/CourseType.rb:40
859
+ msgid "files_str"
860
+ msgstr "Fichiers"
861
+
862
+ #. Comes from file Entities/CourseType.rb and line is value_int :files_nbr
863
+ #.
864
+ #. Comes from file Views/Template/CourseType.rb and line is show_int_ro :files_nbr
865
+ #: ../Entities/CourseType.rb:29
866
+ #: ../Views/Template/CourseType.rb:39
867
+ msgid "files_nbr"
868
+ msgstr "Nbr de fichiers"
869
+
870
+ #. Comes from file Entities/CourseType.rb and line is value_entity_account :account_base, :drop, :path
871
+ #.
872
+ #. Comes from file Views/Template/CourseType.rb and line is show_field :account_base
873
+ #.
874
+ #. Comes from file Views/Template/CourseType.rb and line is show_arg :account_base, :width => 400
875
+ #: ../Entities/CourseType.rb:36
876
+ #: ../Views/Template/CourseType.rb:44
877
+ #: ../Views/Template/CourseType.rb:45
878
+ msgid "account_base"
879
+ msgstr "Compte de base"
880
+
881
+ #. Comes from file Entities/Grade.rb and line is value_entity_course :course
882
+ #.
883
+ #. Comes from file Views/Cashbox/Report.rb and line is show_entity_course :course, :single, :name,
884
+ #.
885
+ #. Comes from file Views/Report/ReportCourse.rb and line is show_entity_course :course, :single, :name,
886
+ #: ../Entities/Grade.rb:4
887
+ #: ../Views/Cashbox/Report.rb:15
888
+ #: ../Views/Report/ReportCourse.rb:13
889
+ msgid "course"
890
+ msgstr "Cours"
891
+
892
+ #. Comes from file Entities/Grade.rb and line is value_entity_person :student
893
+ #: ../Entities/Grade.rb:5
894
+ msgid "student"
895
+ msgstr "Étudiant"
896
+
897
+ #. Comes from file Entities/Grade.rb and line is value_int :random
898
+ #: ../Entities/Grade.rb:6
899
+ msgid "random"
900
+ msgstr "aléatoire"
901
+
902
+ #. Comes from file Entities/Grade.rb and line is value_list_int :means
903
+ #: ../Entities/Grade.rb:9
904
+ msgid "means"
905
+ msgstr "Moyenne"
906
+
907
+ #. Comes from file Entities/Grade.rb and line is value_int :mean
908
+ #: ../Entities/Grade.rb:10
909
+ msgid "mean"
910
+ msgstr "Moyenne"
911
+
912
+ #. Comes from file Entities/Internet.rb and line is value_int :limit
913
+ #: ../Entities/Internet.rb:17
914
+ msgid "limit"
915
+ msgstr "Limite"
916
+
917
+ #. Comes from file Entities/Internet.rb and line is value_list_drop :type, '%w(unlimited limit_daily_mo limit_daily_min)'
918
+ #.
919
+ #. Comes from file Entities/Netdev.rb and line is value_list_drop :type, '%w( net host router modem )'
920
+ #.
921
+ #. Comes from file Views/Internet/ClassEdit.rb and line is show_arg :type, callback: true
922
+ #: ../Entities/Internet.rb:18
923
+ #: ../Entities/Netdev.rb:7
924
+ #: ../Views/Internet/ClassEdit.rb:15
925
+ msgid "type"
926
+ msgstr "Type"
927
+
928
+ #. Comes from file Entities/Internet.rb and line is value_entity_person :person
929
+ #.
930
+ #. Comes from file Entities/Task.rb and line is value_str :person
931
+ #.
932
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_entity_person :person, :single, :login_name, :callback => true
933
+ #.
934
+ #. Comes from file Views/Task/Edit.rb and line is show_list_drop :person, "Entities.Workers.list_full_name"
935
+ #.
936
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :person, "Entities.Workers.list_full_name"
937
+ #: ../Entities/Internet.rb:40
938
+ #: ../Entities/Task.rb:7
939
+ #: ../Views/Cashbox/Credit.rb:16
940
+ #: ../Views/Task/Edit.rb:15
941
+ #: ../Views/Task/List.rb:11
942
+ msgid "person"
943
+ msgstr "Personne"
944
+
945
+ #. Comes from file Entities/Internet.rb and line is value_entity_internetClasses :iclass
946
+ #.
947
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_entity_internetClass_empty_all :iclass, :drop, :name
948
+ #: ../Entities/Internet.rb:41
949
+ #: ../Views/Internet/ClassUsers.rb:20
950
+ msgid "iclass"
951
+ msgstr "Internet"
952
+
953
+ #. Comes from file Entities/Netdev.rb and line is value_str :ip
954
+ #.
955
+ #. Comes from file Views/Special/Vnc.rb and line is show_str :ip
956
+ #: ../Entities/Netdev.rb:4
957
+ #: ../Views/Special/Vnc.rb:9
958
+ msgid "ip"
959
+ msgstr "IP"
960
+
961
+ #. Comes from file Entities/Netdev.rb and line is value_int :netlength
962
+ #: ../Entities/Netdev.rb:5
963
+ msgid "netlength"
964
+ msgstr "Taille réseau"
965
+
966
+ #. Comes from file Entities/Netdev.rb and line is value_str :gateway
967
+ #: ../Entities/Netdev.rb:6
968
+ msgid "gateway"
969
+ msgstr "Passerelle"
970
+
971
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :first_name, :ldap_name => 'sn'
972
+ #.
973
+ #. Comes from file Views/Course/Grade.rb and line is show_str :first_name, :width => 150
974
+ #.
975
+ #. Comes from file Views/Course/Students.rb and line is show_str :first_name, :width => 150
976
+ #.
977
+ #. Comes from file Views/Person/Course.rb and line is show_str_ro :first_name
978
+ #: ../Entities/Person.rb:34
979
+ #: ../Views/Course/Grade.rb:24
980
+ #: ../Views/Course/Students.rb:18
981
+ #: ../Views/Person/Course.rb:11
982
+ msgid "first_name"
983
+ msgstr "Premier nom"
984
+
985
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :family_name, :ldap_name => 'givenname'
986
+ #.
987
+ #. Comes from file Views/Course/Grade.rb and line is show_str :family_name
988
+ #.
989
+ #. Comes from file Views/Course/Students.rb and line is show_str :family_name
990
+ #.
991
+ #. Comes from file Views/Person/Course.rb and line is show_str_ro :family_name
992
+ #: ../Entities/Person.rb:35
993
+ #: ../Views/Course/Grade.rb:25
994
+ #: ../Views/Course/Students.rb:19
995
+ #: ../Views/Person/Course.rb:12
996
+ msgid "family_name"
997
+ msgstr "Nom de famille"
998
+
999
+ #. Comes from file Entities/Person.rb and line is value_list_drop :gender, '%w( male female n/a )'
1000
+ #.
1001
+ #. Comes from file Views/Course/Grade.rb and line is show_list_drop :gender, '%w( male female n/a )'
1002
+ #.
1003
+ #. Comes from file Views/Course/Students.rb and line is show_list_drop :gender, '%w( male female n/a )'
1004
+ #: ../Entities/Person.rb:36
1005
+ #: ../Views/Course/Grade.rb:26
1006
+ #: ../Views/Course/Students.rb:20
1007
+ msgid "gender"
1008
+ msgstr "Sexe"
1009
+
1010
+ #. Comes from file Entities/Person.rb and line is value_date :birthday
1011
+ #: ../Entities/Person.rb:37
1012
+ msgid "birthday"
1013
+ msgstr "Date de naissance"
1014
+
1015
+ #. Comes from file Entities/Person.rb and line is value_str :address
1016
+ #: ../Entities/Person.rb:38
1017
+ msgid "address"
1018
+ msgstr "Adresse"
1019
+
1020
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :town, :ldap_name => 'l'
1021
+ #: ../Entities/Person.rb:41
1022
+ msgid "town"
1023
+ msgstr "Ville"
1024
+
1025
+ #. Comes from file Entities/Person.rb and line is value_str :profession
1026
+ #: ../Entities/Person.rb:43
1027
+ msgid "profession"
1028
+ msgstr "Activité"
1029
+
1030
+ #. Comes from file Entities/Person.rb and line is value_str :school_grade
1031
+ #: ../Entities/Person.rb:44
1032
+ msgid "school_grade"
1033
+ msgstr "Classe"
1034
+
1035
+ #. Comes from file Entities/Person.rb and line is value_str :role_diploma
1036
+ #.
1037
+ #. Comes from file Views/Person/Center.rb and line is show_field :role_diploma
1038
+ #: ../Entities/Person.rb:49
1039
+ #: ../Views/Person/Center.rb:14
1040
+ msgid "role_diploma"
1041
+ msgstr "Fonction sur attestation"
1042
+
1043
+ #. Comes from file Entities/Person.rb and line is value_list :permissions, 'Permission.list.sort'
1044
+ #.
1045
+ #. Comes from file Views/Person/Admin.rb and line is show_arg :permissions, :flexheight => 1
1046
+ #.
1047
+ #. Comes from file Views/Person/Center.rb and line is show_list :permissions, "%w( teacher center_director )"
1048
+ #: ../Entities/Person.rb:50
1049
+ #: ../Views/Person/Admin.rb:17
1050
+ #: ../Views/Person/Center.rb:15
1051
+ msgid "permissions"
1052
+ msgstr "Permissions"
1053
+
1054
+ #. Comes from file Entities/Person.rb and line is value_entity_account :account_due
1055
+ #: ../Entities/Person.rb:53
1056
+ msgid "account_due"
1057
+ msgstr "Compte dû"
1058
+
1059
+ #. Comes from file Entities/Person.rb and line is value_entity_account :account_due_paid
1060
+ #: ../Entities/Person.rb:54
1061
+ msgid "account_due_paid"
1062
+ msgstr "Compte dû payé"
1063
+
1064
+ #. Comes from file Entities/Person.rb and line is value_list :groups, '%w( freesurf sudo print localonly share ).sort'
1065
+ #.
1066
+ #. Comes from file Views/Internet/Access.rb and line is vtlp_list :groups, :name
1067
+ #.
1068
+ #. Comes from file Views/Person/Admin.rb and line is show_field :groups
1069
+ #: ../Entities/Person.rb:58
1070
+ #: ../Views/Internet/Access.rb:12
1071
+ #: ../Views/Person/Admin.rb:22
1072
+ msgid "groups"
1073
+ msgstr "Groupes"
1074
+
1075
+ #. Comes from file Entities/Person.rb and line is value_list_single :internet_none, '[]'
1076
+ #: ../Entities/Person.rb:59
1077
+ msgid "internet_none"
1078
+ msgstr "Sans internet"
1079
+
1080
+ #. Comes from file Entities/Person.rb and line is value_str_ro_LDAP :login_name, :ldap_name => 'uid'
1081
+ #.
1082
+ #. Comes from file Entities/Worker.rb and line is value_str :login_name
1083
+ #.
1084
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_str_ro :login_name
1085
+ #.
1086
+ #. Comes from file Views/Internet/Access.rb and line is show_str :login_name
1087
+ #.
1088
+ #. Comes from file Views/Person/Admin.rb and line is show_str_ro :login_name
1089
+ #.
1090
+ #. Comes from file Views/Person/Center.rb and line is show_str_ro :login_name
1091
+ #.
1092
+ #. Comes from file Views/Person/Modify.rb and line is show_str_ro :login_name, :width => 150
1093
+ #.
1094
+ #. Comes from file Views/Self/Email.rb and line is show_str_ro :login_name
1095
+ #: ../Entities/Person.rb:62
1096
+ #: ../Entities/Worker.rb:5
1097
+ #: ../Views/Cashbox/Credit.rb:22
1098
+ #: ../Views/Internet/Access.rb:26
1099
+ #: ../Views/Person/Admin.rb:14
1100
+ #: ../Views/Person/Center.rb:12
1101
+ #: ../Views/Person/Modify.rb:14
1102
+ #: ../Views/Self/Email.rb:10
1103
+ msgid "login_name"
1104
+ msgstr "Nom du compte"
1105
+
1106
+ #. Comes from file Entities/Person.rb and line is value_int_ro :internet_credit
1107
+ #.
1108
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_int_ro :internet_credit
1109
+ #.
1110
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :internet_credit
1111
+ #: ../Entities/Person.rb:65
1112
+ #: ../Views/Cashbox/Credit.rb:24
1113
+ #: ../Views/Self/Internet.rb:16
1114
+ msgid "internet_credit"
1115
+ msgstr "Crédit internet"
1116
+
1117
+ #. Comes from file Entities/Person.rb and line is value_int_ro :account_total_due
1118
+ #.
1119
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int_ro :account_total_due
1120
+ #.
1121
+ #. Comes from file Views/Self/Cash.rb and line is show_int_ro :account_total_due, :width => 100
1122
+ #.
1123
+ #. Comes from file Views/Self/Services.rb and line is show_int_ro :account_total_due
1124
+ #: ../Entities/Person.rb:66
1125
+ #: ../Views/Cashbox/Service.rb:28
1126
+ #: ../Views/Self/Cash.rb:11
1127
+ #: ../Views/Self/Services.rb:26
1128
+ msgid "account_total_due"
1129
+ msgstr "Doit à la comptabilité"
1130
+
1131
+ #. Comes from file Entities/Person.rb and line is value_str :acc_remote
1132
+ #: ../Entities/Person.rb:69
1133
+ msgid "acc_remote"
1134
+ msgstr "Nom serveur mail"
1135
+
1136
+ #. Comes from file Entities/Person.rb and line is value_str :acc_pass
1137
+ #: ../Entities/Person.rb:70
1138
+ msgid "acc_pass"
1139
+ msgstr "Mot de passe email"
1140
+
1141
+ #. Comes from file Entities/Person.rb and line is value_list_drop :acc_proto, '%w( POP3 IMAP )'
1142
+ #: ../Entities/Person.rb:71
1143
+ msgid "acc_proto"
1144
+ msgstr "Protocole serveur"
1145
+
1146
+ #. Comes from file Entities/Person.rb and line is value_list_drop :acc_port, '%w( 110 993 995 )'
1147
+ #: ../Entities/Person.rb:72
1148
+ msgid "acc_port"
1149
+ msgstr "Port serveur"
1150
+
1151
+ #. Comes from file Entities/Person.rb and line is value_list_drop :acc_supp, '["ssl keep", "ssl", "keep", ""]'
1152
+ #: ../Entities/Person.rb:73
1153
+ msgid "acc_supp"
1154
+ msgstr "Configuration"
1155
+
1156
+ #. Comes from file Entities/Person.rb and line is value_str :session_id
1157
+ #: ../Entities/Person.rb:76
1158
+ msgid "session_id"
1159
+ msgstr "ID de session"
1160
+
1161
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :password, :ldap_name => 'userPassword'
1162
+ #.
1163
+ #. Comes from file Views/Special/Vnc.rb and line is show_str :password
1164
+ #: ../Entities/Person.rb:77
1165
+ #: ../Views/Special/Vnc.rb:10
1166
+ msgid "password"
1167
+ msgstr "Mot de passe"
1168
+
1169
+ #. Comes from file Entities/Person.rb and line is value_str :password_plain
1170
+ #.
1171
+ #. Comes from file Views/Person/Modify.rb and line is show_str_ro :password_plain
1172
+ #: ../Entities/Person.rb:78
1173
+ #: ../Views/Person/Modify.rb:25
1174
+ msgid "password_plain"
1175
+ msgstr "Mot de passe initial"
1176
+
1177
+ #. Comes from file Entities/Person.rb and line is value_int_LDAP :person_id, :ldap_name => 'uidnumber'
1178
+ #.
1179
+ #. Comes from file Entities/Worker.rb and line is value_int :person_id
1180
+ #.
1181
+ #. Comes from file Views/Person/Admin.rb and line is show_str_ro :person_id
1182
+ #.
1183
+ #. Comes from file Views/Person/Center.rb and line is show_str_ro :person_id
1184
+ #.
1185
+ #. Comes from file Views/Person/Modify.rb and line is show_str_ro :person_id
1186
+ #: ../Entities/Person.rb:79
1187
+ #: ../Entities/Worker.rb:4
1188
+ #: ../Views/Person/Admin.rb:15
1189
+ #: ../Views/Person/Center.rb:13
1190
+ #: ../Views/Person/Modify.rb:15
1191
+ msgid "person_id"
1192
+ msgstr "# utilisateur"
1193
+
1194
+ #. Comes from file Entities/Plug.rb and line is value_str :internal_id
1195
+ #.
1196
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_arg :internal_id, :width => 150
1197
+ #: ../Entities/Plug.rb:3
1198
+ #: ../Views/Special/PlugEdit.rb:16
1199
+ msgid "internal_id"
1200
+ msgstr "ID interne"
1201
+
1202
+ #. Comes from file Entities/Plug.rb and line is value_str :fixed_id
1203
+ #: ../Entities/Plug.rb:4
1204
+ msgid "fixed_id"
1205
+ msgstr "ID intern"
1206
+
1207
+ #. Comes from file Entities/Plug.rb and line is value_str :center_name
1208
+ #: ../Entities/Plug.rb:5
1209
+ msgid "center_name"
1210
+ msgstr "Nom centre"
1211
+
1212
+ #. Comes from file Entities/Plug.rb and line is value_str :center_id
1213
+ #: ../Entities/Plug.rb:6
1214
+ msgid "center_id"
1215
+ msgstr "ID"
1216
+
1217
+ #. Comes from file Entities/Plug.rb and line is value_str :center_city
1218
+ #: ../Entities/Plug.rb:7
1219
+ msgid "center_city"
1220
+ msgstr "Ville"
1221
+
1222
+ #. Comes from file Entities/Plug.rb and line is value_str :ip_local
1223
+ #: ../Entities/Plug.rb:8
1224
+ msgid "ip_local"
1225
+ msgstr "IP locale"
1226
+
1227
+ #. Comes from file Entities/Plug.rb and line is value_date :installation
1228
+ #: ../Entities/Plug.rb:9
1229
+ msgid "installation"
1230
+ msgstr "Date d'installation"
1231
+
1232
+ #. Comes from file Entities/Plug.rb and line is value_str :telephone
1233
+ #: ../Entities/Plug.rb:10
1234
+ msgid "telephone"
1235
+ msgstr "Téléphone"
1236
+
1237
+ #. Comes from file Entities/Plug.rb and line is value_str :credit
1238
+ #.
1239
+ #. Comes from file Views/Internet/Mobile.rb and line is show_int_ro :credit
1240
+ #: ../Entities/Plug.rb:11
1241
+ #: ../Views/Internet/Mobile.rb:25
1242
+ msgid "credit"
1243
+ msgstr "Crédit restant"
1244
+
1245
+ #. Comes from file Entities/Plug.rb and line is value_str :internet_left
1246
+ #: ../Entities/Plug.rb:12
1247
+ #, fuzzy
1248
+ msgid "internet_left"
1249
+ msgstr "Crédit internet"
1250
+
1251
+ #. Comes from file Entities/Plug.rb and line is value_list_drop :model, '%w(DreamPlug08 DreamPlug10 Smileplug
1252
+ #: ../Entities/Plug.rb:13
1253
+ msgid "model"
1254
+ msgstr "Modèle"
1255
+
1256
+ #. Comes from file Entities/Plug.rb and line is value_int :storage_size
1257
+ #: ../Entities/Plug.rb:15
1258
+ msgid "storage_size"
1259
+ msgstr "Capacité"
1260
+
1261
+ #. Comes from file Entities/Plug.rb and line is value_list :msg_type, '%w( sms email rpc credit )'
1262
+ #: ../Entities/Plug.rb:94
1263
+ #, fuzzy
1264
+ msgid "msg_type"
1265
+ msgstr "Texte"
1266
+
1267
+ #. Comes from file Entities/Plug.rb and line is value_list :msg_dir, '%w( send rcv )'
1268
+ #: ../Entities/Plug.rb:95
1269
+ #, fuzzy
1270
+ msgid "msg_dir"
1271
+ msgstr "Texte"
1272
+
1273
+ #. Comes from file Entities/Plug.rb and line is value_entity :plug
1274
+ #: ../Entities/Plug.rb:96
1275
+ #, fuzzy
1276
+ msgid "plug"
1277
+ msgstr "Embarqués"
1278
+
1279
+ #. Comes from file Entities/Quiz.rb and line is value_str :full_name
1280
+ #.
1281
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_str :full_name
1282
+ #.
1283
+ #. Comes from file Views/Cashbox/Course.rb and line is show_str :full_name
1284
+ #.
1285
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_str_ro :full_name
1286
+ #.
1287
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_str :full_name
1288
+ #.
1289
+ #. Comes from file Views/Self/Concours.rb and line is show_str :full_name, :width => 300
1290
+ #: ../Entities/Quiz.rb:4
1291
+ #: ../Views/Cashbox/Activity.rb:20
1292
+ #: ../Views/Cashbox/Course.rb:17
1293
+ #: ../Views/Cashbox/Credit.rb:23
1294
+ #: ../Views/Cashbox/Credit.rb:29
1295
+ #: ../Views/Self/Concours.rb:13
1296
+ msgid "full_name"
1297
+ msgstr "Nom complet"
1298
+
1299
+ #. Comes from file Entities/Quiz.rb and line is value_str :reply
1300
+ #: ../Entities/Quiz.rb:5
1301
+ msgid "reply"
1302
+ msgstr "Réponse"
1303
+
1304
+ #. Comes from file Entities/Quiz.rb and line is value_int :score
1305
+ #: ../Entities/Quiz.rb:6
1306
+ msgid "score"
1307
+ msgstr "Points"
1308
+
1309
+ #. Comes from file Entities/Recharges.rb and line is value_int :volume
1310
+ #: ../Entities/Recharges.rb:4
1311
+ msgid "volume"
1312
+ msgstr "Volume"
1313
+
1314
+ #. Comes from file Entities/Recharges.rb and line is value_int :days_valid
1315
+ #: ../Entities/Recharges.rb:5
1316
+ msgid "days_valid"
1317
+ msgstr "Jours de validité"
1318
+
1319
+ #. Comes from file Entities/Recharges.rb and line is value_int :days_goal
1320
+ #: ../Entities/Recharges.rb:6
1321
+ msgid "days_goal"
1322
+ msgstr "Jours visés"
1323
+
1324
+ #. Comes from file Entities/Report.rb and line is value_entity_account :root, :drop, :path
1325
+ #.
1326
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_entity_account :root, :drop, :width => 400,
1327
+ #: ../Entities/Report.rb:3
1328
+ #: ../Views/Report/ComptaExecutive.rb:32
1329
+ msgid "root"
1330
+ msgstr "Année"
1331
+
1332
+ #. Comes from file Entities/Report.rb and line is value_entity_account :account, :drop, :path
1333
+ #.
1334
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_entity_account :account, :drop
1335
+ #: ../Entities/Report.rb:4
1336
+ #: ../Views/Report/ComptaExecutive.rb:34
1337
+ msgid "account"
1338
+ msgstr "Compte"
1339
+
1340
+ #. Comes from file Entities/Report.rb and line is value_int :level
1341
+ #.
1342
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_int :level
1343
+ #: ../Entities/Report.rb:5
1344
+ #: ../Views/Report/ComptaExecutive.rb:35
1345
+ msgid "level"
1346
+ msgstr "Sous-comptes"
1347
+
1348
+ #. Comes from file Entities/Report.rb and line is value_list_entity_reportAccounts :accounts
1349
+ #.
1350
+ #. Comes from file Views/Compta/Check.rb and line is show_table :accounts, :headings => [:Check, :Name, :Total],
1351
+ #.
1352
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_entity_reportAccount :accounts, :single,
1353
+ #: ../Entities/Report.rb:13
1354
+ #: ../Views/Compta/Check.rb:12
1355
+ #: ../Views/Report/ComptaExecutive.rb:24
1356
+ msgid "accounts"
1357
+ msgstr "Rapports"
1358
+
1359
+ #. Comes from file Entities/Room.rb and line is value_int :size
1360
+ #: ../Entities/Room.rb:7
1361
+ msgid "size"
1362
+ msgstr "Taille"
1363
+
1364
+ #. Comes from file Entities/Room.rb and line is value_str :ip_net
1365
+ #: ../Entities/Room.rb:8
1366
+ msgid "ip_net"
1367
+ msgstr "Réseau IP"
1368
+
1369
+ #. Comes from file Entities/SMS.rb and line is value_date :date
1370
+ #.
1371
+ #. Comes from file Entities/Task.rb and line is value_date :date
1372
+ #.
1373
+ #. Comes from file Views/Cashbox/Service.rb and line is show_date :date
1374
+ #.
1375
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_date :date
1376
+ #: ../Entities/SMS.rb:5
1377
+ #: ../Entities/Task.rb:11
1378
+ #: ../Views/Cashbox/Service.rb:23
1379
+ #: ../Views/Compta/EditMovements.rb:23
1380
+ msgid "date"
1381
+ msgstr "Date"
1382
+
1383
+ #. Comes from file Entities/SMS.rb and line is value_txt :text
1384
+ #: ../Entities/SMS.rb:7
1385
+ msgid "text"
1386
+ msgstr "Texte"
1387
+
1388
+ #. Comes from file Entities/SMS.rb and line is value_int :index
1389
+ #: ../Entities/SMS.rb:8
1390
+ msgid "index"
1391
+ msgstr "index"
1392
+
1393
+ #. Comes from file Entities/ScheduleType.rb and line is value_str :schedule
1394
+ #: ../Entities/ScheduleType.rb:4
1395
+ msgid "schedule"
1396
+ msgstr "Horaire"
1397
+
1398
+ #. Comes from file Entities/Share.rb and line is value_str :path
1399
+ #: ../Entities/Share.rb:7
1400
+ msgid "path"
1401
+ msgstr "Chemin"
1402
+
1403
+ #. Comes from file Entities/Share.rb and line is value_str :force_user
1404
+ #: ../Entities/Share.rb:9
1405
+ msgid "force_user"
1406
+ msgstr "Forcer utilisateur"
1407
+
1408
+ #. Comes from file Entities/Share.rb and line is value_str :force_group
1409
+ #: ../Entities/Share.rb:10
1410
+ msgid "force_group"
1411
+ msgstr "Forcer groupe"
1412
+
1413
+ #. Comes from file Entities/Share.rb and line is value_list_drop :public, '%w( No Read ReadWrite )'
1414
+ #: ../Entities/Share.rb:12
1415
+ msgid "public"
1416
+ msgstr "Publique"
1417
+
1418
+ #. Comes from file Entities/Share.rb and line is value_str :acl
1419
+ #: ../Entities/Share.rb:15
1420
+ msgid "acl"
1421
+ msgstr "Liste de contrôle"
1422
+
1423
+ #. Comes from file Entities/Task.rb and line is value_str :date_name
1424
+ #: ../Entities/Task.rb:3
1425
+ msgid "date_name"
1426
+ msgstr "nom_date"
1427
+
1428
+ #. Comes from file Entities/Task.rb and line is value_str :client
1429
+ #.
1430
+ #. Comes from file Views/Task/Edit.rb and line is show_list_drop :client, "Entities.Clients.list_name"
1431
+ #.
1432
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :client, "Entities.Clients.list_name"
1433
+ #: ../Entities/Task.rb:6
1434
+ #: ../Views/Task/Edit.rb:14
1435
+ #: ../Views/Task/List.rb:12
1436
+ msgid "client"
1437
+ msgstr "Client"
1438
+
1439
+ #. Comes from file Entities/Task.rb and line is value_entity_person :worker, :drop, :full_name
1440
+ #: ../Entities/Task.rb:8
1441
+ msgid "worker"
1442
+ msgstr "Travailleur"
1443
+
1444
+ #. Comes from file Entities/Task.rb and line is value_int :duration_hours
1445
+ #: ../Entities/Task.rb:13
1446
+ msgid "duration_hours"
1447
+ msgstr "Durée"
1448
+
1449
+ #. Comes from file Entities/Task.rb and line is value_text :work
1450
+ #.
1451
+ #. Comes from file Entities/Ticket.rb and line is value_text :work
1452
+ #: ../Entities/Task.rb:14
1453
+ #: ../Entities/Ticket.rb:18
1454
+ msgid "work"
1455
+ msgstr "Travail"
1456
+
1457
+ #. Comes from file Entities/Task.rb and line is value_int :transport_length
1458
+ #: ../Entities/Task.rb:17
1459
+ msgid "transport_length"
1460
+ msgstr "Transport"
1461
+
1462
+ #. Comes from file Entities/Task.rb and line is value_list_single :transport_type, "%w( moto voiture taxi )"
1463
+ #: ../Entities/Task.rb:18
1464
+ msgid "transport_type"
1465
+ msgstr "Transport type"
1466
+
1467
+ #. Comes from file Entities/Task.rb and line is value_str :cost_description
1468
+ #: ../Entities/Task.rb:20
1469
+ msgid "cost_description"
1470
+ msgstr "Coût description"
1471
+
1472
+ #. Comes from file Entities/Task.rb and line is value_int :gain
1473
+ #: ../Entities/Task.rb:21
1474
+ msgid "gain"
1475
+ msgstr "Gagné"
1476
+
1477
+ #. Comes from file Entities/Task.rb and line is value_str :gain_description
1478
+ #: ../Entities/Task.rb:22
1479
+ msgid "gain_description"
1480
+ msgstr "Gagné description"
1481
+
1482
+ #. Comes from file Entities/Ticket.rb and line is value_date :opened
1483
+ #: ../Entities/Ticket.rb:6
1484
+ msgid "opened"
1485
+ msgstr "Ouvert le"
1486
+
1487
+ #. Comes from file Entities/Ticket.rb and line is value_date :closed
1488
+ #: ../Entities/Ticket.rb:7
1489
+ msgid "closed"
1490
+ msgstr "Fermé le"
1491
+
1492
+ #. Comes from file Entities/Ticket.rb and line is value_list_drop :severity, "%w( critique grave moyen optionnel )"
1493
+ #: ../Entities/Ticket.rb:8
1494
+ msgid "severity"
1495
+ msgstr "Gravité"
1496
+
1497
+ #. Comes from file Entities/Ticket.rb and line is value_str_ro :created_by
1498
+ #: ../Entities/Ticket.rb:9
1499
+ msgid "created_by"
1500
+ msgstr "Crée par"
1501
+
1502
+ #. Comes from file Entities/Ticket.rb and line is value_entity_person_empty :assigned, :drop, :full_name,
1503
+ #: ../Entities/Ticket.rb:10
1504
+ msgid "assigned"
1505
+ msgstr "Attribué à"
1506
+
1507
+ #. Comes from file Entities/Ticket.rb and line is value_entity_computer_empty :computer, :drop, :name_service
1508
+ #: ../Entities/Ticket.rb:12
1509
+ msgid "computer"
1510
+ msgstr "ID de l'ordi"
1511
+
1512
+ #. Comes from file Entities/Ticket.rb and line is value_str :other
1513
+ #: ../Entities/Ticket.rb:13
1514
+ msgid "other"
1515
+ msgstr "Autres"
1516
+
1517
+ #. Comes from file Entities/Ticket.rb and line is value_text :todo
1518
+ #: ../Entities/Ticket.rb:16
1519
+ msgid "todo"
1520
+ msgstr "A faire"
1521
+
1522
+ #. Comes from file Entities/Ticket.rb and line is value_text :verification
1523
+ #: ../Entities/Ticket.rb:17
1524
+ msgid "verification"
1525
+ msgstr "Vérification"
1526
+
1527
+ #. Comes from file Entities/Ticket.rb and line is vtlp_list :ticket_list, method, :width => 150
1528
+ #: ../Entities/Ticket.rb:47
1529
+ msgid "ticket_list"
1530
+ msgstr "Liste de tickets"
1531
+
1532
+ #. Comes from file Entities/Ticket.rb and line is show_button :new_ticket, :delete
1533
+ #: ../Entities/Ticket.rb:49
1534
+ msgid "new_ticket"
1535
+ msgstr "Nouveau ticket"
1536
+
1537
+ #. Comes from file Entities/Ticket.rb and line is show_button :new_ticket, :delete
1538
+ #.
1539
+ #. Comes from file Entities/Ticket.rb and line is show_button :delete
1540
+ #.
1541
+ #. Comes from file Views/Admin/Printer.rb and line is show_button :delete, :add
1542
+ #.
1543
+ #. Comes from file Views/Admin/Update.rb and line is show_button :update, :delete
1544
+ #.
1545
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :pay_act, :delete
1546
+ #.
1547
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :pay, :delete, :move
1548
+ #.
1549
+ #. Comes from file Views/Cashbox/Report.rb and line is show_button :delete
1550
+ #.
1551
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :delete, :new
1552
+ #.
1553
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_button :edit, :delete, :new
1554
+ #.
1555
+ #. Comes from file Views/Course/Responsible.rb and line is show_button :new, :delete, :save
1556
+ #.
1557
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :search, :delete, :add, :import
1558
+ #.
1559
+ #. Comes from file Views/Internet/Access.rb and line is show_button :new, :delete
1560
+ #.
1561
+ #. Comes from file Views/Internet/ClassEdit.rb and line is show_button :new, :delete
1562
+ #.
1563
+ #. Comes from file Views/Internet/Recharges.rb and line is show_button :new, :delete
1564
+ #.
1565
+ #. Comes from file Views/Inventory/Computer.rb and line is show_button :new, :delete
1566
+ #.
1567
+ #. Comes from file Views/Inventory/Room.rb and line is show_button :new, :delete
1568
+ #.
1569
+ #. Comes from file Views/Network/Netdevs.rb and line is show_button :delete, :new
1570
+ #.
1571
+ #. Comes from file Views/Network/Share.rb and line is show_button :new, :delete
1572
+ #.
1573
+ #. Comes from file Views/Person/Course.rb and line is show_button :add, :delete
1574
+ #.
1575
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :start_search, :delete, :add
1576
+ #.
1577
+ #. Comes from file Views/Report/UsageCases.rb and line is show_button :delete, :new
1578
+ #.
1579
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_button :delete, :new
1580
+ #.
1581
+ #. Comes from file Views/Task/Client.rb and line is show_button :delete
1582
+ #.
1583
+ #. Comes from file Views/Task/Edit.rb and line is show_button :delete
1584
+ #.
1585
+ #. Comes from file Views/Task/Worker.rb and line is show_button :delete
1586
+ #.
1587
+ #. Comes from file Views/Template/Activity.rb and line is show_button :new, :delete
1588
+ #.
1589
+ #. Comes from file Views/Template/CourseType.rb and line is show_button :new, :delete
1590
+ #: ../Entities/Ticket.rb:49
1591
+ #: ../Entities/Ticket.rb:51
1592
+ #: ../Views/Admin/Printer.rb:10
1593
+ #: ../Views/Admin/Update.rb:10
1594
+ #: ../Views/Cashbox/Activity.rb:30
1595
+ #: ../Views/Cashbox/Course.rb:29
1596
+ #: ../Views/Cashbox/Report.rb:23
1597
+ #: ../Views/Compta/EditAccounts.rb:12
1598
+ #: ../Views/Compta/EditMovements.rb:16
1599
+ #: ../Views/Course/Responsible.rb:13
1600
+ #: ../Views/Course/Tabs.rb:11
1601
+ #: ../Views/Internet/Access.rb:13
1602
+ #: ../Views/Internet/ClassEdit.rb:11
1603
+ #: ../Views/Internet/Recharges.rb:12
1604
+ #: ../Views/Inventory/Computer.rb:9
1605
+ #: ../Views/Inventory/Room.rb:9
1606
+ #: ../Views/Network/Netdevs.rb:13
1607
+ #: ../Views/Network/Share.rb:21
1608
+ #: ../Views/Person/Course.rb:14
1609
+ #: ../Views/Person/Tabs.rb:10
1610
+ #: ../Views/Report/UsageCases.rb:17
1611
+ #: ../Views/Special/PlugEdit.rb:12
1612
+ #: ../Views/Task/Client.rb:10
1613
+ #: ../Views/Task/Edit.rb:11
1614
+ #: ../Views/Task/Worker.rb:10
1615
+ #: ../Views/Template/Activity.rb:16
1616
+ #: ../Views/Template/CourseType.rb:17
1617
+ msgid "delete"
1618
+ msgstr "Effacer"
1619
+
1620
+ #. Comes from file Entities/Ticket.rb and line is show_button :save_ticket
1621
+ #: ../Entities/Ticket.rb:65
1622
+ msgid "save_ticket"
1623
+ msgstr "Enregistrer"
1624
+
1625
+ #. Comes from file Entities/Ticket.rb and line is show_button :save
1626
+ #.
1627
+ #. Comes from file Views/Admin/Configuration.rb and line is show_button :save
1628
+ #.
1629
+ #. Comes from file Views/Admin/Function.rb and line is show_button :save
1630
+ #.
1631
+ #. Comes from file Views/Admin/Printer.rb and line is show_button :save
1632
+ #.
1633
+ #. Comes from file Views/Compta/Accounts.rb and line is show_button :save
1634
+ #.
1635
+ #. Comes from file Views/Compta/Course.rb and line is show_button :new_account_path, :save
1636
+ #.
1637
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :save, :account_update
1638
+ #.
1639
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_button :save, :new_mov, :close
1640
+ #.
1641
+ #. Comes from file Views/Compta/Users.rb and line is show_button :save
1642
+ #.
1643
+ #. Comes from file Views/Course/Grade.rb and line is show_button :save, :upload
1644
+ #.
1645
+ #. Comes from file Views/Course/Modify.rb and line is show_button :save
1646
+ #.
1647
+ #. Comes from file Views/Course/Responsible.rb and line is show_button :new, :delete, :save
1648
+ #.
1649
+ #. Comes from file Views/Course/Stats.rb and line is show_button :save, :create_account
1650
+ #.
1651
+ #. Comes from file Views/Course/Students.rb and line is show_button :save
1652
+ #.
1653
+ #. Comes from file Views/Internet/Access.rb and line is show_button :save, :add_time, :delete_time
1654
+ #.
1655
+ #. Comes from file Views/Internet/ClassEdit.rb and line is show_button :save
1656
+ #.
1657
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_button :save
1658
+ #.
1659
+ #. Comes from file Views/Internet/Recharges.rb and line is show_button :save
1660
+ #.
1661
+ #. Comes from file Views/Inventory/Computer.rb and line is show_button :save
1662
+ #.
1663
+ #. Comes from file Views/Inventory/Room.rb and line is show_button :save
1664
+ #.
1665
+ #. Comes from file Views/Library/Person.rb and line is show_button :save
1666
+ #.
1667
+ #. Comes from file Views/Network/Netdevs.rb and line is show_button :save
1668
+ #.
1669
+ #. Comes from file Views/Person/Admin.rb and line is show_button :save
1670
+ #.
1671
+ #. Comes from file Views/Person/Center.rb and line is show_button :save
1672
+ #.
1673
+ #. Comes from file Views/Person/Modify.rb and line is show_button :save, :print
1674
+ #.
1675
+ #. Comes from file Views/Report/UsageCases.rb and line is show_button :save
1676
+ #.
1677
+ #. Comes from file Views/Self/Email.rb and line is show_button :save
1678
+ #.
1679
+ #. Comes from file Views/Self/Show.rb and line is show_button :save
1680
+ #.
1681
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_button :save
1682
+ #.
1683
+ #. Comes from file Views/Task/Client.rb and line is show_button :new, :save
1684
+ #.
1685
+ #. Comes from file Views/Task/Edit.rb and line is show_button :save, :new
1686
+ #.
1687
+ #. Comes from file Views/Task/Worker.rb and line is show_button :new, :save
1688
+ #.
1689
+ #. Comes from file Views/Template/Activity.rb and line is show_button :save
1690
+ #.
1691
+ #. Comes from file Views/Template/CourseType.rb and line is show_button :save
1692
+ #.
1693
+ #. Comes from file Views/Template/ScheduleType.rb and line is show_button :save, :render
1694
+ #: ../Entities/Ticket.rb:67
1695
+ #: ../Views/Admin/Configuration.rb:29
1696
+ #: ../Views/Admin/Function.rb:16
1697
+ #: ../Views/Admin/Printer.rb:16
1698
+ #: ../Views/Compta/Accounts.rb:13
1699
+ #: ../Views/Compta/Course.rb:20
1700
+ #: ../Views/Compta/EditAccounts.rb:18
1701
+ #: ../Views/Compta/EditMovements.rb:24
1702
+ #: ../Views/Compta/Users.rb:19
1703
+ #: ../Views/Course/Grade.rb:36
1704
+ #: ../Views/Course/Modify.rb:78
1705
+ #: ../Views/Course/Responsible.rb:13
1706
+ #: ../Views/Course/Stats.rb:21
1707
+ #: ../Views/Course/Students.rb:21
1708
+ #: ../Views/Internet/Access.rb:22
1709
+ #: ../Views/Internet/ClassEdit.rb:16
1710
+ #: ../Views/Internet/ClassUsers.rb:23
1711
+ #: ../Views/Internet/Recharges.rb:16
1712
+ #: ../Views/Inventory/Computer.rb:16
1713
+ #: ../Views/Inventory/Room.rb:14
1714
+ #: ../Views/Library/Person.rb:13
1715
+ #: ../Views/Network/Netdevs.rb:17
1716
+ #: ../Views/Person/Admin.rb:26
1717
+ #: ../Views/Person/Center.rb:16
1718
+ #: ../Views/Person/Modify.rb:19
1719
+ #: ../Views/Report/UsageCases.rb:24
1720
+ #: ../Views/Self/Email.rb:13
1721
+ #: ../Views/Self/Show.rb:11
1722
+ #: ../Views/Special/PlugEdit.rb:17
1723
+ #: ../Views/Task/Client.rb:17
1724
+ #: ../Views/Task/Edit.rb:19
1725
+ #: ../Views/Task/Worker.rb:17
1726
+ #: ../Views/Template/Activity.rb:24
1727
+ #: ../Views/Template/CourseType.rb:47
1728
+ #: ../Views/Template/ScheduleType.rb:16
1729
+ msgid "save"
1730
+ msgstr "Enregistrer"
1731
+
1732
+ #. Comes from file Entities/Usage.rb and line is value_str :file_dir
1733
+ #.
1734
+ #. Comes from file Views/Report/UsageCases.rb and line is show_str :file_dir
1735
+ #: ../Entities/Usage.rb:10
1736
+ #: ../Views/Report/UsageCases.rb:21
1737
+ msgid "file_dir"
1738
+ msgstr "Répertoire"
1739
+
1740
+ #. Comes from file Entities/Usage.rb and line is value_str :file_glob
1741
+ #.
1742
+ #. Comes from file Views/Report/UsageCases.rb and line is show_str :file_glob
1743
+ #: ../Entities/Usage.rb:11
1744
+ #: ../Views/Report/UsageCases.rb:22
1745
+ msgid "file_glob"
1746
+ msgstr "Fichiers"
1747
+
1748
+ #. Comes from file Entities/Usage.rb and line is value_str :file_filter
1749
+ #.
1750
+ #. Comes from file Views/Report/UsageCases.rb and line is show_text :file_filter, :flexwidth => 1, :flexheight => 1
1751
+ #: ../Entities/Usage.rb:21
1752
+ #: ../Views/Report/UsageCases.rb:23
1753
+ msgid "file_filter"
1754
+ msgstr "Filtrage"
1755
+
1756
+ #. Comes from file Entities/Worker.rb and line is value_list_drop :function, "%w( assistant expert )"
1757
+ #: ../Entities/Worker.rb:8
1758
+ msgid "function"
1759
+ msgstr "Fonction"
1760
+
1761
+ #. Comes from file Views/Admin/Backup.rb and line is class AdminBackup < View
1762
+ #: ../Views/Admin/Backup.rb:9
1763
+ msgid "AdminBackup"
1764
+ msgstr "Sauvegardes"
1765
+
1766
+ #. Comes from file Views/Admin/Backup.rb and line is show_list_single :backups, 'View.AdminBackup.list_backups', :width => 400
1767
+ #: ../Views/Admin/Backup.rb:16
1768
+ msgid "backups"
1769
+ msgstr "Sauvegardes"
1770
+
1771
+ #. Comes from file Views/Admin/Backup.rb and line is show_upload :upload_backup, callback: true
1772
+ #: ../Views/Admin/Backup.rb:17
1773
+ msgid "upload_backup"
1774
+ msgstr "Envoyer"
1775
+
1776
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :do_backup, :do_restore, :do_download
1777
+ #: ../Views/Admin/Backup.rb:18
1778
+ msgid "do_restore"
1779
+ msgstr "Restaurer"
1780
+
1781
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :do_backup, :do_restore, :do_download
1782
+ #: ../Views/Admin/Backup.rb:18
1783
+ msgid "do_backup"
1784
+ msgstr "Sauvegarder"
1785
+
1786
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :do_backup, :do_restore, :do_download
1787
+ #: ../Views/Admin/Backup.rb:18
1788
+ msgid "do_download"
1789
+ msgstr "Télécharger"
1790
+
1791
+ #. Comes from file Views/Admin/Backup.rb and line is show_html :txt
1792
+ #.
1793
+ #. Comes from file Views/Admin/Power.rb and line is show_html :txt
1794
+ #.
1795
+ #. Comes from file Views/Compta/Admin.rb and line is show_html :txt
1796
+ #.
1797
+ #. Comes from file Views/Course/Grade.rb and line is show_html :txt
1798
+ #.
1799
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_html :txt
1800
+ #.
1801
+ #. Comes from file Views/Self/Concours.rb and line is show_html :txt
1802
+ #: ../Views/Admin/Backup.rb:22
1803
+ #: ../Views/Admin/Power.rb:18
1804
+ #: ../Views/Compta/Admin.rb:10
1805
+ #: ../Views/Course/Grade.rb:40
1806
+ #: ../Views/Report/ComptaFlat.rb:20
1807
+ #: ../Views/Self/Concours.rb:53
1808
+ msgid "txt"
1809
+ msgstr "Texte"
1810
+
1811
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :restore, :close
1812
+ #.
1813
+ #. Comes from file Views/Admin/FilesSave.rb and line is show_button :close
1814
+ #.
1815
+ #. Comes from file Views/Admin/Server.rb and line is show_button :download, :close
1816
+ #.
1817
+ #. Comes from file Views/Admin/Update.rb and line is show_button :confirm_ok, :close
1818
+ #.
1819
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :print_next, :close
1820
+ #.
1821
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :close
1822
+ #.
1823
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :close, :do_move
1824
+ #.
1825
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_button :win_add_person, :close
1826
+ #.
1827
+ #. Comes from file Views/Cashbox/Report.rb and line is show_button :close
1828
+ #.
1829
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :close
1830
+ #.
1831
+ #. Comes from file Views/Compta/Check.rb and line is show_button :close, :continue
1832
+ #.
1833
+ #. Comes from file Views/Compta/Course.rb and line is show_button :assign_new_account, :add_archives, :close
1834
+ #.
1835
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :add_account, :close
1836
+ #.
1837
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :close
1838
+ #.
1839
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_button :save, :new_mov, :close
1840
+ #.
1841
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :close
1842
+ #.
1843
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :close
1844
+ #.
1845
+ #. Comes from file Views/Course/Grade.rb and line is show_button :close
1846
+ #.
1847
+ #. Comes from file Views/Course/Grade.rb and line is show_button :close
1848
+ #.
1849
+ #. Comes from file Views/Course/Grade.rb and line is show_button :close
1850
+ #.
1851
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_students, :close
1852
+ #.
1853
+ #. Comes from file Views/Course/Modify.rb and line is show_button :close
1854
+ #.
1855
+ #. Comes from file Views/Course/Modify.rb and line is show_button :print_next, :close
1856
+ #.
1857
+ #. Comes from file Views/Course/Modify.rb and line is show_button :do_transfer, :close
1858
+ #.
1859
+ #. Comes from file Views/Course/Modify.rb and line is show_button :wen_save, :close
1860
+ #.
1861
+ #. Comes from file Views/Course/Print.rb and line is show_button :close
1862
+ #.
1863
+ #. Comes from file Views/Course/Print.rb and line is show_button :close
1864
+ #.
1865
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :close
1866
+ #.
1867
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :add_missing, :close
1868
+ #.
1869
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :new_course, :close
1870
+ #.
1871
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :confirm_delete, :close
1872
+ #.
1873
+ #. Comes from file Views/Network/Share.rb and line is show_button :close
1874
+ #.
1875
+ #. Comes from file Views/Person/Course.rb and line is show_button :add_course, :close
1876
+ #.
1877
+ #. Comes from file Views/Person/Modify.rb and line is show_button :next_page, :close
1878
+ #.
1879
+ #. Comes from file Views/Person/Modify.rb and line is show_button :close
1880
+ #.
1881
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :add_person, :close
1882
+ #.
1883
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :close
1884
+ #.
1885
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :confirm_delete, :close
1886
+ #.
1887
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_add_win, :account_save_win, :close
1888
+ #.
1889
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :report_add_win, :close
1890
+ #.
1891
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_button :close
1892
+ #.
1893
+ #. Comes from file Views/Self/Concours.rb and line is show_button :close
1894
+ #: ../Views/Admin/Backup.rb:23
1895
+ #: ../Views/Admin/FilesSave.rb:13
1896
+ #: ../Views/Admin/Server.rb:13
1897
+ #: ../Views/Admin/Update.rb:15
1898
+ #: ../Views/Cashbox/Activity.rb:36
1899
+ #: ../Views/Cashbox/Course.rb:34
1900
+ #: ../Views/Cashbox/Course.rb:39
1901
+ #: ../Views/Cashbox/Credit.rb:30
1902
+ #: ../Views/Cashbox/Report.rb:29
1903
+ #: ../Views/Compta/Admin.rb:11
1904
+ #: ../Views/Compta/Check.rb:40
1905
+ #: ../Views/Compta/Course.rb:25
1906
+ #: ../Views/Compta/EditAccounts.rb:24
1907
+ #: ../Views/Compta/EditAccounts.rb:29
1908
+ #: ../Views/Compta/EditMovements.rb:24
1909
+ #: ../Views/Course/Diploma.rb:30
1910
+ #: ../Views/Course/Diploma.rb:34
1911
+ #: ../Views/Course/Grade.rb:42
1912
+ #: ../Views/Course/Grade.rb:47
1913
+ #: ../Views/Course/Grade.rb:61
1914
+ #: ../Views/Course/Modify.rb:50
1915
+ #: ../Views/Course/Modify.rb:60
1916
+ #: ../Views/Course/Modify.rb:65
1917
+ #: ../Views/Course/Modify.rb:69
1918
+ #: ../Views/Course/Modify.rb:75
1919
+ #: ../Views/Course/Print.rb:18
1920
+ #: ../Views/Course/Print.rb:22
1921
+ #: ../Views/Course/Tabs.rb:16
1922
+ #: ../Views/Course/Tabs.rb:33
1923
+ #: ../Views/Course/Tabs.rb:43
1924
+ #: ../Views/Course/Tabs.rb:49
1925
+ #: ../Views/Network/Share.rb:44
1926
+ #: ../Views/Person/Course.rb:19
1927
+ #: ../Views/Person/Modify.rb:32
1928
+ #: ../Views/Person/Modify.rb:39
1929
+ #: ../Views/Person/Tabs.rb:16
1930
+ #: ../Views/Person/Tabs.rb:21
1931
+ #: ../Views/Person/Tabs.rb:26
1932
+ #: ../Views/Report/ComptaExecutive.rb:36
1933
+ #: ../Views/Report/ComptaExecutive.rb:42
1934
+ #: ../Views/Report/ComptaFlat.rb:21
1935
+ #: ../Views/Self/Concours.rb:54
1936
+ msgid "close"
1937
+ msgstr "Fermer"
1938
+
1939
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :restore, :close
1940
+ #: ../Views/Admin/Backup.rb:23
1941
+ msgid "restore"
1942
+ msgstr "Restaurer"
1943
+
1944
+ #. Comes from file Views/Admin/Configuration.rb and line is class AdminConfiguration < View
1945
+ #: ../Views/Admin/Configuration.rb:1
1946
+ msgid "AdminConfiguration"
1947
+ msgstr "Configuration"
1948
+
1949
+ #. Comes from file Views/Admin/Configuration.rb and line is show_str :dputs_logfile
1950
+ #: ../Views/Admin/Configuration.rb:10
1951
+ msgid "dputs_logfile"
1952
+ msgstr "Fichier journal"
1953
+
1954
+ #. Comes from file Views/Admin/Configuration.rb and line is show_str :dputs_logall
1955
+ #: ../Views/Admin/Configuration.rb:11
1956
+ msgid "dputs_logall"
1957
+ msgstr "Fichier journal complet"
1958
+
1959
+ #. Comes from file Views/Admin/Credit.rb and line is class AdminCredit < View
1960
+ #: ../Views/Admin/Credit.rb:3
1961
+ msgid "AdminCredit"
1962
+ msgstr "Mise à jour du crédit"
1963
+
1964
+ #. Comes from file Views/Admin/Credit.rb and line is show_text :user_credit
1965
+ #: ../Views/Admin/Credit.rb:9
1966
+ msgid "user_credit"
1967
+ msgstr "Crédit utilisateur"
1968
+
1969
+ #. Comes from file Views/Admin/Credit.rb and line is show_button :update_credits
1970
+ #: ../Views/Admin/Credit.rb:10
1971
+ msgid "update_credits"
1972
+ msgstr "Mise à jour"
1973
+
1974
+ #. Comes from file Views/Admin/FilesLoad.rb and line is class AdminFilesLoad < View
1975
+ #: ../Views/Admin/FilesLoad.rb:1
1976
+ msgid "AdminFilesLoad"
1977
+ msgstr "MàJ Fichiers"
1978
+
1979
+ #. Comes from file Views/Admin/FilesLoad.rb and line is show_upload :update, :callback => true
1980
+ #.
1981
+ #. Comes from file Views/Admin/Update.rb and line is show_button :update, :delete
1982
+ #.
1983
+ #. Comes from file Views/Compta/Transfer.rb and line is show_button :do_transfer, :update
1984
+ #.
1985
+ #. Comes from file Views/Network/Block.rb and line is show_button :update
1986
+ #.
1987
+ #. Comes from file Views/Report/Usage.rb and line is show_button :update
1988
+ #.
1989
+ #. Comes from file Views/Self/Cash.rb and line is show_button :update
1990
+ #.
1991
+ #. Comes from file Views/Self/Results.rb and line is show_button :update
1992
+ #: ../Views/Admin/FilesLoad.rb:6
1993
+ #: ../Views/Admin/Update.rb:10
1994
+ #: ../Views/Compta/Transfer.rb:17
1995
+ #: ../Views/Network/Block.rb:15
1996
+ #: ../Views/Report/Usage.rb:20
1997
+ #: ../Views/Self/Cash.rb:14
1998
+ #: ../Views/Self/Results.rb:9
1999
+ msgid "update"
2000
+ msgstr "Mise à jour"
2001
+
2002
+ #. Comes from file Views/Admin/FilesSave.rb and line is class AdminFilesSave < View
2003
+ #: ../Views/Admin/FilesSave.rb:1
2004
+ msgid "AdminFilesSave"
2005
+ msgstr "Prendre Fichiers"
2006
+
2007
+ #. Comes from file Views/Admin/FilesSave.rb and line is show_list_single :dirs, 'View.AdminFilesSave.list_dirs',
2008
+ #: ../Views/Admin/FilesSave.rb:8
2009
+ msgid "dirs"
2010
+ msgstr "Répertoires"
2011
+
2012
+ #. Comes from file Views/Admin/FilesSave.rb and line is show_html :download_txt
2013
+ #: ../Views/Admin/FilesSave.rb:12
2014
+ msgid "download_txt"
2015
+ msgstr "Text"
2016
+
2017
+ #. Comes from file Views/Admin/Function.rb and line is class AdminFunction < View
2018
+ #: ../Views/Admin/Function.rb:1
2019
+ msgid "AdminFunction"
2020
+ msgstr "Fonctions"
2021
+
2022
+ #. Comes from file Views/Admin/Function.rb and line is show_field :functions, :flexheight => 1
2023
+ #: ../Views/Admin/Function.rb:10
2024
+ msgid "functions"
2025
+ msgstr "Fonctions"
2026
+
2027
+ #. Comes from file Views/Admin/Function.rb and line is show_field :welcome_text, :width => 400, :flexheight => 1
2028
+ #: ../Views/Admin/Function.rb:13
2029
+ msgid "welcome_text"
2030
+ msgstr "Bienvenue"
2031
+
2032
+ #. Comes from file Views/Admin/Power.rb and line is class AdminPower < View
2033
+ #: ../Views/Admin/Power.rb:3
2034
+ msgid "AdminPower"
2035
+ msgstr "Redémarrages"
2036
+
2037
+ #. Comes from file Views/Admin/Power.rb and line is show_button :reboot_gestion
2038
+ #: ../Views/Admin/Power.rb:9
2039
+ msgid "reboot_gestion"
2040
+ msgstr "Redémarrer Gestion"
2041
+
2042
+ #. Comes from file Views/Admin/Power.rb and line is show_button :reboot_dreamplug
2043
+ #: ../Views/Admin/Power.rb:12
2044
+ msgid "reboot_dreamplug"
2045
+ msgstr "Redémarrer le Dreamplug"
2046
+
2047
+ #. Comes from file Views/Admin/Power.rb and line is show_button :update_files
2048
+ #.
2049
+ #. Comes from file Views/Admin/Update.rb and line is show_list_single :update_files, width: 300
2050
+ #: ../Views/Admin/Power.rb:15
2051
+ #: ../Views/Admin/Update.rb:8
2052
+ msgid "update_files"
2053
+ msgstr "Mise à jour"
2054
+
2055
+ #. Comes from file Views/Admin/Power.rb and line is show_button :OK
2056
+ #: ../Views/Admin/Power.rb:19
2057
+ msgid "OK"
2058
+ msgstr "Créer"
2059
+
2060
+ #. Comes from file Views/Admin/Printer.rb and line is class AdminPrinter < View
2061
+ #: ../Views/Admin/Printer.rb:1
2062
+ msgid "AdminPrinter"
2063
+ msgstr "Imprimantes"
2064
+
2065
+ #. Comes from file Views/Admin/Printer.rb and line is show_list :printers, :single, :flexheight => 1
2066
+ #: ../Views/Admin/Printer.rb:9
2067
+ msgid "printers"
2068
+ msgstr "Imprimantes"
2069
+
2070
+ #. Comes from file Views/Admin/Printer.rb and line is show_button :delete, :add
2071
+ #.
2072
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :search, :delete, :add, :import
2073
+ #.
2074
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_button :search #, :add
2075
+ #.
2076
+ #. Comes from file Views/Person/Course.rb and line is show_button :add, :delete
2077
+ #.
2078
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :start_search, :delete, :add
2079
+ #: ../Views/Admin/Printer.rb:10
2080
+ #: ../Views/Course/Tabs.rb:11
2081
+ #: ../Views/Internet/ClassUsers.rb:17
2082
+ #: ../Views/Person/Course.rb:14
2083
+ #: ../Views/Person/Tabs.rb:10
2084
+ msgid "add"
2085
+ msgstr "Ajouter"
2086
+
2087
+ #. Comes from file Views/Admin/Printer.rb and line is show_str :cups_name
2088
+ #: ../Views/Admin/Printer.rb:13
2089
+ msgid "cups_name"
2090
+ msgstr "Nom cups"
2091
+
2092
+ #. Comes from file Views/Admin/Printer.rb and line is show_str :device
2093
+ #: ../Views/Admin/Printer.rb:14
2094
+ msgid "device"
2095
+ msgstr "Device"
2096
+
2097
+ #. Comes from file Views/Admin/Printer.rb and line is show_str :driver
2098
+ #: ../Views/Admin/Printer.rb:15
2099
+ msgid "driver"
2100
+ msgstr "Pilote"
2101
+
2102
+ #. Comes from file Views/Admin/Server.rb and line is class AdminServer < View
2103
+ #: ../Views/Admin/Server.rb:1
2104
+ msgid "AdminServer"
2105
+ msgstr "Import"
2106
+
2107
+ #. Comes from file Views/Admin/Server.rb and line is show_button :import_ctypes
2108
+ #: ../Views/Admin/Server.rb:7
2109
+ msgid "import_ctypes"
2110
+ msgstr "Import CourseTypes"
2111
+
2112
+ #. Comes from file Views/Admin/Server.rb and line is show_button :import_courses
2113
+ #: ../Views/Admin/Server.rb:8
2114
+ msgid "import_courses"
2115
+ msgstr "Import Courses"
2116
+
2117
+ #. Comes from file Views/Admin/Server.rb and line is show_html :status
2118
+ #.
2119
+ #. Comes from file Views/Cashbox/Report.rb and line is show_html :status
2120
+ #.
2121
+ #. Comes from file Views/Course/Diploma.rb and line is show_info :status
2122
+ #.
2123
+ #. Comes from file Views/Special/Vnc.rb and line is show_str_ro :status
2124
+ #: ../Views/Admin/Server.rb:11
2125
+ #: ../Views/Cashbox/Report.rb:28
2126
+ #: ../Views/Course/Diploma.rb:23
2127
+ #: ../Views/Special/Vnc.rb:11
2128
+ msgid "status"
2129
+ msgstr "État"
2130
+
2131
+ #. Comes from file Views/Admin/Server.rb and line is show_list :import_list
2132
+ #: ../Views/Admin/Server.rb:12
2133
+ msgid "import_list"
2134
+ msgstr "Import liste"
2135
+
2136
+ #. Comes from file Views/Admin/Server.rb and line is show_button :download, :close
2137
+ #: ../Views/Admin/Server.rb:13
2138
+ msgid "download"
2139
+ msgstr "Téléchargement"
2140
+
2141
+ #. Comes from file Views/Admin/Tabs.rb and line is class AdminTabs < View
2142
+ #: ../Views/Admin/Tabs.rb:1
2143
+ msgid "AdminTabs"
2144
+ msgstr "Administration"
2145
+
2146
+ #. Comes from file Views/Admin/Update.rb and line is class AdminUpdate < View
2147
+ #: ../Views/Admin/Update.rb:1
2148
+ msgid "AdminUpdate"
2149
+ msgstr "Mise à jour"
2150
+
2151
+ #. Comes from file Views/Admin/Update.rb and line is show_upload :upload_update, callback: true
2152
+ #: ../Views/Admin/Update.rb:9
2153
+ msgid "upload_update"
2154
+ msgstr "Envoyer"
2155
+
2156
+ #. Comes from file Views/Admin/Update.rb and line is show_html :confirm_html
2157
+ #: ../Views/Admin/Update.rb:14
2158
+ msgid "confirm_html"
2159
+ msgstr "OK"
2160
+
2161
+ #. Comes from file Views/Admin/Update.rb and line is show_button :confirm_ok, :close
2162
+ #: ../Views/Admin/Update.rb:15
2163
+ msgid "confirm_ok"
2164
+ msgstr "OK"
2165
+
2166
+ #. Comes from file Views/Cashbox/Activity.rb and line is class CashboxActivity < View
2167
+ #: ../Views/Cashbox/Activity.rb:1
2168
+ msgid "CashboxActivity"
2169
+ msgstr "Activités"
2170
+
2171
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_entity_activity_all :activities, :single, :name, :flexheight => 1, :width => 200,
2172
+ #: ../Views/Cashbox/Activity.rb:12
2173
+ msgid "activities"
2174
+ msgstr "Activités"
2175
+
2176
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :new_student, :search_student, :signed_up_students
2177
+ #: ../Views/Cashbox/Activity.rb:21
2178
+ msgid "new_student"
2179
+ msgstr "Créer"
2180
+
2181
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :new_student, :search_student, :signed_up_students
2182
+ #: ../Views/Cashbox/Activity.rb:21
2183
+ msgid "signed_up_students"
2184
+ msgstr "Inscrits"
2185
+
2186
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :new_student, :search_student, :signed_up_students
2187
+ #: ../Views/Cashbox/Activity.rb:21
2188
+ msgid "search_student"
2189
+ msgstr "Recherche"
2190
+
2191
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_print :print_activity
2192
+ #: ../Views/Cashbox/Activity.rb:22
2193
+ msgid "print_activity"
2194
+ msgstr "Imprimer activité sur"
2195
+
2196
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_table :table_activities, :headings => %w( Start End )
2197
+ #: ../Views/Cashbox/Activity.rb:27
2198
+ msgid "table_activities"
2199
+ msgstr "Activités"
2200
+
2201
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :pay_act, :delete
2202
+ #: ../Views/Cashbox/Activity.rb:30
2203
+ msgid "pay_act"
2204
+ msgstr "Payer"
2205
+
2206
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_html :msg_print
2207
+ #.
2208
+ #. Comes from file Views/Course/Diploma.rb and line is show_html :msg_print
2209
+ #.
2210
+ #. Comes from file Views/Course/Modify.rb and line is show_html :msg_print
2211
+ #.
2212
+ #. Comes from file Views/Course/Print.rb and line is show_html :msg_print
2213
+ #.
2214
+ #. Comes from file Views/Person/Modify.rb and line is show_html :msg_print
2215
+ #: ../Views/Cashbox/Activity.rb:34
2216
+ #: ../Views/Course/Diploma.rb:33
2217
+ #: ../Views/Course/Modify.rb:63
2218
+ #: ../Views/Course/Print.rb:21
2219
+ #: ../Views/Person/Modify.rb:31
2220
+ msgid "msg_print"
2221
+ msgstr "Impression"
2222
+
2223
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_int_hidden :step
2224
+ #.
2225
+ #. Comes from file Views/Course/Modify.rb and line is show_int_hidden :step
2226
+ #: ../Views/Cashbox/Activity.rb:35
2227
+ #: ../Views/Course/Modify.rb:64
2228
+ msgid "step"
2229
+ msgstr "Step"
2230
+
2231
+ #. Comes from file Views/Cashbox/Activity.rb and line is show_button :print_next, :close
2232
+ #.
2233
+ #. Comes from file Views/Course/Modify.rb and line is show_button :print_next, :close
2234
+ #: ../Views/Cashbox/Activity.rb:36
2235
+ #: ../Views/Course/Modify.rb:65
2236
+ msgid "print_next"
2237
+ msgstr "Imprimer suite"
2238
+
2239
+ #. Comes from file Views/Cashbox/Course.rb and line is class CashboxCourse < View
2240
+ #: ../Views/Cashbox/Course.rb:3
2241
+ msgid "CashboxCourse"
2242
+ msgstr "Cours"
2243
+
2244
+ #. Comes from file Views/Cashbox/Course.rb and line is show_entity_course :courses, :single, :name,
2245
+ #.
2246
+ #. Comes from file Views/Compta/Course.rb and line is show_entity_course :courses, :single, :name,
2247
+ #.
2248
+ #. Comes from file Views/Course/Tabs.rb and line is show_list_single :courses, :flexheight => 1, :callback => true,
2249
+ #.
2250
+ #. Comes from file Views/Person/Course.rb and line is show_list_single :courses, :maxheight => 150
2251
+ #: ../Views/Cashbox/Course.rb:11
2252
+ #: ../Views/Compta/Course.rb:15
2253
+ #: ../Views/Course/Tabs.rb:9
2254
+ #: ../Views/Person/Course.rb:13
2255
+ msgid "courses"
2256
+ msgstr "Cours"
2257
+
2258
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :add_student
2259
+ #: ../Views/Cashbox/Course.rb:18
2260
+ msgid "add_student"
2261
+ msgstr "Nouvel étudiant"
2262
+
2263
+ #. Comes from file Views/Cashbox/Course.rb and line is show_table :payments, :headings => [:Date, :Money, :Rest],
2264
+ #.
2265
+ #. Comes from file Views/Self/Cash.rb and line is show_list_single :payments, :width => 500, :callback => true,
2266
+ #: ../Views/Cashbox/Course.rb:21
2267
+ #: ../Views/Self/Cash.rb:12
2268
+ msgid "payments"
2269
+ msgstr "Payements"
2270
+
2271
+ #. Comes from file Views/Cashbox/Course.rb and line is show_date :payment_date
2272
+ #: ../Views/Cashbox/Course.rb:24
2273
+ msgid "payment_date"
2274
+ msgstr "Date payement"
2275
+
2276
+ #. Comes from file Views/Cashbox/Course.rb and line is show_int :cash
2277
+ #: ../Views/Cashbox/Course.rb:25
2278
+ msgid "cash"
2279
+ msgstr "Argent"
2280
+
2281
+ #. Comes from file Views/Cashbox/Course.rb and line is show_str :receit_id
2282
+ #: ../Views/Cashbox/Course.rb:27
2283
+ msgid "receit_id"
2284
+ msgstr "Numéro"
2285
+
2286
+ #. Comes from file Views/Cashbox/Course.rb and line is show_list_drop :old_cash, '%w( No Yes )'
2287
+ #: ../Views/Cashbox/Course.rb:28
2288
+ msgid "old_cash"
2289
+ msgstr "Déjà comptabilisé"
2290
+
2291
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :pay, :delete, :move
2292
+ #: ../Views/Cashbox/Course.rb:29
2293
+ msgid "move"
2294
+ msgstr "Transf. paym."
2295
+
2296
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :pay, :delete, :move
2297
+ #: ../Views/Cashbox/Course.rb:29
2298
+ msgid "pay"
2299
+ msgstr "Payer"
2300
+
2301
+ #. Comes from file Views/Cashbox/Course.rb and line is show_entity_person :move_students, :drop, :full_name, :width => 300
2302
+ #: ../Views/Cashbox/Course.rb:38
2303
+ msgid "move_students"
2304
+ msgstr "Nouvel étudiant"
2305
+
2306
+ #. Comes from file Views/Cashbox/Course.rb and line is show_button :close, :do_move
2307
+ #: ../Views/Cashbox/Course.rb:39
2308
+ msgid "do_move"
2309
+ msgstr "Transférer payment"
2310
+
2311
+ #. Comes from file Views/Cashbox/Credit.rb and line is class CashboxCredit < View
2312
+ #: ../Views/Cashbox/Credit.rb:6
2313
+ msgid "CashboxCredit"
2314
+ msgstr "Crédit"
2315
+
2316
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_str :search
2317
+ #.
2318
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :search, :delete, :add, :import
2319
+ #.
2320
+ #. Comes from file Views/Person/Tabs.rb and line is show_str :search
2321
+ #: ../Views/Cashbox/Credit.rb:15
2322
+ #: ../Views/Course/Tabs.rb:11
2323
+ #: ../Views/Person/Tabs.rb:8
2324
+ msgid "search"
2325
+ msgstr "Chercher"
2326
+
2327
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_button :search_person, :add_person
2328
+ #: ../Views/Cashbox/Credit.rb:17
2329
+ msgid "search_person"
2330
+ msgstr "Chercher"
2331
+
2332
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_button :search_person, :add_person
2333
+ #.
2334
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :add_person, :close
2335
+ #: ../Views/Cashbox/Credit.rb:17
2336
+ #: ../Views/Person/Tabs.rb:16
2337
+ msgid "add_person"
2338
+ msgstr "Ajouter"
2339
+
2340
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_int :credit_add
2341
+ #: ../Views/Cashbox/Credit.rb:21
2342
+ msgid "credit_add"
2343
+ msgstr "Ajouter crédit"
2344
+
2345
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_button :add_credit
2346
+ #.
2347
+ #. Comes from file Views/Internet/Mobile.rb and line is show_button :send_ussd, :add_credit
2348
+ #: ../Views/Cashbox/Credit.rb:25
2349
+ #: ../Views/Internet/Mobile.rb:43
2350
+ msgid "add_credit"
2351
+ msgstr "Ajouter crédit"
2352
+
2353
+ #. Comes from file Views/Cashbox/Credit.rb and line is show_button :win_add_person, :close
2354
+ #: ../Views/Cashbox/Credit.rb:30
2355
+ msgid "win_add_person"
2356
+ msgstr "Ajouter"
2357
+
2358
+ #. Comes from file Views/Cashbox/Report.rb and line is class CashboxReport < View
2359
+ #: ../Views/Cashbox/Report.rb:3
2360
+ msgid "CashboxReport"
2361
+ msgstr "Rapports"
2362
+
2363
+ #. Comes from file Views/Cashbox/Report.rb and line is show_list_single :report_type, :callback => true, :maxheight => 160
2364
+ #: ../Views/Cashbox/Report.rb:13
2365
+ msgid "report_type"
2366
+ msgstr "Rapport"
2367
+
2368
+ #. Comes from file Views/Cashbox/Report.rb and line is show_date :report_start, :callback => :date
2369
+ #: ../Views/Cashbox/Report.rb:14
2370
+ msgid "report_start"
2371
+ msgstr "Date du rapport"
2372
+
2373
+ #. Comes from file Views/Cashbox/Report.rb and line is show_print :print
2374
+ #.
2375
+ #. Comes from file Views/Compta/Transfer.rb and line is show_print :print
2376
+ #.
2377
+ #. Comes from file Views/Course/Diploma.rb and line is show_print :print
2378
+ #.
2379
+ #. Comes from file Views/Person/Modify.rb and line is show_button :save, :print
2380
+ #.
2381
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_print :print
2382
+ #.
2383
+ #. Comes from file Views/Report/ReportCourse.rb and line is show_print :print
2384
+ #.
2385
+ #. Comes from file Views/Report/Usage.rb and line is show_button :print
2386
+ #: ../Views/Cashbox/Report.rb:17
2387
+ #: ../Views/Compta/Transfer.rb:23
2388
+ #: ../Views/Course/Diploma.rb:26
2389
+ #: ../Views/Person/Modify.rb:19
2390
+ #: ../Views/Report/ComptaExecutive.rb:19
2391
+ #: ../Views/Report/ReportCourse.rb:15
2392
+ #: ../Views/Report/Usage.rb:11
2393
+ msgid "print"
2394
+ msgstr "Imprimer"
2395
+
2396
+ #. Comes from file Views/Cashbox/Report.rb and line is show_table :report, :headings => [ :Date, :Desc, :Amount, :Sum ],
2397
+ #.
2398
+ #. Comes from file Views/Cashbox/Service.rb and line is show_table :report, :headings => [:Date, :Desc, :Amount, :Sum],
2399
+ #.
2400
+ #. Comes from file Views/Compta/Transfer.rb and line is show_table :report, :headings => [:Date, :Desc, :Amount, :Sum],
2401
+ #.
2402
+ #. Comes from file Views/Report/ReportCourse.rb and line is show_table :report, :headings => [ :Date, :Desc, :Amount, :Rest ],
2403
+ #: ../Views/Cashbox/Report.rb:20
2404
+ #: ../Views/Cashbox/Service.rb:31
2405
+ #: ../Views/Compta/Transfer.rb:20
2406
+ #: ../Views/Report/ReportCourse.rb:18
2407
+ msgid "report"
2408
+ msgstr "Rapport"
2409
+
2410
+ #. Comes from file Views/Cashbox/Service.rb and line is class CashboxService < View
2411
+ #: ../Views/Cashbox/Service.rb:1
2412
+ msgid "CashboxService"
2413
+ msgstr "Services"
2414
+
2415
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int :copies_intern, :callback => :calc
2416
+ #: ../Views/Cashbox/Service.rb:10
2417
+ msgid "copies_intern"
2418
+ msgstr "Copies internes"
2419
+
2420
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int :copies_extern, :callback => :calc
2421
+ #: ../Views/Cashbox/Service.rb:11
2422
+ msgid "copies_extern"
2423
+ msgstr "Copies externes"
2424
+
2425
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int :heures_groupe_grand, :callback => :calc
2426
+ #.
2427
+ #. Comes from file Views/Self/Services.rb and line is show_int :heures_groupe_grand, :callback => :calc
2428
+ #: ../Views/Cashbox/Service.rb:13
2429
+ #: ../Views/Self/Services.rb:14
2430
+ msgid "heures_groupe_grand"
2431
+ msgstr "Heures grand groupe"
2432
+
2433
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int :CDs, :callback => :calc
2434
+ #.
2435
+ #. Comes from file Views/Self/Services.rb and line is show_int :CDs, :callback => :calc
2436
+ #: ../Views/Cashbox/Service.rb:14
2437
+ #: ../Views/Self/Services.rb:15
2438
+ msgid "CDs"
2439
+ msgstr "CDs"
2440
+
2441
+ #. Comes from file Views/Cashbox/Service.rb and line is show_str :autres_text, :width => 200
2442
+ #.
2443
+ #. Comes from file Views/Self/Services.rb and line is show_str :autres_text, :callback => :calc
2444
+ #: ../Views/Cashbox/Service.rb:17
2445
+ #: ../Views/Self/Services.rb:18
2446
+ msgid "autres_text"
2447
+ msgstr "Autres"
2448
+
2449
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int :autres_cfa, :callback => :calc
2450
+ #.
2451
+ #. Comes from file Views/Self/Services.rb and line is show_int :autres_cfa, :callback => :calc
2452
+ #: ../Views/Cashbox/Service.rb:18
2453
+ #: ../Views/Self/Services.rb:19
2454
+ msgid "autres_cfa"
2455
+ msgstr "CFA"
2456
+
2457
+ #. Comes from file Views/Cashbox/Service.rb and line is show_int :services_total
2458
+ #.
2459
+ #. Comes from file Views/Self/Services.rb and line is show_int :services_total
2460
+ #: ../Views/Cashbox/Service.rb:21
2461
+ #: ../Views/Self/Services.rb:22
2462
+ msgid "services_total"
2463
+ msgstr "Total"
2464
+
2465
+ #. Comes from file Views/Cashbox/Service.rb and line is show_button :add_cash
2466
+ #.
2467
+ #. Comes from file Views/Self/Services.rb and line is show_button :add_cash
2468
+ #: ../Views/Cashbox/Service.rb:24
2469
+ #: ../Views/Self/Services.rb:24
2470
+ msgid "add_cash"
2471
+ msgstr "Ajouter crédit"
2472
+
2473
+ #. Comes from file Views/Cashbox/Tabs.rb and line is class CashboxTabs < View
2474
+ #: ../Views/Cashbox/Tabs.rb:4
2475
+ msgid "CashboxTabs"
2476
+ msgstr "Entrées"
2477
+
2478
+ #. Comes from file Views/Compta/Accounts.rb and line is class ComptaDefaults < View
2479
+ #: ../Views/Compta/Accounts.rb:1
2480
+ msgid "ComptaDefaults"
2481
+ msgstr "Emplacements"
2482
+
2483
+ #. Comes from file Views/Compta/Admin.rb and line is class ComptaAdmin < View
2484
+ #: ../Views/Compta/Admin.rb:3
2485
+ msgid "ComptaAdmin"
2486
+ msgstr "Administration"
2487
+
2488
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :archive, :update_totals, :clean_up
2489
+ #: ../Views/Compta/Admin.rb:8
2490
+ msgid "update_totals"
2491
+ msgstr "Mise à jour des totaux"
2492
+
2493
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :archive, :update_totals, :clean_up
2494
+ #: ../Views/Compta/Admin.rb:8
2495
+ msgid "clean_up"
2496
+ msgstr "Nettoyage"
2497
+
2498
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :archive, :update_totals, :clean_up
2499
+ #: ../Views/Compta/Admin.rb:8
2500
+ msgid "archive"
2501
+ msgstr "Archiver"
2502
+
2503
+ #. Comes from file Views/Compta/Check.rb and line is class ComptaCheck < View
2504
+ #: ../Views/Compta/Check.rb:1
2505
+ msgid "ComptaCheck"
2506
+ msgstr "Vérification"
2507
+
2508
+ #. Comes from file Views/Compta/Check.rb and line is show_int_ro :accounts_only_db
2509
+ #: ../Views/Compta/Check.rb:7
2510
+ msgid "accounts_only_db"
2511
+ msgstr "Comptes Fichier"
2512
+
2513
+ #. Comes from file Views/Compta/Check.rb and line is show_int_ro :accounts_only_server
2514
+ #: ../Views/Compta/Check.rb:8
2515
+ msgid "accounts_only_server"
2516
+ msgstr "Comptes serveur"
2517
+
2518
+ #. Comes from file Views/Compta/Check.rb and line is show_int_ro :accounts_mixed
2519
+ #: ../Views/Compta/Check.rb:9
2520
+ msgid "accounts_mixed"
2521
+ msgstr "Comptes mélangés"
2522
+
2523
+ #. Comes from file Views/Compta/Check.rb and line is show_button :accounts_delete, :accounts_copy
2524
+ #: ../Views/Compta/Check.rb:15
2525
+ msgid "accounts_copy"
2526
+ msgstr "Copier"
2527
+
2528
+ #. Comes from file Views/Compta/Check.rb and line is show_button :accounts_delete, :accounts_copy
2529
+ #: ../Views/Compta/Check.rb:15
2530
+ msgid "accounts_delete"
2531
+ msgstr "Effacer"
2532
+
2533
+ #. Comes from file Views/Compta/Check.rb and line is show_int_ro :movements_only_db
2534
+ #: ../Views/Compta/Check.rb:21
2535
+ msgid "movements_only_db"
2536
+ msgstr "Movements fichier"
2537
+
2538
+ #. Comes from file Views/Compta/Check.rb and line is show_int_ro :movements_only_server
2539
+ #: ../Views/Compta/Check.rb:22
2540
+ msgid "movements_only_server"
2541
+ msgstr "Movements serveur"
2542
+
2543
+ #. Comes from file Views/Compta/Check.rb and line is show_int_ro :movements_mixed
2544
+ #: ../Views/Compta/Check.rb:23
2545
+ msgid "movements_mixed"
2546
+ msgstr "Movements mélangés"
2547
+
2548
+ #. Comes from file Views/Compta/Check.rb and line is show_table :movements, :headings => [:Check, :Date, :Desc, :Value, :Src, :Dst],
2549
+ #: ../Views/Compta/Check.rb:27
2550
+ msgid "movements"
2551
+ msgstr "Movements"
2552
+
2553
+ #. Comes from file Views/Compta/Check.rb and line is show_button :movements_delete, :movements_copy
2554
+ #: ../Views/Compta/Check.rb:30
2555
+ msgid "movements_copy"
2556
+ msgstr "Copier"
2557
+
2558
+ #. Comes from file Views/Compta/Check.rb and line is show_button :movements_delete, :movements_copy
2559
+ #: ../Views/Compta/Check.rb:30
2560
+ msgid "movements_delete"
2561
+ msgstr "Effacer"
2562
+
2563
+ #. Comes from file Views/Compta/Check.rb and line is show_upload :upload_db, :callback => true
2564
+ #: ../Views/Compta/Check.rb:35
2565
+ msgid "upload_db"
2566
+ msgstr "Décharger"
2567
+
2568
+ #. Comes from file Views/Compta/Check.rb and line is show_html :progress_txt
2569
+ #.
2570
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_html :progress_txt
2571
+ #: ../Views/Compta/Check.rb:39
2572
+ #: ../Views/Report/ComptaExecutive.rb:46
2573
+ msgid "progress_txt"
2574
+ msgstr "Avancement"
2575
+
2576
+ #. Comes from file Views/Compta/Check.rb and line is show_button :close, :continue
2577
+ #: ../Views/Compta/Check.rb:40
2578
+ msgid "continue"
2579
+ msgstr "Continuer"
2580
+
2581
+ #. Comes from file Views/Compta/Course.rb and line is class ComptaCourse < View
2582
+ #: ../Views/Compta/Course.rb:6
2583
+ msgid "ComptaCourse"
2584
+ msgstr "Cours"
2585
+
2586
+ #. Comes from file Views/Compta/Course.rb and line is show_str :account_path, :width => 300
2587
+ #: ../Views/Compta/Course.rb:19
2588
+ msgid "account_path"
2589
+ msgstr "Chemin de compte"
2590
+
2591
+ #. Comes from file Views/Compta/Course.rb and line is show_button :new_account_path, :save
2592
+ #: ../Views/Compta/Course.rb:20
2593
+ msgid "new_account_path"
2594
+ msgstr "Nouveau chemin de compte"
2595
+
2596
+ #. Comes from file Views/Compta/Course.rb and line is show_list_single :new_account, :width => 500, :height => 300
2597
+ #: ../Views/Compta/Course.rb:24
2598
+ msgid "new_account"
2599
+ msgstr "Nouveau compte"
2600
+
2601
+ #. Comes from file Views/Compta/Course.rb and line is show_button :assign_new_account, :add_archives, :close
2602
+ #: ../Views/Compta/Course.rb:25
2603
+ msgid "assign_new_account"
2604
+ msgstr "Définir compte"
2605
+
2606
+ #. Comes from file Views/Compta/Course.rb and line is show_button :assign_new_account, :add_archives, :close
2607
+ #: ../Views/Compta/Course.rb:25
2608
+ msgid "add_archives"
2609
+ msgstr "Archiver"
2610
+
2611
+ #. Comes from file Views/Compta/EditAccounts.rb and line is class ComptaEditAccounts < View
2612
+ #: ../Views/Compta/EditAccounts.rb:1
2613
+ msgid "ComptaEditAccounts"
2614
+ msgstr "Comptes"
2615
+
2616
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_entity_account :account_archive, :drop, :callback => true
2617
+ #.
2618
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_entity_account :account_archive, :drop, :callback => true
2619
+ #.
2620
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_entity_account :account_archive, :drop, :callback => true
2621
+ #: ../Views/Compta/EditAccounts.rb:9
2622
+ #: ../Views/Compta/EditMovements.rb:9
2623
+ #: ../Views/Report/ComptaFlat.rb:10
2624
+ msgid "account_archive"
2625
+ msgstr "Année"
2626
+
2627
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_entity_account :account_list, :single,
2628
+ #.
2629
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_entity_account :account_list, :single,
2630
+ #: ../Views/Compta/EditAccounts.rb:10
2631
+ #: ../Views/Report/ComptaFlat.rb:11
2632
+ msgid "account_list"
2633
+ msgstr "Comptes"
2634
+
2635
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :delete, :new
2636
+ #.
2637
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_button :edit, :delete, :new
2638
+ #.
2639
+ #. Comes from file Views/Compta/Users.rb and line is show_button :new
2640
+ #.
2641
+ #. Comes from file Views/Course/Responsible.rb and line is show_button :new, :delete, :save
2642
+ #.
2643
+ #. Comes from file Views/Internet/Access.rb and line is show_button :new, :delete
2644
+ #.
2645
+ #. Comes from file Views/Internet/ClassEdit.rb and line is show_button :new, :delete
2646
+ #.
2647
+ #. Comes from file Views/Internet/Recharges.rb and line is show_button :new, :delete
2648
+ #.
2649
+ #. Comes from file Views/Inventory/Computer.rb and line is show_button :new, :delete
2650
+ #.
2651
+ #. Comes from file Views/Inventory/Room.rb and line is show_button :new, :delete
2652
+ #.
2653
+ #. Comes from file Views/Network/Netdevs.rb and line is show_button :delete, :new
2654
+ #.
2655
+ #. Comes from file Views/Network/Share.rb and line is show_button :new, :delete
2656
+ #.
2657
+ #. Comes from file Views/Report/UsageCases.rb and line is show_button :delete, :new
2658
+ #.
2659
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_button :delete, :new
2660
+ #.
2661
+ #. Comes from file Views/Task/Client.rb and line is show_button :new, :save
2662
+ #.
2663
+ #. Comes from file Views/Task/Edit.rb and line is show_button :save, :new
2664
+ #.
2665
+ #. Comes from file Views/Task/Worker.rb and line is show_button :new, :save
2666
+ #.
2667
+ #. Comes from file Views/Template/Activity.rb and line is show_button :new, :delete
2668
+ #.
2669
+ #. Comes from file Views/Template/CourseType.rb and line is show_button :new, :delete
2670
+ #: ../Views/Compta/EditAccounts.rb:12
2671
+ #: ../Views/Compta/EditMovements.rb:16
2672
+ #: ../Views/Compta/Users.rb:11
2673
+ #: ../Views/Course/Responsible.rb:13
2674
+ #: ../Views/Internet/Access.rb:13
2675
+ #: ../Views/Internet/ClassEdit.rb:11
2676
+ #: ../Views/Internet/Recharges.rb:12
2677
+ #: ../Views/Inventory/Computer.rb:9
2678
+ #: ../Views/Inventory/Room.rb:9
2679
+ #: ../Views/Network/Netdevs.rb:13
2680
+ #: ../Views/Network/Share.rb:21
2681
+ #: ../Views/Report/UsageCases.rb:17
2682
+ #: ../Views/Special/PlugEdit.rb:12
2683
+ #: ../Views/Task/Client.rb:17
2684
+ #: ../Views/Task/Edit.rb:19
2685
+ #: ../Views/Task/Worker.rb:17
2686
+ #: ../Views/Template/Activity.rb:16
2687
+ #: ../Views/Template/CourseType.rb:17
2688
+ msgid "new"
2689
+ msgstr "Nouveau"
2690
+
2691
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_str :desc, :width => 300
2692
+ #.
2693
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_str :desc, :width => 300
2694
+ #.
2695
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_str :desc, :width => 300
2696
+ #: ../Views/Compta/EditAccounts.rb:16
2697
+ #: ../Views/Compta/EditMovements.rb:21
2698
+ #: ../Views/Report/ComptaFlat.rb:16
2699
+ msgid "desc"
2700
+ msgstr "Description"
2701
+
2702
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_int :total
2703
+ #.
2704
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_int :total
2705
+ #: ../Views/Compta/EditAccounts.rb:17
2706
+ #: ../Views/Report/ComptaFlat.rb:15
2707
+ msgid "total"
2708
+ msgstr "Total"
2709
+
2710
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :save, :account_update
2711
+ #.
2712
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_button :account_update, :report_movements
2713
+ #: ../Views/Compta/EditAccounts.rb:18
2714
+ #: ../Views/Report/ComptaFlat.rb:17
2715
+ msgid "account_update"
2716
+ msgstr "Mise à jour des totaux"
2717
+
2718
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_str :name_new, :width => 300
2719
+ #: ../Views/Compta/EditAccounts.rb:22
2720
+ msgid "name_new"
2721
+ msgstr "Nom"
2722
+
2723
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_str :desc_new
2724
+ #: ../Views/Compta/EditAccounts.rb:23
2725
+ msgid "desc_new"
2726
+ msgstr "Description"
2727
+
2728
+ #. Comes from file Views/Compta/EditAccounts.rb and line is show_button :add_account, :close
2729
+ #: ../Views/Compta/EditAccounts.rb:24
2730
+ msgid "add_account"
2731
+ msgstr "Ajouter"
2732
+
2733
+ #. Comes from file Views/Compta/EditMovements.rb and line is class ComptaEditMovements < View
2734
+ #: ../Views/Compta/EditMovements.rb:1
2735
+ msgid "ComptaEditMovements"
2736
+ msgstr "Movements"
2737
+
2738
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_entity_account :account_src, :drop,
2739
+ #: ../Views/Compta/EditMovements.rb:10
2740
+ msgid "account_src"
2741
+ msgstr "Compte départ"
2742
+
2743
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_table :movement_list, :headings => [:Date, :Description, :Account, :Sub, :Total],
2744
+ #: ../Views/Compta/EditMovements.rb:12
2745
+ msgid "movement_list"
2746
+ msgstr "Movements"
2747
+
2748
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_button :edit, :delete, :new
2749
+ #: ../Views/Compta/EditMovements.rb:16
2750
+ msgid "edit"
2751
+ msgstr "Modifier"
2752
+
2753
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_entity_account :account_dst, :drop, :width => 400
2754
+ #: ../Views/Compta/EditMovements.rb:20
2755
+ msgid "account_dst"
2756
+ msgstr "Compte destination"
2757
+
2758
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_int :value
2759
+ #: ../Views/Compta/EditMovements.rb:22
2760
+ msgid "value"
2761
+ msgstr "Montant"
2762
+
2763
+ #. Comes from file Views/Compta/EditMovements.rb and line is show_button :save, :new_mov, :close
2764
+ #: ../Views/Compta/EditMovements.rb:24
2765
+ msgid "new_mov"
2766
+ msgstr "Nouveau"
2767
+
2768
+ #. Comes from file Views/Compta/Show.rb and line is class ComptaShow < View
2769
+ #: ../Views/Compta/Show.rb:1
2770
+ msgid "ComptaShow"
2771
+ msgstr "Comptabilité"
2772
+
2773
+ #. Comes from file Views/Compta/Tabs.rb and line is class ComptaTabs < View
2774
+ #: ../Views/Compta/Tabs.rb:4
2775
+ msgid "ComptaTabs"
2776
+ msgstr "Comptabilité"
2777
+
2778
+ #. Comes from file Views/Compta/Transfer.rb and line is class ComptaTransfer < View
2779
+ #: ../Views/Compta/Transfer.rb:4
2780
+ msgid "ComptaTransfer"
2781
+ msgstr "Transfert"
2782
+
2783
+ #. Comes from file Views/Compta/Transfer.rb and line is show_entity_person :persons, :single, :callback => true
2784
+ #.
2785
+ #. Comes from file Views/Course/Responsible.rb and line is vtlp_list :persons, 'login_name', 'listp_responsible'
2786
+ #.
2787
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_entity_person :persons, :single, :login_name, callback: true
2788
+ #.
2789
+ #. Comes from file Views/Person/Tabs.rb and line is show_list_single :persons, '[]', :flexheight => 1, :callback => true
2790
+ #: ../Views/Compta/Transfer.rb:15
2791
+ #: ../Views/Course/Responsible.rb:12
2792
+ #: ../Views/Internet/ClassUsers.rb:16
2793
+ #: ../Views/Person/Tabs.rb:9
2794
+ msgid "persons"
2795
+ msgstr "Personnes"
2796
+
2797
+ #. Comes from file Views/Compta/Transfer.rb and line is show_date :upto
2798
+ #: ../Views/Compta/Transfer.rb:16
2799
+ msgid "upto"
2800
+ msgstr "Date limite"
2801
+
2802
+ #. Comes from file Views/Compta/Transfer.rb and line is show_button :do_transfer, :update
2803
+ #.
2804
+ #. Comes from file Views/Course/Modify.rb and line is show_button :do_transfer, :close
2805
+ #: ../Views/Compta/Transfer.rb:17
2806
+ #: ../Views/Course/Modify.rb:69
2807
+ msgid "do_transfer"
2808
+ msgstr "Effectuer transfert"
2809
+
2810
+ #. Comes from file Views/Compta/Users.rb and line is class ComptaUsers < View
2811
+ #: ../Views/Compta/Users.rb:1
2812
+ msgid "ComptaUsers"
2813
+ msgstr "Utilisateurs"
2814
+
2815
+ #. Comes from file Views/Compta/Users.rb and line is vtlp_list :users_list, 'name', :width => 150, :maxheight => 250
2816
+ #: ../Views/Compta/Users.rb:10
2817
+ msgid "users_list"
2818
+ msgstr "Utilisateurs"
2819
+
2820
+ #. Comes from file Views/Compta/Users.rb and line is show_str :full
2821
+ #: ../Views/Compta/Users.rb:15
2822
+ msgid "full"
2823
+ msgstr "Nom complet"
2824
+
2825
+ #. Comes from file Views/Compta/Users.rb and line is show_str :pass
2826
+ #: ../Views/Compta/Users.rb:16
2827
+ msgid "pass"
2828
+ msgstr "Mot de passe"
2829
+
2830
+ #. Comes from file Views/Compta/Users.rb and line is show_int :account_index
2831
+ #: ../Views/Compta/Users.rb:17
2832
+ msgid "account_index"
2833
+ msgstr "Index de compte"
2834
+
2835
+ #. Comes from file Views/Compta/Users.rb and line is show_int :movement_index
2836
+ #: ../Views/Compta/Users.rb:18
2837
+ msgid "movement_index"
2838
+ msgstr "Index movements"
2839
+
2840
+ #. Comes from file Views/Course/Diploma.rb and line is class CourseDiploma < View
2841
+ #: ../Views/Course/Diploma.rb:7
2842
+ msgid "CourseDiploma"
2843
+ msgstr "Attestations"
2844
+
2845
+ #. Comes from file Views/Course/Diploma.rb and line is show_table :diplomas_t, :headings => [:Name, :Grade, :State, :PDF],
2846
+ #: ../Views/Course/Diploma.rb:17
2847
+ msgid "diplomas_t"
2848
+ msgstr "Attestations"
2849
+
2850
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :do_diplomas, :abort
2851
+ #: ../Views/Course/Diploma.rb:24
2852
+ msgid "do_diplomas"
2853
+ msgstr "Créer attestations"
2854
+
2855
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :do_diplomas, :abort
2856
+ #: ../Views/Course/Diploma.rb:24
2857
+ msgid "abort"
2858
+ msgstr "Annuler"
2859
+
2860
+ #. Comes from file Views/Course/Diploma.rb and line is show_html :missing
2861
+ #.
2862
+ #. Comes from file Views/Course/Modify.rb and line is show_html :missing
2863
+ #.
2864
+ #. Comes from file Views/Course/Print.rb and line is show_html :missing
2865
+ #: ../Views/Course/Diploma.rb:29
2866
+ #: ../Views/Course/Modify.rb:59
2867
+ #: ../Views/Course/Print.rb:17
2868
+ msgid "missing"
2869
+ msgstr "Manquant"
2870
+
2871
+ #. Comes from file Views/Course/Grade.rb and line is class CourseGrade < View
2872
+ #: ../Views/Course/Grade.rb:5
2873
+ msgid "CourseGrade"
2874
+ msgstr "Noter"
2875
+
2876
+ #. Comes from file Views/Course/Grade.rb and line is show_str_ro :last_synched
2877
+ #: ../Views/Course/Grade.rb:19
2878
+ msgid "last_synched"
2879
+ msgstr "Dernières synchronisation"
2880
+
2881
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
2882
+ #: ../Views/Course/Grade.rb:20
2883
+ msgid "transfer_files"
2884
+ msgstr "Multi-transfert"
2885
+
2886
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
2887
+ #: ../Views/Course/Grade.rb:20
2888
+ msgid "sync_server"
2889
+ msgstr "Synchronisation serveur"
2890
+
2891
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
2892
+ #: ../Views/Course/Grade.rb:20
2893
+ msgid "fetch_files"
2894
+ msgstr "Transfert partage"
2895
+
2896
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
2897
+ #: ../Views/Course/Grade.rb:20
2898
+ msgid "prepare_files"
2899
+ msgstr "Préparation partage"
2900
+
2901
+ #. Comes from file Views/Course/Grade.rb and line is show_int_ro :files_saved
2902
+ #: ../Views/Course/Grade.rb:27
2903
+ msgid "files_saved"
2904
+ msgstr "Fichiers enregistrés"
2905
+
2906
+ #. Comes from file Views/Course/Grade.rb and line is show_table :grades, :headings => %w(Label grade), :widths => [150, 50],
2907
+ #: ../Views/Course/Grade.rb:29
2908
+ msgid "grades"
2909
+ msgstr "Moyennes"
2910
+
2911
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_direct
2912
+ #: ../Views/Course/Grade.rb:34
2913
+ msgid "name_file_direct"
2914
+ msgstr "Fichier 1"
2915
+
2916
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_direct, :callback => true
2917
+ #: ../Views/Course/Grade.rb:35
2918
+ msgid "upload_direct"
2919
+ msgstr "Transfert #1"
2920
+
2921
+ #. Comes from file Views/Course/Grade.rb and line is show_button :save, :upload
2922
+ #: ../Views/Course/Grade.rb:36
2923
+ msgid "upload"
2924
+ msgstr "Transfert fichier"
2925
+
2926
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :files
2927
+ #: ../Views/Course/Grade.rb:41
2928
+ msgid "files"
2929
+ msgstr "Fichier ZIP"
2930
+
2931
+ #. Comes from file Views/Course/Grade.rb and line is show_html :synching
2932
+ #: ../Views/Course/Grade.rb:46
2933
+ msgid "synching"
2934
+ msgstr "Synchronisation"
2935
+
2936
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_1
2937
+ #: ../Views/Course/Grade.rb:51
2938
+ msgid "name_file_1"
2939
+ msgstr "Fichier 1"
2940
+
2941
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_1, :callback => true
2942
+ #: ../Views/Course/Grade.rb:52
2943
+ msgid "upload_file_1"
2944
+ msgstr "Transfert #1"
2945
+
2946
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_2
2947
+ #: ../Views/Course/Grade.rb:53
2948
+ msgid "name_file_2"
2949
+ msgstr "Fichier 2"
2950
+
2951
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_2, :callback => true
2952
+ #: ../Views/Course/Grade.rb:54
2953
+ msgid "upload_file_2"
2954
+ msgstr "Transfert #2"
2955
+
2956
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_3
2957
+ #: ../Views/Course/Grade.rb:55
2958
+ msgid "name_file_3"
2959
+ msgstr "Fichier 3"
2960
+
2961
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_3, :callback => true
2962
+ #: ../Views/Course/Grade.rb:56
2963
+ msgid "upload_file_3"
2964
+ msgstr "Transfert #3"
2965
+
2966
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_4
2967
+ #: ../Views/Course/Grade.rb:57
2968
+ msgid "name_file_4"
2969
+ msgstr "Fichier 4"
2970
+
2971
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_4, :callback => true
2972
+ #: ../Views/Course/Grade.rb:58
2973
+ msgid "upload_file_4"
2974
+ msgstr "Transfert #4"
2975
+
2976
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_5
2977
+ #: ../Views/Course/Grade.rb:59
2978
+ msgid "name_file_5"
2979
+ msgstr "Fichier 5"
2980
+
2981
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_5, :callback => true
2982
+ #: ../Views/Course/Grade.rb:60
2983
+ msgid "upload_file_5"
2984
+ msgstr "Transfert #5"
2985
+
2986
+ #. Comes from file Views/Course/Modify.rb and line is class CourseModify < View
2987
+ #: ../Views/Course/Modify.rb:15
2988
+ msgid "CourseModify"
2989
+ msgstr "Modifier"
2990
+
2991
+ #. Comes from file Views/Course/Modify.rb and line is show_button :edit_name
2992
+ #: ../Views/Course/Modify.rb:33
2993
+ msgid "edit_name"
2994
+ msgstr "Changer nom"
2995
+
2996
+ #. Comes from file Views/Course/Modify.rb and line is show_print :print_presence
2997
+ #.
2998
+ #. Comes from file Views/Course/Print.rb and line is show_print :print_presence
2999
+ #: ../Views/Course/Modify.rb:38
3000
+ #: ../Views/Course/Print.rb:13
3001
+ msgid "print_presence"
3002
+ msgstr "Imprimer fiche de présence sur "
3003
+
3004
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_add, :del_student, :edit_student,
3005
+ #: ../Views/Course/Modify.rb:42
3006
+ msgid "del_student"
3007
+ msgstr "Effacer"
3008
+
3009
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_add, :del_student, :edit_student,
3010
+ #: ../Views/Course/Modify.rb:42
3011
+ msgid "edit_student"
3012
+ msgstr "Modifier"
3013
+
3014
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_add, :del_student, :edit_student,
3015
+ #: ../Views/Course/Modify.rb:42
3016
+ msgid "bulk_add"
3017
+ msgstr "Ajouter étudiants"
3018
+
3019
+ #. Comes from file Views/Course/Modify.rb and line is show_print :print_student
3020
+ #.
3021
+ #. Comes from file Views/Person/Modify.rb and line is show_print :print_student
3022
+ #: ../Views/Course/Modify.rb:45
3023
+ #: ../Views/Person/Modify.rb:36
3024
+ msgid "print_student"
3025
+ msgstr "Carte d'étudiant sur "
3026
+
3027
+ #. Comes from file Views/Course/Modify.rb and line is show_text :names
3028
+ #: ../Views/Course/Modify.rb:49
3029
+ msgid "names"
3030
+ msgstr "Noms"
3031
+
3032
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_students, :close
3033
+ #: ../Views/Course/Modify.rb:50
3034
+ msgid "bulk_students"
3035
+ msgstr "Ajouter"
3036
+
3037
+ #. Comes from file Views/Course/Modify.rb and line is show_str :double_name
3038
+ #: ../Views/Course/Modify.rb:53
3039
+ msgid "double_name"
3040
+ msgstr "Doublure"
3041
+
3042
+ #. Comes from file Views/Course/Modify.rb and line is show_entity_person :double_proposition, :single, :full_name,
3043
+ #: ../Views/Course/Modify.rb:54
3044
+ msgid "double_proposition"
3045
+ msgstr "Proposition"
3046
+
3047
+ #. Comes from file Views/Course/Modify.rb and line is show_button :accept, :create_new, :cancel
3048
+ #: ../Views/Course/Modify.rb:56
3049
+ msgid "accept"
3050
+ msgstr "Prendre existant"
3051
+
3052
+ #. Comes from file Views/Course/Modify.rb and line is show_button :accept, :create_new, :cancel
3053
+ #: ../Views/Course/Modify.rb:56
3054
+ msgid "create_new"
3055
+ msgstr "Ajouter nouveau"
3056
+
3057
+ #. Comes from file Views/Course/Modify.rb and line is show_button :accept, :create_new, :cancel
3058
+ #: ../Views/Course/Modify.rb:56
3059
+ msgid "cancel"
3060
+ msgstr "Annuler"
3061
+
3062
+ #. Comes from file Views/Course/Modify.rb and line is show_entity_course :transfer_course, :drop, :name
3063
+ #: ../Views/Course/Modify.rb:68
3064
+ msgid "transfer_course"
3065
+ msgstr "Transfert"
3066
+
3067
+ #. Comes from file Views/Course/Modify.rb and line is show_entity_courseType :wen_ctype, :drop, :name
3068
+ #: ../Views/Course/Modify.rb:72
3069
+ msgid "wen_ctype"
3070
+ msgstr "Genre cours"
3071
+
3072
+ #. Comes from file Views/Course/Modify.rb and line is show_str :wen_name, :width => 200
3073
+ #: ../Views/Course/Modify.rb:73
3074
+ msgid "wen_name"
3075
+ msgstr "Nom affiché"
3076
+
3077
+ #. Comes from file Views/Course/Modify.rb and line is show_list_drop :wen_overwrite, '%w( no yes )'
3078
+ #: ../Views/Course/Modify.rb:74
3079
+ msgid "wen_overwrite"
3080
+ msgstr "Initialiser champs"
3081
+
3082
+ #. Comes from file Views/Course/Modify.rb and line is show_button :wen_save, :close
3083
+ #: ../Views/Course/Modify.rb:75
3084
+ msgid "wen_save"
3085
+ msgstr "Enregistrer"
3086
+
3087
+ #. Comes from file Views/Course/Print.rb and line is class CoursePrint < View
3088
+ #: ../Views/Course/Print.rb:3
3089
+ msgid "CoursePrint"
3090
+ msgstr "Impression"
3091
+
3092
+ #. Comes from file Views/Course/Print.rb and line is show_print :print_exam_file
3093
+ #: ../Views/Course/Print.rb:14
3094
+ msgid "print_exam_file"
3095
+ msgstr "Imprimer feuille d'examen"
3096
+
3097
+ #. Comes from file Views/Course/Responsible.rb and line is class CourseResponsible < View
3098
+ #: ../Views/Course/Responsible.rb:1
3099
+ msgid "CourseResponsible"
3100
+ msgstr "Responsable"
3101
+
3102
+ #. Comes from file Views/Course/Stats.rb and line is class CourseStats < View
3103
+ #: ../Views/Course/Stats.rb:1
3104
+ msgid "CourseStats"
3105
+ msgstr "Statistiques"
3106
+
3107
+ #. Comes from file Views/Course/Stats.rb and line is show_text :contacts, :flexheight => 1
3108
+ #: ../Views/Course/Stats.rb:16
3109
+ msgid "contacts"
3110
+ msgstr "Contacts"
3111
+
3112
+ #. Comes from file Views/Course/Stats.rb and line is show_button :save, :create_account
3113
+ #: ../Views/Course/Stats.rb:21
3114
+ msgid "create_account"
3115
+ msgstr "Attribuer nouveau compte"
3116
+
3117
+ #. Comes from file Views/Course/Students.rb and line is class CourseStudents < View
3118
+ #: ../Views/Course/Students.rb:5
3119
+ msgid "CourseStudents"
3120
+ msgstr "Etudiants"
3121
+
3122
+ #. Comes from file Views/Course/Tabs.rb and line is class CourseTabs < View
3123
+ #: ../Views/Course/Tabs.rb:1
3124
+ msgid "CourseTabs"
3125
+ msgstr "Cours"
3126
+
3127
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :search_txt
3128
+ #: ../Views/Course/Tabs.rb:8
3129
+ msgid "search_txt"
3130
+ msgstr "Recherche"
3131
+
3132
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :search, :delete, :add, :import
3133
+ #: ../Views/Course/Tabs.rb:11
3134
+ msgid "import"
3135
+ msgstr "Importer"
3136
+
3137
+ #. Comes from file Views/Course/Tabs.rb and line is show_html "<h1>You're not allowed to do that</h1>"
3138
+ #: ../Views/Course/Tabs.rb:15
3139
+ msgid " show_html \"<h1>You're not allowed to do that</h1>\""
3140
+ msgstr "Vous n'avez pas le droit de faire ça!"
3141
+
3142
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :ct_name
3143
+ #: ../Views/Course/Tabs.rb:22
3144
+ msgid "ct_name"
3145
+ msgstr "Identifiant genre cours"
3146
+
3147
+ #. Comes from file Views/Course/Tabs.rb and line is show_int :ct_duration
3148
+ #: ../Views/Course/Tabs.rb:23
3149
+ msgid "ct_duration"
3150
+ msgstr "Durée totale"
3151
+
3152
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :ct_desc
3153
+ #: ../Views/Course/Tabs.rb:24
3154
+ msgid "ct_desc"
3155
+ msgstr "Description"
3156
+
3157
+ #. Comes from file Views/Course/Tabs.rb and line is show_text :ct_contents
3158
+ #: ../Views/Course/Tabs.rb:25
3159
+ msgid "ct_contents"
3160
+ msgstr "Contenu"
3161
+
3162
+ #. Comes from file Views/Course/Tabs.rb and line is show_list_drop :ct_filename, 'CourseTypes.files'
3163
+ #: ../Views/Course/Tabs.rb:26
3164
+ msgid "ct_filename"
3165
+ msgstr "Nom du fichier"
3166
+
3167
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :new_room
3168
+ #: ../Views/Course/Tabs.rb:29
3169
+ msgid "new_room"
3170
+ msgstr "Salle de classe"
3171
+
3172
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :new_teacher
3173
+ #: ../Views/Course/Tabs.rb:30
3174
+ msgid "new_teacher"
3175
+ msgstr "Enseignant"
3176
+
3177
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :new_center
3178
+ #: ../Views/Course/Tabs.rb:31
3179
+ msgid "new_center"
3180
+ msgstr "Centre"
3181
+
3182
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :add_missing, :close
3183
+ #: ../Views/Course/Tabs.rb:33
3184
+ msgid "add_missing"
3185
+ msgstr "Ajouter données"
3186
+
3187
+ #. Comes from file Views/Course/Tabs.rb and line is show_entity_courseType_all :new_ctype, :drop, :name
3188
+ #: ../Views/Course/Tabs.rb:40
3189
+ msgid "new_ctype"
3190
+ msgstr "Genre cours"
3191
+
3192
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :name_date
3193
+ #: ../Views/Course/Tabs.rb:41
3194
+ msgid "name_date"
3195
+ msgstr "Identifiant date"
3196
+
3197
+ #. Comes from file Views/Course/Tabs.rb and line is show_entity_person :new_center_course, :drop, :full_name
3198
+ #: ../Views/Course/Tabs.rb:42
3199
+ msgid "new_center_course"
3200
+ msgstr "Centre"
3201
+
3202
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :new_course, :close
3203
+ #: ../Views/Course/Tabs.rb:43
3204
+ msgid "new_course"
3205
+ msgstr "Nouveau cours"
3206
+
3207
+ #. Comes from file Views/Course/Tabs.rb and line is show_html :confirm_delete_txt
3208
+ #: ../Views/Course/Tabs.rb:48
3209
+ msgid "confirm_delete_txt"
3210
+ msgstr "Confirmation"
3211
+
3212
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :confirm_delete, :close
3213
+ #.
3214
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :confirm_delete, :close
3215
+ #: ../Views/Course/Tabs.rb:49
3216
+ #: ../Views/Person/Tabs.rb:26
3217
+ msgid "confirm_delete"
3218
+ msgstr "Oui, effacer"
3219
+
3220
+ #. Comes from file Views/Internet/Access.rb and line is class InternetAccess < View
3221
+ #: ../Views/Internet/Access.rb:1
3222
+ msgid "InternetAccess"
3223
+ msgstr "Groupes"
3224
+
3225
+ #. Comes from file Views/Internet/Access.rb and line is show_list_single :access_times_view
3226
+ #: ../Views/Internet/Access.rb:20
3227
+ msgid "access_times_view"
3228
+ msgstr "Plages active"
3229
+
3230
+ #. Comes from file Views/Internet/Access.rb and line is show_button :save, :add_time, :delete_time
3231
+ #: ../Views/Internet/Access.rb:22
3232
+ msgid "delete_time"
3233
+ msgstr "Effacer plage"
3234
+
3235
+ #. Comes from file Views/Internet/Access.rb and line is show_button :save, :add_time, :delete_time
3236
+ #: ../Views/Internet/Access.rb:22
3237
+ msgid "add_time"
3238
+ msgstr "Ajouter plage"
3239
+
3240
+ #. Comes from file Views/Internet/Access.rb and line is show_list_single :members_view
3241
+ #: ../Views/Internet/Access.rb:25
3242
+ msgid "members_view"
3243
+ msgstr "Membres"
3244
+
3245
+ #. Comes from file Views/Internet/Access.rb and line is show_button :add_member, :delete_member
3246
+ #: ../Views/Internet/Access.rb:27
3247
+ msgid "delete_member"
3248
+ msgstr "Effacer membre"
3249
+
3250
+ #. Comes from file Views/Internet/Access.rb and line is show_button :add_member, :delete_member
3251
+ #: ../Views/Internet/Access.rb:27
3252
+ msgid "add_member"
3253
+ msgstr "Ajouter membre"
3254
+
3255
+ #. Comes from file Views/Internet/ClassEdit.rb and line is class InternetClassEdit < View
3256
+ #: ../Views/Internet/ClassEdit.rb:1
3257
+ msgid "InternetClassEdit"
3258
+ msgstr "Classes Modifier"
3259
+
3260
+ #. Comes from file Views/Internet/ClassEdit.rb and line is vtlp_list :classes, :name
3261
+ #: ../Views/Internet/ClassEdit.rb:10
3262
+ msgid "classes"
3263
+ msgstr "Internet"
3264
+
3265
+ #. Comes from file Views/Internet/ClassUsers.rb and line is class InternetClassUsers < View
3266
+ #: ../Views/Internet/ClassUsers.rb:8
3267
+ msgid "InternetClassUsers"
3268
+ msgstr "Classes Utilisateurs"
3269
+
3270
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_str :search_str
3271
+ #: ../Views/Internet/ClassUsers.rb:15
3272
+ msgid "search_str"
3273
+ msgstr "Recherche"
3274
+
3275
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_button :search #, :add
3276
+ #: ../Views/Internet/ClassUsers.rb:17
3277
+ msgid "search #"
3278
+ msgstr "Chercher"
3279
+
3280
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_str :add_full_name
3281
+ #: ../Views/Internet/ClassUsers.rb:27
3282
+ msgid "add_full_name"
3283
+ msgstr "Nom complet"
3284
+
3285
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_str :add_login_name
3286
+ #: ../Views/Internet/ClassUsers.rb:28
3287
+ msgid "add_login_name"
3288
+ msgstr "Login"
3289
+
3290
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_entity_internetClass_empty_all :add_iclass, :drop, :name
3291
+ #: ../Views/Internet/ClassUsers.rb:29
3292
+ msgid "add_iclass"
3293
+ msgstr "Ajouter"
3294
+
3295
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_date :add_date
3296
+ #: ../Views/Internet/ClassUsers.rb:30
3297
+ msgid "add_date"
3298
+ msgstr "Date"
3299
+
3300
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_int :add_duration
3301
+ #: ../Views/Internet/ClassUsers.rb:31
3302
+ msgid "add_duration"
3303
+ msgstr "Durée"
3304
+
3305
+ #. Comes from file Views/Internet/ClassUsers.rb and line is show_button :add_user
3306
+ #: ../Views/Internet/ClassUsers.rb:32
3307
+ msgid "add_user"
3308
+ msgstr "Ajouter"
3309
+
3310
+ #. Comes from file Views/Internet/Config.rb and line is class InternetConfig < View
3311
+ #: ../Views/Internet/Config.rb:1
3312
+ msgid "InternetConfig"
3313
+ msgstr "Configuration"
3314
+
3315
+ #. Comes from file Views/Internet/Config.rb and line is show_button :save_costs
3316
+ #.
3317
+ #. Comes from file Views/Network/Tables.rb and line is show_button :save_costs
3318
+ #: ../Views/Internet/Config.rb:20
3319
+ #: ../Views/Network/Tables.rb:12
3320
+ msgid "save_costs"
3321
+ msgstr "Enregistrer"
3322
+
3323
+ #. Comes from file Views/Internet/Mobile.rb and line is class InternetMobile < View
3324
+ #: ../Views/Internet/Mobile.rb:4
3325
+ msgid "InternetMobile"
3326
+ msgstr "Mobile"
3327
+
3328
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str_ro :operator
3329
+ #.
3330
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_int_ro :operator
3331
+ #: ../Views/Internet/Mobile.rb:24
3332
+ #: ../Views/Special/PlugEdit.rb:21
3333
+ msgid "operator"
3334
+ msgstr "Operateur"
3335
+
3336
+ #. Comes from file Views/Internet/Mobile.rb and line is show_int_ro :promotion
3337
+ #: ../Views/Internet/Mobile.rb:26
3338
+ msgid "promotion"
3339
+ msgstr "Promotion restante"
3340
+
3341
+ #. Comes from file Views/Internet/Mobile.rb and line is show_int_ro :promotion_left
3342
+ #: ../Views/Internet/Mobile.rb:27
3343
+ msgid "promotion_left"
3344
+ msgstr "Promotion du jour"
3345
+
3346
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str_ro :state_now
3347
+ #: ../Views/Internet/Mobile.rb:28
3348
+ msgid "state_now"
3349
+ msgstr "État actuel"
3350
+
3351
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str_ro :state_goal
3352
+ #: ../Views/Internet/Mobile.rb:29
3353
+ msgid "state_goal"
3354
+ msgstr "État désiré"
3355
+
3356
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str_ro :emails
3357
+ #: ../Views/Internet/Mobile.rb:30
3358
+ msgid "emails"
3359
+ msgstr "Courriel sortant"
3360
+
3361
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str_ro :vpn
3362
+ #: ../Views/Internet/Mobile.rb:31
3363
+ msgid "vpn"
3364
+ msgstr "État VPN"
3365
+
3366
+ #. Comes from file Views/Internet/Mobile.rb and line is show_list_drop :umts_connection, 'View.InternetMobile.umts_connection',
3367
+ #: ../Views/Internet/Mobile.rb:32
3368
+ msgid "umts_connection"
3369
+ msgstr "Capacité connexion"
3370
+
3371
+ #. Comes from file Views/Internet/Mobile.rb and line is show_button :connect, :disconnect, :reload
3372
+ #.
3373
+ #. Comes from file Views/Self/Internet.rb and line is show_button :connect, :disconnect
3374
+ #: ../Views/Internet/Mobile.rb:34
3375
+ #: ../Views/Self/Internet.rb:22
3376
+ msgid "disconnect"
3377
+ msgstr "Déconnecter"
3378
+
3379
+ #. Comes from file Views/Internet/Mobile.rb and line is show_button :connect, :disconnect, :reload
3380
+ #: ../Views/Internet/Mobile.rb:34
3381
+ msgid "reload"
3382
+ msgstr "Actualiser"
3383
+
3384
+ #. Comes from file Views/Internet/Mobile.rb and line is show_button :connect, :disconnect, :reload
3385
+ #.
3386
+ #. Comes from file Views/Self/Internet.rb and line is show_button :connect, :disconnect
3387
+ #: ../Views/Internet/Mobile.rb:34
3388
+ #: ../Views/Self/Internet.rb:22
3389
+ msgid "connect"
3390
+ msgstr "Faire la connexion"
3391
+
3392
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str :sms_number
3393
+ #: ../Views/Internet/Mobile.rb:37
3394
+ msgid "sms_number"
3395
+ msgstr "Numéro"
3396
+
3397
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str :sms_text
3398
+ #: ../Views/Internet/Mobile.rb:38
3399
+ msgid "sms_text"
3400
+ msgstr "Texte"
3401
+
3402
+ #. Comes from file Views/Internet/Mobile.rb and line is show_button :send_sms
3403
+ #: ../Views/Internet/Mobile.rb:39
3404
+ msgid "send_sms"
3405
+ msgstr "Envoyer"
3406
+
3407
+ #. Comes from file Views/Internet/Mobile.rb and line is show_str :ussd
3408
+ #: ../Views/Internet/Mobile.rb:42
3409
+ msgid "ussd"
3410
+ msgstr "USSD"
3411
+
3412
+ #. Comes from file Views/Internet/Mobile.rb and line is show_button :send_ussd, :add_credit
3413
+ #: ../Views/Internet/Mobile.rb:43
3414
+ msgid "send_ussd"
3415
+ msgstr "Envoyer"
3416
+
3417
+ #. Comes from file Views/Internet/Mobile.rb and line is show_split_button :recharge, []
3418
+ #.
3419
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_button :recharge, :charge, :cmd
3420
+ #: ../Views/Internet/Mobile.rb:44
3421
+ #: ../Views/Special/PlugEdit.rb:25
3422
+ msgid "recharge"
3423
+ msgstr "Recharger"
3424
+
3425
+ #. Comes from file Views/Internet/Mobile.rb and line is show_text :sms_received, :flexheight => 1
3426
+ #: ../Views/Internet/Mobile.rb:48
3427
+ msgid "sms_received"
3428
+ msgstr "SMS reçus"
3429
+
3430
+ #. Comes from file Views/Internet/Mobile.rb and line is show_text :ussd_received, :flexheight => 1
3431
+ #: ../Views/Internet/Mobile.rb:49
3432
+ msgid "ussd_received"
3433
+ msgstr "USSD reçus"
3434
+
3435
+ #. Comes from file Views/Internet/Recharges.rb and line is class InternetRecharges < View
3436
+ #: ../Views/Internet/Recharges.rb:1
3437
+ msgid "InternetRecharges"
3438
+ msgstr "Recharges"
3439
+
3440
+ #. Comes from file Views/Internet/Recharges.rb and line is show_entity_recharge_all :recharges, :single, :time,
3441
+ #: ../Views/Internet/Recharges.rb:10
3442
+ msgid "recharges"
3443
+ msgstr "Recharges"
3444
+
3445
+ #. Comes from file Views/Internet/Tabs.rb and line is class InternetTabs < View
3446
+ #: ../Views/Internet/Tabs.rb:1
3447
+ msgid "InternetTabs"
3448
+ msgstr "Internet"
3449
+
3450
+ #. Comes from file Views/Inventory/Computer.rb and line is class InventoryComputer < View
3451
+ #: ../Views/Inventory/Computer.rb:1
3452
+ msgid "InventoryComputer"
3453
+ msgstr "Ordinateurs"
3454
+
3455
+ #. Comes from file Views/Inventory/Computer.rb and line is vtlp_list :computer_list, 'name_service', :width => 100
3456
+ #: ../Views/Inventory/Computer.rb:8
3457
+ msgid "computer_list"
3458
+ msgstr "ID interne"
3459
+
3460
+ #. Comes from file Views/Inventory/Room.rb and line is class InventoryRoom < View
3461
+ #: ../Views/Inventory/Room.rb:1
3462
+ msgid "InventoryRoom"
3463
+ msgstr "Salles"
3464
+
3465
+ #. Comes from file Views/Inventory/Room.rb and line is vtlp_list :rooms, 'name'
3466
+ #: ../Views/Inventory/Room.rb:8
3467
+ msgid "rooms"
3468
+ msgstr "Salle de classe"
3469
+
3470
+ #. Comes from file Views/Inventory/Tabs.rb and line is class InventoryTabs < View
3471
+ #: ../Views/Inventory/Tabs.rb:1
3472
+ msgid "InventoryTabs"
3473
+ msgstr "Inventaire"
3474
+
3475
+ #. Comes from file Views/Inventory/TicketClosed.rb and line is class InventoryTicketClosed < View
3476
+ #: ../Views/Inventory/TicketClosed.rb:1
3477
+ msgid "InventoryTicketClosed"
3478
+ msgstr "Ticets fermés"
3479
+
3480
+ #. Comes from file Views/Inventory/TicketOpen.rb and line is class InventoryTicketOpen < View
3481
+ #: ../Views/Inventory/TicketOpen.rb:1
3482
+ msgid "InventoryTicketOpen"
3483
+ msgstr "Tickets ouverts"
3484
+
3485
+ #. Comes from file Views/Library/Person.rb and line is class LibraryPerson < View
3486
+ #: ../Views/Library/Person.rb:1
3487
+ msgid "LibraryPerson"
3488
+ msgstr "Bibliothèque"
3489
+
3490
+ #. Comes from file Views/Library/Person.rb and line is show_entity_person :users, :single, :to_list_id,
3491
+ #.
3492
+ #. Comes from file Views/Network/Share.rb and line is show_list_single :users, :width => 200
3493
+ #: ../Views/Library/Person.rb:8
3494
+ #: ../Views/Network/Share.rb:28
3495
+ msgid "users"
3496
+ msgstr "Utilisateurs"
3497
+
3498
+ #. Comes from file Views/Library/Tabs.rb and line is class LibraryTabs < View
3499
+ #: ../Views/Library/Tabs.rb:1
3500
+ msgid "LibraryTabs"
3501
+ msgstr "Bibliothèque"
3502
+
3503
+ #. Comes from file Views/Network/Block.rb and line is class NetworkBlock < View
3504
+ #: ../Views/Network/Block.rb:1
3505
+ msgid "NetworkBlock"
3506
+ msgstr "Bloquer"
3507
+
3508
+ #. Comes from file Views/Network/Block.rb and line is show_text :hosts, flexheight: 1
3509
+ #: ../Views/Network/Block.rb:14
3510
+ msgid "hosts"
3511
+ msgstr "Noms d'hôtes"
3512
+
3513
+ #. Comes from file Views/Network/Block.rb and line is show_list :blocked, 'View.NetworkBlock.list_dhcp', :width => 400
3514
+ #: ../Views/Network/Block.rb:16
3515
+ msgid "blocked"
3516
+ msgstr "Bloqué"
3517
+
3518
+ #. Comes from file Views/Network/Block.rb and line is show_button :block
3519
+ #: ../Views/Network/Block.rb:17
3520
+ msgid "block"
3521
+ msgstr "Bloquer"
3522
+
3523
+ #. Comes from file Views/Network/Netdevs.rb and line is class NetworkNetdevs < View
3524
+ #: ../Views/Network/Netdevs.rb:1
3525
+ msgid "NetworkNetdevs"
3526
+ msgstr "Sous-réseaux"
3527
+
3528
+ #. Comes from file Views/Network/Netdevs.rb and line is vtlp_list :netdevs, :name
3529
+ #: ../Views/Network/Netdevs.rb:12
3530
+ msgid "netdevs"
3531
+ msgstr "Réseaux"
3532
+
3533
+ #. Comes from file Views/Network/Restriction.rb and line is class NetworkRestriction < View
3534
+ #: ../Views/Network/Restriction.rb:1
3535
+ msgid "NetworkRestriction"
3536
+ msgstr "Bloquages"
3537
+
3538
+ #. Comes from file Views/Network/Restriction.rb and line is show_html :state
3539
+ #: ../Views/Network/Restriction.rb:10
3540
+ msgid "state"
3541
+ msgstr "État"
3542
+
3543
+ #. Comes from file Views/Network/Restriction.rb and line is show_button :remove_restriction, :restrict_info1, :restrict_info2
3544
+ #: ../Views/Network/Restriction.rb:11
3545
+ msgid "remove_restriction"
3546
+ msgstr "Enlever bloquage"
3547
+
3548
+ #. Comes from file Views/Network/Restriction.rb and line is show_button :remove_restriction, :restrict_info1, :restrict_info2
3549
+ #: ../Views/Network/Restriction.rb:11
3550
+ msgid "restrict_info1"
3551
+ msgstr "Bloquer sur info1"
3552
+
3553
+ #. Comes from file Views/Network/Restriction.rb and line is show_button :remove_restriction, :restrict_info1, :restrict_info2
3554
+ #: ../Views/Network/Restriction.rb:11
3555
+ msgid "restrict_info2"
3556
+ msgstr "Bloquer sur info2"
3557
+
3558
+ #. Comes from file Views/Network/Share.rb and line is class NetworkShare < View
3559
+ #: ../Views/Network/Share.rb:1
3560
+ msgid "NetworkShare"
3561
+ msgstr "Partage"
3562
+
3563
+ #. Comes from file Views/Network/Share.rb and line is vtlp_list :shares, :name
3564
+ #: ../Views/Network/Share.rb:20
3565
+ msgid "shares"
3566
+ msgstr "Partages"
3567
+
3568
+ #. Comes from file Views/Network/Share.rb and line is show_button :share_save, :change_path, :add_htaccess
3569
+ #: ../Views/Network/Share.rb:25
3570
+ msgid "change_path"
3571
+ msgstr "Changer chemin"
3572
+
3573
+ #. Comes from file Views/Network/Share.rb and line is show_button :share_save, :change_path, :add_htaccess
3574
+ #: ../Views/Network/Share.rb:25
3575
+ msgid "add_htaccess"
3576
+ msgstr "Créer .htaccess"
3577
+
3578
+ #. Comes from file Views/Network/Share.rb and line is show_button :share_save, :change_path, :add_htaccess
3579
+ #: ../Views/Network/Share.rb:25
3580
+ msgid "share_save"
3581
+ msgstr "Enregistrer"
3582
+
3583
+ #. Comes from file Views/Network/Share.rb and line is show_button :no_access, :read_write, :read_only
3584
+ #: ../Views/Network/Share.rb:29
3585
+ msgid "read_only"
3586
+ msgstr "seulement lire"
3587
+
3588
+ #. Comes from file Views/Network/Share.rb and line is show_button :no_access, :read_write, :read_only
3589
+ #: ../Views/Network/Share.rb:29
3590
+ msgid "read_write"
3591
+ msgstr "lire et écrire"
3592
+
3593
+ #. Comes from file Views/Network/Share.rb and line is show_button :no_access, :read_write, :read_only
3594
+ #: ../Views/Network/Share.rb:29
3595
+ msgid "no_access"
3596
+ msgstr "Pas d'accès"
3597
+
3598
+ #. Comes from file Views/Network/Share.rb and line is show_str :domain, :width => 200
3599
+ #: ../Views/Network/Share.rb:34
3600
+ msgid "domain"
3601
+ msgstr "Domaine"
3602
+
3603
+ #. Comes from file Views/Network/Share.rb and line is show_str :hostname
3604
+ #: ../Views/Network/Share.rb:35
3605
+ msgid "hostname"
3606
+ msgstr "Nom d'hôte"
3607
+
3608
+ #. Comes from file Views/Network/Share.rb and line is show_button :samba_save
3609
+ #: ../Views/Network/Share.rb:36
3610
+ msgid "samba_save"
3611
+ msgstr "Enregistrer"
3612
+
3613
+ #. Comes from file Views/Network/Share.rb and line is show_html :msg_txt
3614
+ #: ../Views/Network/Share.rb:43
3615
+ msgid "msg_txt"
3616
+ msgstr "Texte"
3617
+
3618
+ #. Comes from file Views/Network/Tables.rb and line is class NetworkTables < View
3619
+ #: ../Views/Network/Tables.rb:1
3620
+ msgid "NetworkTables"
3621
+ msgstr "Netfilter"
3622
+
3623
+ #. Comes from file Views/Network/Tabs.rb and line is class NetworkTabs < View
3624
+ #: ../Views/Network/Tabs.rb:1
3625
+ msgid "NetworkTabs"
3626
+ msgstr "Réseau"
3627
+
3628
+ #. Comes from file Views/Person/Admin.rb and line is class PersonAdmin < View
3629
+ #: ../Views/Person/Admin.rb:3
3630
+ msgid "PersonAdmin"
3631
+ msgstr "Admin"
3632
+
3633
+ #. Comes from file Views/Person/Admin.rb and line is show_html :err_html
3634
+ #: ../Views/Person/Admin.rb:30
3635
+ msgid "err_html"
3636
+ msgstr "Erreur"
3637
+
3638
+ #. Comes from file Views/Person/Admin.rb and line is show_entity_person :centers, :drop, :full_name, :width => 200
3639
+ #: ../Views/Person/Admin.rb:31
3640
+ msgid "centers"
3641
+ msgstr "Centre"
3642
+
3643
+ #. Comes from file Views/Person/Admin.rb and line is show_button :chose
3644
+ #: ../Views/Person/Admin.rb:32
3645
+ msgid "chose"
3646
+ msgstr "Activer"
3647
+
3648
+ #. Comes from file Views/Person/Center.rb and line is class PersonCenter < View
3649
+ #: ../Views/Person/Center.rb:3
3650
+ msgid "PersonCenter"
3651
+ msgstr "Droits"
3652
+
3653
+ #. Comes from file Views/Person/Course.rb and line is class PersonCourse < View
3654
+ #: ../Views/Person/Course.rb:3
3655
+ msgid "PersonCourse"
3656
+ msgstr "Ajouter à un cours"
3657
+
3658
+ #. Comes from file Views/Person/Course.rb and line is show_list_single :courses_available, 'Entities.Courses.list_courses',
3659
+ #: ../Views/Person/Course.rb:17
3660
+ msgid "courses_available"
3661
+ msgstr "Cours disponibles"
3662
+
3663
+ #. Comes from file Views/Person/Course.rb and line is show_button :add_course, :close
3664
+ #: ../Views/Person/Course.rb:19
3665
+ msgid "add_course"
3666
+ msgstr "Ajouter au cours"
3667
+
3668
+ #. Comes from file Views/Person/Modify.rb and line is class PersonModify < View
3669
+ #: ../Views/Person/Modify.rb:3
3670
+ msgid "PersonModify"
3671
+ msgstr "Modifier"
3672
+
3673
+ #. Comes from file Views/Person/Modify.rb and line is show_str :new_password
3674
+ #.
3675
+ #. Comes from file Views/Self/Show.rb and line is show_str :new_password
3676
+ #: ../Views/Person/Modify.rb:24
3677
+ #: ../Views/Self/Show.rb:14
3678
+ msgid "new_password"
3679
+ msgstr "Nouveau mot de passe"
3680
+
3681
+ #. Comes from file Views/Person/Modify.rb and line is show_html :not_allowed
3682
+ #: ../Views/Person/Modify.rb:26
3683
+ msgid "not_allowed"
3684
+ msgstr "Pas de permission"
3685
+
3686
+ #. Comes from file Views/Person/Modify.rb and line is show_button :change_password
3687
+ #.
3688
+ #. Comes from file Views/Self/Show.rb and line is show_button :change_password
3689
+ #: ../Views/Person/Modify.rb:27
3690
+ #: ../Views/Self/Show.rb:15
3691
+ msgid "change_password"
3692
+ msgstr "Changer mot de passe"
3693
+
3694
+ #. Comes from file Views/Person/Modify.rb and line is show_button :next_page, :close
3695
+ #: ../Views/Person/Modify.rb:32
3696
+ msgid "next_page"
3697
+ msgstr "Prochaine page"
3698
+
3699
+ #. Comes from file Views/Person/Modify.rb and line is show_print :print_library
3700
+ #: ../Views/Person/Modify.rb:37
3701
+ msgid "print_library"
3702
+ msgstr "Imprimer carte bibliothèque sur"
3703
+
3704
+ #. Comes from file Views/Person/Modify.rb and line is show_print :print_responsible
3705
+ #: ../Views/Person/Modify.rb:38
3706
+ msgid "print_responsible"
3707
+ msgstr "Imprimer responsable sur"
3708
+
3709
+ #. Comes from file Views/Person/Tabs.rb and line is class PersonTabs < View
3710
+ #: ../Views/Person/Tabs.rb:1
3711
+ msgid "PersonTabs"
3712
+ msgstr "Personnes"
3713
+
3714
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :start_search, :delete, :add
3715
+ #: ../Views/Person/Tabs.rb:10
3716
+ msgid "start_search"
3717
+ msgstr "Chercher"
3718
+
3719
+ #. Comes from file Views/Person/Tabs.rb and line is show_str :complete_name, :width => 150
3720
+ #: ../Views/Person/Tabs.rb:13
3721
+ msgid "complete_name"
3722
+ msgstr "Nom complet"
3723
+
3724
+ #. Comes from file Views/Person/Tabs.rb and line is show_str :login_prop
3725
+ #: ../Views/Person/Tabs.rb:14
3726
+ msgid "login_prop"
3727
+ msgstr "Proposition"
3728
+
3729
+ #. Comes from file Views/Person/Tabs.rb and line is show_html :info
3730
+ #: ../Views/Person/Tabs.rb:20
3731
+ msgid "info"
3732
+ msgstr "info"
3733
+
3734
+ #. Comes from file Views/Person/Tabs.rb and line is show_html :delete_txt
3735
+ #: ../Views/Person/Tabs.rb:25
3736
+ msgid "delete_txt"
3737
+ msgstr "Effacer"
3738
+
3739
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is class ReportComptaExecutive < View
3740
+ #: ../Views/Report/ComptaExecutive.rb:1
3741
+ msgid "ReportComptaExecutive"
3742
+ msgstr "Consolidé"
3743
+
3744
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_entity_report_all :reports, :single, :name, :callback => true,
3745
+ #: ../Views/Report/ComptaExecutive.rb:12
3746
+ msgid "reports"
3747
+ msgstr "Rapport"
3748
+
3749
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :report_add, :report_delete
3750
+ #: ../Views/Report/ComptaExecutive.rb:14
3751
+ msgid "report_delete"
3752
+ msgstr "Effacer"
3753
+
3754
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :report_add, :report_delete
3755
+ #: ../Views/Report/ComptaExecutive.rb:14
3756
+ msgid "report_add"
3757
+ msgstr "Ajouter"
3758
+
3759
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_int :months
3760
+ #: ../Views/Report/ComptaExecutive.rb:18
3761
+ msgid "months"
3762
+ msgstr "Mois"
3763
+
3764
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_add, :account_del, :account_edit
3765
+ #: ../Views/Report/ComptaExecutive.rb:26
3766
+ msgid "account_edit"
3767
+ msgstr "Modifier"
3768
+
3769
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_add, :account_del, :account_edit
3770
+ #: ../Views/Report/ComptaExecutive.rb:26
3771
+ msgid "account_del"
3772
+ msgstr "Effacer"
3773
+
3774
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_add, :account_del, :account_edit
3775
+ #: ../Views/Report/ComptaExecutive.rb:26
3776
+ msgid "account_add"
3777
+ msgstr "Ajouter"
3778
+
3779
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_up, :account_down
3780
+ #: ../Views/Report/ComptaExecutive.rb:27
3781
+ msgid "account_up"
3782
+ msgstr "Monter"
3783
+
3784
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_up, :account_down
3785
+ #: ../Views/Report/ComptaExecutive.rb:27
3786
+ msgid "account_down"
3787
+ msgstr "Descendre"
3788
+
3789
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_add_win, :account_save_win, :close
3790
+ #: ../Views/Report/ComptaExecutive.rb:36
3791
+ msgid "account_add_win"
3792
+ msgstr "Ajouter"
3793
+
3794
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :account_add_win, :account_save_win, :close
3795
+ #: ../Views/Report/ComptaExecutive.rb:36
3796
+ msgid "account_save_win"
3797
+ msgstr "Enregistrer"
3798
+
3799
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_str :report_name
3800
+ #: ../Views/Report/ComptaExecutive.rb:41
3801
+ msgid "report_name"
3802
+ msgstr "Nom"
3803
+
3804
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :report_add_win, :close
3805
+ #: ../Views/Report/ComptaExecutive.rb:42
3806
+ msgid "report_add_win"
3807
+ msgstr "Ajouter"
3808
+
3809
+ #. Comes from file Views/Report/ComptaExecutive.rb and line is show_button :report_cancel
3810
+ #: ../Views/Report/ComptaExecutive.rb:47
3811
+ msgid "report_cancel"
3812
+ msgstr "Annuler"
3813
+
3814
+ #. Comes from file Views/Report/ComptaFlat.rb and line is class ReportComptaFlat < View
3815
+ #: ../Views/Report/ComptaFlat.rb:1
3816
+ msgid "ReportComptaFlat"
3817
+ msgstr "Complet"
3818
+
3819
+ #. Comes from file Views/Report/ComptaFlat.rb and line is show_button :account_update, :report_movements
3820
+ #: ../Views/Report/ComptaFlat.rb:17
3821
+ msgid "report_movements"
3822
+ msgstr "Créer rapport"
3823
+
3824
+ #. Comes from file Views/Report/ReportCourse.rb and line is class ReportCourse < View
3825
+ #: ../Views/Report/ReportCourse.rb:3
3826
+ msgid "ReportCourse"
3827
+ msgstr "Cours"
3828
+
3829
+ #. Comes from file Views/Report/Tabs.rb and line is class ReportTabs < View
3830
+ #: ../Views/Report/Tabs.rb:4
3831
+ msgid "ReportTabs"
3832
+ msgstr "Rapports"
3833
+
3834
+ #. Comes from file Views/Report/Usage.rb and line is class ReportUsage < View
3835
+ #: ../Views/Report/Usage.rb:1
3836
+ msgid "ReportUsage"
3837
+ msgstr "Utilisation"
3838
+
3839
+ #. Comes from file Views/Report/Usage.rb and line is show_entity_usage_all :usage, :single, :name, :callback => true
3840
+ #: ../Views/Report/Usage.rb:10
3841
+ msgid "usage"
3842
+ msgstr "Cas d'utilisation"
3843
+
3844
+ #. Comes from file Views/Report/Usage.rb and line is show_table :usage_report, :headings => [:Element, :Count],
3845
+ #: ../Views/Report/Usage.rb:14
3846
+ msgid "usage_report"
3847
+ msgstr "Rapport d'utilisation"
3848
+
3849
+ #. Comes from file Views/Report/Usage.rb and line is show_date :from
3850
+ #: ../Views/Report/Usage.rb:18
3851
+ msgid "from"
3852
+ msgstr "De"
3853
+
3854
+ #. Comes from file Views/Report/Usage.rb and line is show_date :to
3855
+ #: ../Views/Report/Usage.rb:19
3856
+ msgid "to"
3857
+ msgstr "À"
3858
+
3859
+ #. Comes from file Views/Report/UsageCases.rb and line is class ReportUsageCases < View
3860
+ #: ../Views/Report/UsageCases.rb:1
3861
+ msgid "ReportUsageCases"
3862
+ msgstr "Utilisation"
3863
+
3864
+ #. Comes from file Views/Report/UsageCases.rb and line is vtlp_list :usage_list, 'name'
3865
+ #: ../Views/Report/UsageCases.rb:14
3866
+ msgid "usage_list"
3867
+ msgstr "Cas d'utilisation"
3868
+
3869
+ #. Comes from file Views/Report/UsageCases.rb and line is show_list_drop :file_data, '%w(none)', :callback => :file_chosen
3870
+ #: ../Views/Report/UsageCases.rb:28
3871
+ msgid "file_data"
3872
+ msgstr "Fichier"
3873
+
3874
+ #. Comes from file Views/Report/UsageCases.rb and line is show_text :file_source, :flexwidth => 1, :flexheight => 1
3875
+ #: ../Views/Report/UsageCases.rb:29
3876
+ msgid "file_source"
3877
+ msgstr "Fichier"
3878
+
3879
+ #. Comes from file Views/Report/UsageCases.rb and line is show_text :file_filtered, :flexwidth => 1, :flexheight => 1
3880
+ #: ../Views/Report/UsageCases.rb:30
3881
+ msgid "file_filtered"
3882
+ msgstr "Après filtrage"
3883
+
3884
+ #. Comes from file Views/Self/Cash.rb and line is class SelfCash < View
3885
+ #: ../Views/Self/Cash.rb:1
3886
+ msgid "SelfCash"
3887
+ msgstr "Dépenses"
3888
+
3889
+ #. Comes from file Views/Self/Chat.rb and line is class SelfChat < View
3890
+ #: ../Views/Self/Chat.rb:4
3891
+ msgid "SelfChat"
3892
+ msgstr "Discuter"
3893
+
3894
+ #. Comes from file Views/Self/Chat.rb and line is show_html :replace
3895
+ #: ../Views/Self/Chat.rb:14
3896
+ msgid "replace"
3897
+ msgstr "Identification"
3898
+
3899
+ #. Comes from file Views/Self/Chat.rb and line is show_str :talk, :flexwidth => 1
3900
+ #: ../Views/Self/Chat.rb:16
3901
+ msgid "talk"
3902
+ msgstr "Parole"
3903
+
3904
+ #. Comes from file Views/Self/Chat.rb and line is show_button :send
3905
+ #: ../Views/Self/Chat.rb:17
3906
+ msgid "send"
3907
+ msgstr "Envoyer"
3908
+
3909
+ #. Comes from file Views/Self/Chat.rb and line is show_text :discussion, :flexheight => 1, :flexwidth => 1
3910
+ #: ../Views/Self/Chat.rb:20
3911
+ msgid "discussion"
3912
+ msgstr "Discussion"
3913
+
3914
+ #. Comes from file Views/Self/Concours.rb and line is class SelfConcours < View
3915
+ #: ../Views/Self/Concours.rb:1
3916
+ msgid "SelfConcours"
3917
+ msgstr "Quiz"
3918
+
3919
+ #. Comes from file Views/Self/Concours.rb and line is show_html :welcome
3920
+ #: ../Views/Self/Concours.rb:9
3921
+ msgid "welcome"
3922
+ msgstr "Bienvenue"
3923
+
3924
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q01_isoc_start, "%w( répondez 1980 1992 2000 )"
3925
+ #: ../Views/Self/Concours.rb:17
3926
+ msgid "q01_isoc_start"
3927
+ msgstr "Dans quelle année ISOC a démarré?"
3928
+
3929
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q02_isoc_chad_start, "%w( répondez 2000 2003 2007 )"
3930
+ #: ../Views/Self/Concours.rb:18
3931
+ msgid "q02_isoc_chad_start"
3932
+ msgstr "Dans quelle année ISOC-Chad a démarré?"
3933
+
3934
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q03_internet_sat, "%w( répondez vrai faux )"
3935
+ #: ../Views/Self/Concours.rb:19
3936
+ msgid "q03_internet_sat"
3937
+ msgstr ""
3938
+ "Est-ce qu'il faut absolument\n"
3939
+ "un satellite pour internet?"
3940
+
3941
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q04_internet_like, "%w( répondez route avion eau )"
3942
+ #: ../Views/Self/Concours.rb:20
3943
+ msgid "q04_internet_like"
3944
+ msgstr "Internet est comme ..."
3945
+
3946
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q05_internet_needs, "%w( répondez portable fai disque_dur )"
3947
+ #: ../Views/Self/Concours.rb:21
3948
+ msgid "q05_internet_needs"
3949
+ msgstr ""
3950
+ "Pour utiliser internet, \n"
3951
+ "il faut absolument"
3952
+
3953
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q06_fai_only_one, "%w( répondez vrai faux )"
3954
+ #: ../Views/Self/Concours.rb:22
3955
+ msgid "q06_fai_only_one"
3956
+ msgstr "Il y a seulement un FAI au Tchad"
3957
+
3958
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q07_price_free, "%w( répondez vrai faux )"
3959
+ #: ../Views/Self/Concours.rb:23
3960
+ msgid "q07_price_free"
3961
+ msgstr "L'accès è l'internet est gratuit"
3962
+
3963
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q08_email_generic, "%w( répondez courriel yahoo gmail )"
3964
+ #: ../Views/Self/Concours.rb:24
3965
+ msgid "q08_email_generic"
3966
+ msgstr "Quel est le nom généric de l'email"
3967
+
3968
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q09_service_surf, "%w( répondez ftp www e-mail )"
3969
+ #: ../Views/Self/Concours.rb:25
3970
+ msgid "q09_service_surf"
3971
+ msgstr "Comment s'appelle le service pour surfer?"
3972
+
3973
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q10_is_central, "%w( répondez vrai faux )"
3974
+ #: ../Views/Self/Concours.rb:26
3975
+ msgid "q10_is_central"
3976
+ msgstr "L'internet est centralisé"
3977
+
3978
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q11_internet_start, "%w( répondez recherche commercial )"
3979
+ #: ../Views/Self/Concours.rb:29
3980
+ msgid "q11_internet_start"
3981
+ msgstr "Où est-ce que l'internet a commencé"
3982
+
3983
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q12_what_standards, "%w( répondez ouvert payants )"
3984
+ #: ../Views/Self/Concours.rb:30
3985
+ msgid "q12_what_standards"
3986
+ msgstr "Quel genre de standards sont utilisés"
3987
+
3988
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q13_chapters_count, "%w( répondez 80 90 100 )"
3989
+ #: ../Views/Self/Concours.rb:31
3990
+ msgid "q13_chapters_count"
3991
+ msgstr "Combien de chapitres y a-t-il eu fin 2012"
3992
+
3993
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q14_isoc_members, "%w( répondez 57000 60000 55000 )"
3994
+ #: ../Views/Self/Concours.rb:32
3995
+ msgid "q14_isoc_members"
3996
+ msgstr "Combien de membres fin 2012 dans tout l'ISOC"
3997
+
3998
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q15_domain_names, "%w( répondez IANA IAB ICANN )"
3999
+ #: ../Views/Self/Concours.rb:33
4000
+ msgid "q15_domain_names"
4001
+ msgstr "Qui gère les noms de domaine"
4002
+
4003
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q16_gives_ips, "%w( répondez IANA IAB ICANN )"
4004
+ #: ../Views/Self/Concours.rb:34
4005
+ msgid "q16_gives_ips"
4006
+ msgstr "Qui attribue les adresses iPs publiques"
4007
+
4008
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q17_does_standards, "%w( répondez IANA IAB ICANN )"
4009
+ #: ../Views/Self/Concours.rb:35
4010
+ msgid "q17_does_standards"
4011
+ msgstr "Qui énumère les standards"
4012
+
4013
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q18_we_work_with, "%w( répondez NTIC NPIC IPNT )"
4014
+ #: ../Views/Self/Concours.rb:36
4015
+ msgid "q18_we_work_with"
4016
+ msgstr "Notre domaine, ce sont les"
4017
+
4018
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q19_website_chad, "%w( répondez isoc-tchad.org isoc-chad.org isoc.td )"
4019
+ #: ../Views/Self/Concours.rb:37
4020
+ msgid "q19_website_chad"
4021
+ msgstr "Le nom du site web de notre chapitre"
4022
+
4023
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q20_best_fai, "%w( répondez tigo airtel sotel prestabist tawali vsat )"
4024
+ #: ../Views/Self/Concours.rb:38
4025
+ msgid "q20_best_fai"
4026
+ msgstr "Qui est le meilleur FAI au Tchad"
4027
+
4028
+ #. Comes from file Views/Self/Concours.rb and line is show_button :send_replies
4029
+ #: ../Views/Self/Concours.rb:42
4030
+ msgid "send_replies"
4031
+ msgstr "Envoyer les réponses"
4032
+
4033
+ #. Comes from file Views/Self/Concours.rb and line is show_html :txt_error
4034
+ #: ../Views/Self/Concours.rb:45
4035
+ msgid "txt_error"
4036
+ msgstr "Erreur de réponse"
4037
+
4038
+ #. Comes from file Views/Self/Concours.rb and line is show_button :ok
4039
+ #: ../Views/Self/Concours.rb:46
4040
+ msgid "ok"
4041
+ msgstr "Terminé, merci pour la participation"
4042
+
4043
+ #. Comes from file Views/Self/Concours.rb and line is show_html :txt_finish
4044
+ #: ../Views/Self/Concours.rb:49
4045
+ msgid "txt_finish"
4046
+ msgstr "Maintenant vous pouvez attendre les résultats"
4047
+
4048
+ #. Comes from file Views/Self/Concours.rb and line is show_button :yes, :no
4049
+ #: ../Views/Self/Concours.rb:50
4050
+ msgid "yes"
4051
+ msgstr "Oui"
4052
+
4053
+ #. Comes from file Views/Self/Concours.rb and line is show_button :yes, :no
4054
+ #: ../Views/Self/Concours.rb:50
4055
+ msgid "no"
4056
+ msgstr "Non"
4057
+
4058
+ #. Comes from file Views/Self/Email.rb and line is class SelfEmail < View
4059
+ #: ../Views/Self/Email.rb:1
4060
+ msgid "SelfEmail"
4061
+ msgstr "Courriel"
4062
+
4063
+ #. Comes from file Views/Self/Internet.rb and line is class SelfInternet < View
4064
+ #: ../Views/Self/Internet.rb:1
4065
+ msgid "SelfInternet"
4066
+ msgstr "Internet"
4067
+
4068
+ #. Comes from file Views/Self/Internet.rb and line is show_html :connection_status
4069
+ #: ../Views/Self/Internet.rb:15
4070
+ msgid "connection_status"
4071
+ msgstr "État de connexion"
4072
+
4073
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :users_connected
4074
+ #: ../Views/Self/Internet.rb:17
4075
+ msgid "users_connected"
4076
+ msgstr "Utilisateurs connectés"
4077
+
4078
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :bytes_left
4079
+ #: ../Views/Self/Internet.rb:18
4080
+ msgid "bytes_left"
4081
+ msgstr "Octets restants"
4082
+
4083
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :bytes_left_today
4084
+ #: ../Views/Self/Internet.rb:19
4085
+ msgid "bytes_left_today"
4086
+ msgstr "Octets du jour restants"
4087
+
4088
+ #. Comes from file Views/Self/Internet.rb and line is show_html :connection, :width => 100
4089
+ #: ../Views/Self/Internet.rb:20
4090
+ msgid "connection"
4091
+ msgstr "FAI"
4092
+
4093
+ #. Comes from file Views/Self/Internet.rb and line is show_html :auto_connection
4094
+ #: ../Views/Self/Internet.rb:21
4095
+ msgid "auto_connection"
4096
+ msgstr "Connexion automatique"
4097
+
4098
+ #. Comes from file Views/Self/Internet.rb and line is show_table :traffic, headings: %w(Name Day-2 Day-1 Today),
4099
+ #: ../Views/Self/Internet.rb:25
4100
+ msgid "traffic"
4101
+ msgstr "Traffic"
4102
+
4103
+ #. Comes from file Views/Self/Internet.rb and line is show_button :disconnect_user
4104
+ #: ../Views/Self/Internet.rb:27
4105
+ msgid "disconnect_user"
4106
+ msgstr "Déconnecter"
4107
+
4108
+ #. Comes from file Views/Self/Results.rb and line is class SelfResults < View
4109
+ #: ../Views/Self/Results.rb:1
4110
+ msgid "SelfResults"
4111
+ msgstr "Résultats"
4112
+
4113
+ #. Comes from file Views/Self/Results.rb and line is show_list :results, 'Quizs.results', :flexheight => 1
4114
+ #: ../Views/Self/Results.rb:8
4115
+ msgid "results"
4116
+ msgstr "Scores"
4117
+
4118
+ #. Comes from file Views/Self/Services.rb and line is class SelfServices < View
4119
+ #: ../Views/Self/Services.rb:1
4120
+ msgid "SelfServices"
4121
+ msgstr "Services"
4122
+
4123
+ #. Comes from file Views/Self/Services.rb and line is show_int :copies_laser, :callback => :calc
4124
+ #: ../Views/Self/Services.rb:12
4125
+ msgid "copies_laser"
4126
+ msgstr "Copies laser"
4127
+
4128
+ #. Comes from file Views/Self/Show.rb and line is class SelfShow < View
4129
+ #: ../Views/Self/Show.rb:3
4130
+ msgid "SelfShow"
4131
+ msgstr "Adresse"
4132
+
4133
+ #. Comes from file Views/Self/Show.rb and line is show_button :logout
4134
+ #: ../Views/Self/Show.rb:17
4135
+ msgid "logout"
4136
+ msgstr "Logout"
4137
+
4138
+ #. Comes from file Views/Self/Tabs.rb and line is class SelfTabs < View
4139
+ #: ../Views/Self/Tabs.rb:1
4140
+ msgid "SelfTabs"
4141
+ msgstr "Mon compte"
4142
+
4143
+ #. Comes from file Views/Special/PlugEdit.rb and line is class SpecialPlug < View
4144
+ #: ../Views/Special/PlugEdit.rb:1
4145
+ msgid "SpecialPlug"
4146
+ msgstr "Plugs"
4147
+
4148
+ #. Comes from file Views/Special/PlugEdit.rb and line is vtlp_list :plugs, :center_name
4149
+ #: ../Views/Special/PlugEdit.rb:11
4150
+ msgid "plugs"
4151
+ msgstr "Embarqués"
4152
+
4153
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_text :stats, height: 300, width: 250
4154
+ #: ../Views/Special/PlugEdit.rb:20
4155
+ #, fuzzy
4156
+ msgid "stats"
4157
+ msgstr "État"
4158
+
4159
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_int_ro :credit_left
4160
+ #: ../Views/Special/PlugEdit.rb:22
4161
+ #, fuzzy
4162
+ msgid "credit_left"
4163
+ msgstr "Ajouter crédit"
4164
+
4165
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_int :recharge_credit
4166
+ #: ../Views/Special/PlugEdit.rb:23
4167
+ #, fuzzy
4168
+ msgid "recharge_credit"
4169
+ msgstr "Crédit internet"
4170
+
4171
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_str :cmd_str
4172
+ #: ../Views/Special/PlugEdit.rb:24
4173
+ msgid "cmd_str"
4174
+ msgstr "Commande"
4175
+
4176
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_button :recharge, :charge, :cmd
4177
+ #: ../Views/Special/PlugEdit.rb:25
4178
+ msgid "cmd"
4179
+ msgstr "Envoyer commande"
4180
+
4181
+ #. Comes from file Views/Special/PlugEdit.rb and line is show_button :recharge, :charge, :cmd
4182
+ #: ../Views/Special/PlugEdit.rb:25
4183
+ #, fuzzy
4184
+ msgid "charge"
4185
+ msgstr "Recharger"
4186
+
4187
+ #. Comes from file Views/Special/Tabs.rb and line is class SpecialTabs < View
4188
+ #: ../Views/Special/Tabs.rb:1
4189
+ msgid "SpecialTabs"
4190
+ msgstr "Spécial"
4191
+
4192
+ #. Comes from file Views/Special/Vnc.rb and line is class SpecialVNC < View
4193
+ #: ../Views/Special/Vnc.rb:1
4194
+ msgid "SpecialVNC"
4195
+ msgstr "VNC"
4196
+
4197
+ #. Comes from file Views/Special/Vnc.rb and line is show_button :start_x
4198
+ #: ../Views/Special/Vnc.rb:12
4199
+ msgid "start_x"
4200
+ msgstr "Démarrer X"
4201
+
4202
+ #. Comes from file Views/Task/Client.rb and line is class TaskClient < View
4203
+ #: ../Views/Task/Client.rb:1
4204
+ msgid "TaskClient"
4205
+ msgstr "Tâche client"
4206
+
4207
+ #. Comes from file Views/Task/Client.rb and line is vtlp_list :clients, 'name'
4208
+ #: ../Views/Task/Client.rb:9
4209
+ msgid "clients"
4210
+ msgstr "Contenu"
4211
+
4212
+ #. Comes from file Views/Task/Edit.rb and line is class TaskEdit < View
4213
+ #: ../Views/Task/Edit.rb:1
4214
+ msgid "TaskEdit"
4215
+ msgstr "Tâche modifier"
4216
+
4217
+ #. Comes from file Views/Task/Edit.rb and line is vtlp_list :tasks, "tasks"
4218
+ #: ../Views/Task/Edit.rb:10
4219
+ msgid "tasks"
4220
+ msgstr "Tâches"
4221
+
4222
+ #. Comes from file Views/Task/List.rb and line is class TaskList < View
4223
+ #: ../Views/Task/List.rb:1
4224
+ msgid "TaskList"
4225
+ msgstr "Liste tâches"
4226
+
4227
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :year, "View.TaskList.list_years"
4228
+ #: ../Views/Task/List.rb:9
4229
+ msgid "year"
4230
+ msgstr "Année"
4231
+
4232
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :month, "1.upto(12).to_a"
4233
+ #: ../Views/Task/List.rb:10
4234
+ msgid "month"
4235
+ msgstr "Mois"
4236
+
4237
+ #. Comes from file Views/Task/List.rb and line is show_button :list
4238
+ #: ../Views/Task/List.rb:13
4239
+ msgid "list"
4240
+ msgstr "Liste"
4241
+
4242
+ #. Comes from file Views/Task/List.rb and line is show_text :tasks_done
4243
+ #: ../Views/Task/List.rb:16
4244
+ msgid "tasks_done"
4245
+ msgstr "Tâches terminées"
4246
+
4247
+ #. Comes from file Views/Task/List.rb and line is show_text :summary
4248
+ #: ../Views/Task/List.rb:17
4249
+ msgid "summary"
4250
+ msgstr "Résumé"
4251
+
4252
+ #. Comes from file Views/Task/Tabs.rb and line is class TaskTabs < View
4253
+ #: ../Views/Task/Tabs.rb:1
4254
+ msgid "TaskTabs"
4255
+ msgstr "Tâches"
4256
+
4257
+ #. Comes from file Views/Task/Tabs.rb and line is show_button :new_task
4258
+ #: ../Views/Task/Tabs.rb:6
4259
+ msgid "new_task"
4260
+ msgstr "Nouvelle tâche"
4261
+
4262
+ #. Comes from file Views/Task/Worker.rb and line is class TaskWorker < View
4263
+ #: ../Views/Task/Worker.rb:1
4264
+ msgid "TaskWorker"
4265
+ msgstr "Travailleurs"
4266
+
4267
+ #. Comes from file Views/Task/Worker.rb and line is vtlp_list :workers, "login_name"
4268
+ #: ../Views/Task/Worker.rb:9
4269
+ msgid "workers"
4270
+ msgstr "Travailleurs"
4271
+
4272
+ #. Comes from file Views/Template/Activity.rb and line is class TemplateActivity < View
4273
+ #: ../Views/Template/Activity.rb:4
4274
+ msgid "TemplateActivity"
4275
+ msgstr "Activités"
4276
+
4277
+ #. Comes from file Views/Template/CourseType.rb and line is class TemplateCourseType < View
4278
+ #: ../Views/Template/CourseType.rb:4
4279
+ msgid "TemplateCourseType"
4280
+ msgstr "Cours"
4281
+
4282
+ #. Comes from file Views/Template/ScheduleType.rb and line is class TemplateScheduleType < View
4283
+ #: ../Views/Template/ScheduleType.rb:1
4284
+ msgid "TemplateScheduleType"
4285
+ msgstr "Horaires"
4286
+
4287
+ #. Comes from file Views/Template/ScheduleType.rb and line is show_html :choice, :flex => 1
4288
+ #: ../Views/Template/ScheduleType.rb:15
4289
+ msgid "choice"
4290
+ msgstr "Choix"
4291
+
4292
+ #. Comes from file Views/Template/ScheduleType.rb and line is show_button :save, :render
4293
+ #: ../Views/Template/ScheduleType.rb:16
4294
+ msgid "render"
4295
+ msgstr "Render"
4296
+
4297
+ #. Comes from file Views/Template/Tabs.rb and line is class TemplateTabs < View
4298
+ #: ../Views/Template/Tabs.rb:1
4299
+ msgid "TemplateTabs"
4300
+ msgstr "Modèles"
4301
+
4302
+ #. Comes from file Views/Welcome.rb and line is class Welcome < View
4303
+ #: ../Views/Welcome.rb:1
4304
+ msgid "Welcome"
4305
+ msgstr "Bienvenue"
4306
+
4307
+ #. Comes from file Views/Welcome.rb and line is show_str :username
4308
+ #: ../Views/Welcome.rb:3
4309
+ msgid "username"
4310
+ msgstr "Nom d'utilisateur"
4311
+
4312
+ #. Comes from file Views/Welcome.rb and line is show_str :version
4313
+ #: ../Views/Welcome.rb:4
4314
+ msgid "version"
4315
+ msgstr "Numéro de Version"
4316
+
4317
+ #. Comes from file Views/Welcome.rb and line is show_str :direct_connect
4318
+ #: ../Views/Welcome.rb:5
4319
+ msgid "direct_connect"
4320
+ msgstr "Connexion Internet"
4321
+
4322
+ #. Comes from file Views/Welcome.rb and line is show_str :simple_connect
4323
+ #: ../Views/Welcome.rb:6
4324
+ msgid "simple_connect"
4325
+ msgstr "Entrer"
4326
+
4327
+ #. Comes from file Entities/ConfigBase.rb and line is value_int :max_upload_size
4328
+ #~ msgid "max_upload_size"
4329
+ #~ msgstr "Upload max."
4330
+
4331
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :internet_cash
4332
+ #~ msgid "internet_cash"
4333
+ #~ msgstr "Compte Internet"
4334
+
4335
+ #. Comes from file Entities/ConfigBase.rb and line is value_str :network_actions
4336
+ #~ msgid "network_actions"
4337
+ #~ msgstr "Network-action-file"
4338
+
4339
+ #. Comes from file Views/Person/Activity.rb and line is class PersonActivity < View
4340
+ #~ msgid "PersonActivity"
4341
+ #~ msgstr "Activité"
4342
+
4343
+ #. Comes from file Views/Person/Activity.rb and line is show_print :add_act, :delete, :print_activity
4344
+ #~ msgid "add_act"
4345
+ #~ msgstr "Ajouter"