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-ar.po ADDED
@@ -0,0 +1,2356 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: PACKAGE VERSION\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2013-09-25 16:43+0100\n"
11
+ "PO-Revision-Date: 2013-09-29 08:27+0100\n"
12
+ "Last-Translator: Linus Gasser <ineiti@linusetviviane.ch>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "Language: \n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
19
+
20
+ #. Comes from file Entities/AccessGroups.rb and line is value_str :name
21
+ #.
22
+ #. Comes from file Entities/Classroom.rb and line is value_str :name
23
+ #.
24
+ #. Comes from file Entities/Client.rb and line is value_str :name
25
+ #.
26
+ #. Comes from file Entities/Course.rb and line is value_str :name
27
+ #.
28
+ #. Comes from file Entities/CourseType.rb and line is value_str :name
29
+ #.
30
+ #. Comes from file Entities/Room.rb and line is value_str :name
31
+ #.
32
+ #. Comes from file Entities/Service.rb and line is value_str :name
33
+ #.
34
+ #. Comes from file Entities/Share.rb and line is value_str :name
35
+ #.
36
+ #. Comes from file Views/Compta/Users.rb and line is show_str :name
37
+ #.
38
+ #. Comes from file Views/Course/Modify.rb and line is show_arg :name, :ro => true
39
+ #.
40
+ #. Comes from file Views/Network/Access.rb and line is show_field :name
41
+ #: ../Entities/AccessGroups.rb:5
42
+ #: ../Entities/Classroom.rb:7
43
+ #: ../Entities/Client.rb:4
44
+ #: ../Entities/Course.rb:23
45
+ #: ../Entities/CourseType.rb:11
46
+ #: ../Entities/Room.rb:6
47
+ #: ../Entities/Service.rb:3
48
+ #: ../Entities/Share.rb:6
49
+ #: ../Views/Compta/Users.rb:13
50
+ #: ../Views/Course/Modify.rb:27
51
+ #: ../Views/Network/Access.rb:16
52
+ msgid "name"
53
+ msgstr ""
54
+
55
+ #. Comes from file Entities/AccessGroups.rb and line is value_list_single :members
56
+ #: ../Entities/AccessGroups.rb:6
57
+ msgid "members"
58
+ msgstr ""
59
+
60
+ #. Comes from file Entities/AccessGroups.rb and line is value_list_drop :action, "%w( allow allow_else_block block )"
61
+ #.
62
+ #. Comes from file Views/Network/Access.rb and line is show_field :action
63
+ #: ../Entities/AccessGroups.rb:7
64
+ #: ../Views/Network/Access.rb:17
65
+ msgid "action"
66
+ msgstr ""
67
+
68
+ #. Comes from file Entities/AccessGroups.rb and line is value_int :priority
69
+ #.
70
+ #. Comes from file Views/Network/Access.rb and line is show_field :priority
71
+ #: ../Entities/AccessGroups.rb:8
72
+ #: ../Views/Network/Access.rb:18
73
+ msgid "priority"
74
+ msgstr ""
75
+
76
+ #. Comes from file Entities/AccessGroups.rb and line is value_int :limit_day_mo
77
+ #.
78
+ #. Comes from file Views/Network/Access.rb and line is show_field :limit_day_mo
79
+ #: ../Entities/AccessGroups.rb:9
80
+ #: ../Views/Network/Access.rb:19
81
+ msgid "limit_day_mo"
82
+ msgstr ""
83
+
84
+ #. Comes from file Entities/AccessGroups.rb and line is value_list_single :access_times, "[]"
85
+ #: ../Entities/AccessGroups.rb:10
86
+ msgid "access_times"
87
+ msgstr ""
88
+
89
+ #. Comes from file Entities/AccountLink.rb and line is value_entity_account :account
90
+ #: ../Entities/AccountLink.rb:6
91
+ msgid "account"
92
+ msgstr ""
93
+
94
+ #. Comes from file Entities/AccountLink.rb and line is value_str :link
95
+ #: ../Entities/AccountLink.rb:7
96
+ msgid "link"
97
+ msgstr ""
98
+
99
+ #. Comes from file Entities/AccountLink.rb and line is value_str :description
100
+ #.
101
+ #. Comes from file Entities/Course.rb and line is value_str :description
102
+ #.
103
+ #. Comes from file Entities/CourseType.rb and line is value_str :description
104
+ #.
105
+ #. Comes from file Entities/Room.rb and line is value_str :description
106
+ #: ../Entities/AccountLink.rb:8
107
+ #: ../Entities/Course.rb:51
108
+ #: ../Entities/CourseType.rb:16
109
+ #: ../Entities/Room.rb:10
110
+ msgid "description"
111
+ msgstr ""
112
+
113
+ #. Comes from file Entities/Classroom.rb and line is value_int :max_students
114
+ #: ../Entities/Classroom.rb:8
115
+ msgid "max_students"
116
+ msgstr ""
117
+
118
+ #. Comes from file Entities/Classroom.rb and line is value_int :computers
119
+ #.
120
+ #. Comes from file Entities/Room.rb and line is value_int :computers
121
+ #: ../Entities/Classroom.rb:9
122
+ #: ../Entities/Room.rb:9
123
+ msgid "computers"
124
+ msgstr ""
125
+
126
+ #. Comes from file Entities/Client.rb and line is value_str :addr1
127
+ #: ../Entities/Client.rb:7
128
+ msgid "addr1"
129
+ msgstr ""
130
+
131
+ #. Comes from file Entities/Client.rb and line is value_str :addr2
132
+ #: ../Entities/Client.rb:8
133
+ msgid "addr2"
134
+ msgstr ""
135
+
136
+ #. Comes from file Entities/Client.rb and line is value_str :country
137
+ #.
138
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :country, :ldap_name => "st"
139
+ #: ../Entities/Client.rb:9
140
+ #: ../Entities/Person.rb:41
141
+ msgid "country"
142
+ msgstr ""
143
+
144
+ #. Comes from file Entities/Client.rb and line is value_int :price_assistant
145
+ #: ../Entities/Client.rb:12
146
+ msgid "price_assistant"
147
+ msgstr ""
148
+
149
+ #. Comes from file Entities/Client.rb and line is value_int :price_expert
150
+ #: ../Entities/Client.rb:13
151
+ msgid "price_expert"
152
+ msgstr ""
153
+
154
+ #. Comes from file Entities/Client.rb and line is value_str :email
155
+ #.
156
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :email, :ldap_name => "mail"
157
+ #.
158
+ #. Comes from file Entities/Quiz.rb and line is value_str :email
159
+ #.
160
+ #. Comes from file Views/Self/Concours.rb and line is show_str :email, :width => 300
161
+ #: ../Entities/Client.rb:16
162
+ #: ../Entities/Person.rb:39
163
+ #: ../Entities/Quiz.rb:3
164
+ #: ../Views/Self/Concours.rb:11
165
+ msgid "email"
166
+ msgstr "البريد الالكتروني"
167
+
168
+ #. Comes from file Entities/Client.rb and line is value_str :phone
169
+ #.
170
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :phone, :ldap_name => "mobile"
171
+ #: ../Entities/Client.rb:17
172
+ #: ../Entities/Person.rb:38
173
+ msgid "phone"
174
+ msgstr ""
175
+
176
+ #. Comes from file Entities/Computer.rb and line is value_str :name_service
177
+ #: ../Entities/Computer.rb:8
178
+ msgid "name_service"
179
+ msgstr ""
180
+
181
+ #. Comes from file Entities/Computer.rb and line is value_entity_room :room, :drop, :name
182
+ #: ../Entities/Computer.rb:9
183
+ msgid "room"
184
+ msgstr ""
185
+
186
+ #. Comes from file Entities/Computer.rb and line is value_str :name_place
187
+ #: ../Entities/Computer.rb:10
188
+ msgid "name_place"
189
+ msgstr ""
190
+
191
+ #. Comes from file Entities/Computer.rb and line is value_str :brand
192
+ #: ../Entities/Computer.rb:13
193
+ msgid "brand"
194
+ msgstr ""
195
+
196
+ #. Comes from file Entities/Computer.rb and line is value_int :RAM_MB
197
+ #: ../Entities/Computer.rb:14
198
+ msgid "RAM_MB"
199
+ msgstr ""
200
+
201
+ #. Comes from file Entities/Computer.rb and line is value_int :HD_GB
202
+ #: ../Entities/Computer.rb:15
203
+ msgid "HD_GB"
204
+ msgstr ""
205
+
206
+ #. Comes from file Entities/Computer.rb and line is value_int :CPU_GHz
207
+ #: ../Entities/Computer.rb:16
208
+ msgid "CPU_GHz"
209
+ msgstr ""
210
+
211
+ #. Comes from file Entities/Computer.rb and line is value_text :comment
212
+ #.
213
+ #. Comes from file Entities/Share.rb and line is value_str :comment
214
+ #: ../Entities/Computer.rb:19
215
+ #: ../Entities/Share.rb:8
216
+ msgid "comment"
217
+ msgstr ""
218
+
219
+ #. Comes from file Entities/ConfigBase.rb and line is value_list_drop :isp, "%w( tigo prestabist airtel tawali ).sort"
220
+ #: ../Entities/ConfigBase.rb:11
221
+ msgid "isp"
222
+ msgstr ""
223
+
224
+ #. Comes from file Entities/Course.rb and line is value_entity_courseType_ro :ctype, :drop, :name
225
+ #.
226
+ #. Comes from file Views/Admin/CourseType.rb and line is vtlp_list :ctype, 'name'
227
+ #: ../Entities/Course.rb:22
228
+ #: ../Views/Admin/CourseType.rb:14
229
+ msgid "ctype"
230
+ msgstr ""
231
+
232
+ #. Comes from file Entities/Course.rb and line is value_date :start
233
+ #.
234
+ #. Comes from file Entities/Worker.rb and line is value_date :start
235
+ #.
236
+ #. Comes from file Views/Admin/Report.rb and line is show_date :start
237
+ #: ../Entities/Course.rb:26
238
+ #: ../Entities/Worker.rb:9
239
+ #: ../Views/Admin/Report.rb:9
240
+ msgid "start"
241
+ msgstr ""
242
+
243
+ #. Comes from file Entities/Course.rb and line is value_date :end
244
+ #.
245
+ #. Comes from file Entities/Worker.rb and line is value_date :end
246
+ #.
247
+ #. Comes from file Views/Admin/Report.rb and line is show_date :end
248
+ #: ../Entities/Course.rb:27
249
+ #: ../Entities/Worker.rb:10
250
+ #: ../Views/Admin/Report.rb:10
251
+ msgid "end"
252
+ msgstr ""
253
+
254
+ #. Comes from file Entities/Course.rb and line is value_date :sign
255
+ #: ../Entities/Course.rb:28
256
+ msgid "sign"
257
+ msgstr ""
258
+
259
+ #. Comes from file Entities/Course.rb and line is value_int :duration
260
+ #.
261
+ #. Comes from file Entities/CourseType.rb and line is value_str :duration
262
+ #.
263
+ #. Comes from file Entities/Service.rb and line is value_int :duration
264
+ #: ../Entities/Course.rb:29
265
+ #: ../Entities/CourseType.rb:12
266
+ #: ../Entities/Service.rb:6
267
+ msgid "duration"
268
+ msgstr ""
269
+
270
+ #. Comes from file Entities/Course.rb and line is value_list_drop :dow, "%w( lu-me-ve ma-je-sa lu-ve ma-sa )"
271
+ #: ../Entities/Course.rb:30
272
+ msgid "dow"
273
+ msgstr ""
274
+
275
+ #. Comes from file Entities/Course.rb and line is value_list_drop :hours, "%w( 9-12 16-18 9-11 )"
276
+ #: ../Entities/Course.rb:31
277
+ msgid "hours"
278
+ msgstr ""
279
+
280
+ #. Comes from file Entities/Course.rb and line is value_entity_room :classroom, :drop, :name
281
+ #: ../Entities/Course.rb:32
282
+ msgid "classroom"
283
+ msgstr ""
284
+
285
+ #. Comes from file Entities/Course.rb and line is value_list :students
286
+ #.
287
+ #. Comes from file Views/Course/Grade.rb and line is show_list_single :students, :width => 300, :callback => true, :flexheight => 1
288
+ #.
289
+ #. Comes from file Views/Course/Modify.rb and line is show_list :students, :flexheight => 1
290
+ #: ../Entities/Course.rb:36
291
+ #: ../Views/Course/Grade.rb:20
292
+ #: ../Views/Course/Modify.rb:37
293
+ msgid "students"
294
+ msgstr ""
295
+
296
+ #. Comes from file Entities/Course.rb and line is value_entity_person_lazy :teacher, :drop, :full_name
297
+ #: ../Entities/Course.rb:39
298
+ msgid "teacher"
299
+ msgstr ""
300
+
301
+ #. Comes from file Entities/Course.rb and line is value_entity_person_empty_lazy :assistant, :drop, :full_name
302
+ #: ../Entities/Course.rb:41
303
+ msgid "assistant"
304
+ msgstr ""
305
+
306
+ #. Comes from file Entities/Course.rb and line is value_entity_person_lazy :responsible, :drop, :full_name
307
+ #: ../Entities/Course.rb:43
308
+ msgid "responsible"
309
+ msgstr ""
310
+
311
+ #. Comes from file Entities/Course.rb and line is value_entity_person_empty :center, :drop, :full_name,
312
+ #: ../Entities/Course.rb:47
313
+ msgid "center"
314
+ msgstr ""
315
+
316
+ #. Comes from file Entities/Course.rb and line is value_text :contents
317
+ #.
318
+ #. Comes from file Entities/CourseType.rb and line is value_text :contents
319
+ #: ../Entities/Course.rb:52
320
+ #: ../Entities/CourseType.rb:17
321
+ msgid "contents"
322
+ msgstr ""
323
+
324
+ #. Comes from file Entities/Course.rb and line is value_int :salary_teacher
325
+ #: ../Entities/Course.rb:55
326
+ msgid "salary_teacher"
327
+ msgstr ""
328
+
329
+ #. Comes from file Entities/Course.rb and line is value_int :salary_assistant
330
+ #: ../Entities/Course.rb:56
331
+ msgid "salary_assistant"
332
+ msgstr ""
333
+
334
+ #. Comes from file Entities/Course.rb and line is value_int :students_start
335
+ #: ../Entities/Course.rb:57
336
+ msgid "students_start"
337
+ msgstr ""
338
+
339
+ #. Comes from file Entities/Course.rb and line is value_int :students_finish
340
+ #: ../Entities/Course.rb:58
341
+ msgid "students_finish"
342
+ msgstr ""
343
+
344
+ #. Comes from file Entities/Course.rb and line is value_int :entry_total
345
+ #: ../Entities/Course.rb:59
346
+ msgid "entry_total"
347
+ msgstr ""
348
+
349
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :page_format,
350
+ #.
351
+ #. Comes from file Views/Admin/CourseType.rb and line is show_field :page_format
352
+ #: ../Entities/CourseType.rb:6
353
+ #: ../Views/Admin/CourseType.rb:29
354
+ msgid "page_format"
355
+ msgstr ""
356
+
357
+ #. Comes from file Entities/CourseType.rb and line is value_str :filename
358
+ #.
359
+ #. Comes from file Views/Admin/CourseType.rb and line is show_list_drop :filename, 'CourseTypes.files'
360
+ #: ../Entities/CourseType.rb:8
361
+ #: ../Views/Admin/CourseType.rb:30
362
+ msgid "filename"
363
+ msgstr ""
364
+
365
+ #. Comes from file Entities/CourseType.rb and line is value_int :tests
366
+ #: ../Entities/CourseType.rb:13
367
+ msgid "tests"
368
+ msgstr ""
369
+
370
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :diploma_type, "%w( simple files accredited )"
371
+ #: ../Entities/CourseType.rb:20
372
+ msgid "diploma_type"
373
+ msgstr ""
374
+
375
+ #. Comes from file Entities/CourseType.rb and line is value_str :central_host
376
+ #: ../Entities/CourseType.rb:21
377
+ msgid "central_host"
378
+ msgstr ""
379
+
380
+ #. Comes from file Entities/CourseType.rb and line is value_int :files_needed
381
+ #: ../Entities/CourseType.rb:22
382
+ msgid "files_needed"
383
+ msgstr ""
384
+
385
+ #. Comes from file Entities/CourseType.rb and line is value_list_drop :output, "%w( certificate label )"
386
+ #: ../Entities/CourseType.rb:23
387
+ msgid "output"
388
+ msgstr ""
389
+
390
+ #. Comes from file Entities/Grade.rb and line is value_entity_course :course
391
+ #: ../Entities/Grade.rb:4
392
+ msgid "course"
393
+ msgstr ""
394
+
395
+ #. Comes from file Entities/Grade.rb and line is value_entity_person :student
396
+ #: ../Entities/Grade.rb:5
397
+ msgid "student"
398
+ msgstr ""
399
+
400
+ #. Comes from file Entities/Grade.rb and line is value_int :random
401
+ #: ../Entities/Grade.rb:6
402
+ msgid "random"
403
+ msgstr ""
404
+
405
+ #. Comes from file Entities/Grade.rb and line is value_list_int :means
406
+ #: ../Entities/Grade.rb:9
407
+ msgid "means"
408
+ msgstr ""
409
+
410
+ #. Comes from file Entities/Grade.rb and line is value_int :mean
411
+ #: ../Entities/Grade.rb:10
412
+ msgid "mean"
413
+ msgstr ""
414
+
415
+ #. Comes from file Entities/Grade.rb and line is value_str :remark
416
+ #.
417
+ #. Comes from file Views/Course/Grade.rb and line is show_str :remark
418
+ #: ../Entities/Grade.rb:11
419
+ #: ../Views/Course/Grade.rb:31
420
+ msgid "remark"
421
+ msgstr ""
422
+
423
+ #. Comes from file Entities/Payment.rb and line is value_str :desc
424
+ #: ../Entities/Payment.rb:3
425
+ msgid "desc"
426
+ msgstr ""
427
+
428
+ #. Comes from file Entities/Payment.rb and line is value_int :cash
429
+ #: ../Entities/Payment.rb:4
430
+ msgid "cash"
431
+ msgstr ""
432
+
433
+ #. Comes from file Entities/Payment.rb and line is value_date :date
434
+ #.
435
+ #. Comes from file Entities/Task.rb and line is value_date :date
436
+ #: ../Entities/Payment.rb:5
437
+ #: ../Entities/Task.rb:11
438
+ msgid "date"
439
+ msgstr ""
440
+
441
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :first_name, :ldap_name => "sn"
442
+ #.
443
+ #. Comes from file Views/Course/Grade.rb and line is show_str :first_name, :width => 150
444
+ #.
445
+ #. Comes from file Views/Person/Course.rb and line is show_str_ro :first_name
446
+ #: ../Entities/Person.rb:34
447
+ #: ../Views/Course/Grade.rb:32
448
+ #: ../Views/Person/Course.rb:11
449
+ msgid "first_name"
450
+ msgstr ""
451
+
452
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :family_name, :ldap_name => "givenname"
453
+ #.
454
+ #. Comes from file Views/Course/Grade.rb and line is show_str :family_name
455
+ #.
456
+ #. Comes from file Views/Person/Course.rb and line is show_str_ro :family_name
457
+ #: ../Entities/Person.rb:35
458
+ #: ../Views/Course/Grade.rb:33
459
+ #: ../Views/Person/Course.rb:12
460
+ msgid "family_name"
461
+ msgstr ""
462
+
463
+ #. Comes from file Entities/Person.rb and line is value_date :birthday
464
+ #: ../Entities/Person.rb:36
465
+ msgid "birthday"
466
+ msgstr ""
467
+
468
+ #. Comes from file Entities/Person.rb and line is value_str :address
469
+ #: ../Entities/Person.rb:37
470
+ msgid "address"
471
+ msgstr ""
472
+
473
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :town, :ldap_name => "l"
474
+ #: ../Entities/Person.rb:40
475
+ msgid "town"
476
+ msgstr ""
477
+
478
+ #. Comes from file Entities/Person.rb and line is value_list_drop :gender, "%w( male female n/a )"
479
+ #: ../Entities/Person.rb:42
480
+ msgid "gender"
481
+ msgstr ""
482
+
483
+ #. Comes from file Entities/Person.rb and line is value_str :account_name_due
484
+ #: ../Entities/Person.rb:45
485
+ msgid "account_name_due"
486
+ msgstr ""
487
+
488
+ #. Comes from file Entities/Person.rb and line is value_str :account_name_cash
489
+ #: ../Entities/Person.rb:46
490
+ msgid "account_name_cash"
491
+ msgstr ""
492
+
493
+ #. Comes from file Entities/Person.rb and line is value_str :role_diploma
494
+ #: ../Entities/Person.rb:47
495
+ msgid "role_diploma"
496
+ msgstr ""
497
+
498
+ #. Comes from file Entities/Person.rb and line is value_list :permissions, "Permission.list.sort"
499
+ #.
500
+ #. Comes from file Views/Person/Admin.rb and line is show_arg :permissions, :flexheight => 1
501
+ #: ../Entities/Person.rb:48
502
+ #: ../Views/Person/Admin.rb:17
503
+ msgid "permissions"
504
+ msgstr ""
505
+
506
+ #. Comes from file Entities/Person.rb and line is value_list :groups, "%w( freesurf sudo print localonly share ).sort"
507
+ #.
508
+ #. Comes from file Views/Network/Access.rb and line is vtlp_list :groups, :name
509
+ #.
510
+ #. Comes from file Views/Person/Admin.rb and line is show_field :groups
511
+ #: ../Entities/Person.rb:51
512
+ #: ../Views/Network/Access.rb:12
513
+ #: ../Views/Person/Admin.rb:22
514
+ msgid "groups"
515
+ msgstr ""
516
+
517
+ #. Comes from file Entities/Person.rb and line is value_list_single :internet_none, "[]"
518
+ #.
519
+ #. Comes from file Views/Person/Admin.rb and line is show_field :internet_none
520
+ #: ../Entities/Person.rb:52
521
+ #: ../Views/Person/Admin.rb:26
522
+ msgid "internet_none"
523
+ msgstr ""
524
+
525
+ #. Comes from file Entities/Person.rb and line is value_str_ro_LDAP :login_name, :ldap_name => "uid"
526
+ #.
527
+ #. Comes from file Entities/Worker.rb and line is value_str :login_name
528
+ #.
529
+ #. Comes from file Views/Network/Access.rb and line is show_str :login_name
530
+ #.
531
+ #. Comes from file Views/Person/Admin.rb and line is show_str_ro :login_name
532
+ #.
533
+ #. Comes from file Views/Person/Credit.rb and line is show_str_ro :login_name
534
+ #.
535
+ #. Comes from file Views/Person/Modify.rb and line is show_str_ro :login_name, :width => 150
536
+ #: ../Entities/Person.rb:55
537
+ #: ../Entities/Worker.rb:5
538
+ #: ../Views/Network/Access.rb:26
539
+ #: ../Views/Person/Admin.rb:14
540
+ #: ../Views/Person/Credit.rb:10
541
+ #: ../Views/Person/Modify.rb:13
542
+ msgid "login_name"
543
+ msgstr ""
544
+
545
+ #. Comes from file Entities/Person.rb and line is value_int_ro :internet_credit
546
+ #.
547
+ #. Comes from file Views/Person/Credit.rb and line is show_int_ro :internet_credit
548
+ #.
549
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :internet_credit
550
+ #: ../Entities/Person.rb:58
551
+ #: ../Views/Person/Credit.rb:11
552
+ #: ../Views/Self/Internet.rb:13
553
+ msgid "internet_credit"
554
+ msgstr ""
555
+
556
+ #. Comes from file Entities/Person.rb and line is value_int_ro :account_total_due
557
+ #.
558
+ #. Comes from file Views/Self/Cash.rb and line is show_int_ro :account_total_due, :width => 100
559
+ #.
560
+ #. Comes from file Views/Self/Services.rb and line is show_int_ro :account_total_due
561
+ #: ../Entities/Person.rb:59
562
+ #: ../Views/Self/Cash.rb:11
563
+ #: ../Views/Self/Services.rb:25
564
+ msgid "account_total_due"
565
+ msgstr ""
566
+
567
+ #. Comes from file Entities/Person.rb and line is value_str :session_id
568
+ #: ../Entities/Person.rb:62
569
+ msgid "session_id"
570
+ msgstr ""
571
+
572
+ #. Comes from file Entities/Person.rb and line is value_str_LDAP :password, :ldap_name => "userPassword"
573
+ #: ../Entities/Person.rb:63
574
+ msgid "password"
575
+ msgstr ""
576
+
577
+ #. Comes from file Entities/Person.rb and line is value_str :password_plain
578
+ #.
579
+ #. Comes from file Views/Person/Modify.rb and line is show_str_ro :password_plain
580
+ #: ../Entities/Person.rb:64
581
+ #: ../Views/Person/Modify.rb:24
582
+ msgid "password_plain"
583
+ msgstr ""
584
+
585
+ #. Comes from file Entities/Person.rb and line is value_int_LDAP :person_id, :ldap_name => "uidnumber"
586
+ #.
587
+ #. Comes from file Entities/Worker.rb and line is value_int :person_id
588
+ #.
589
+ #. Comes from file Views/Person/Admin.rb and line is show_str_ro :person_id
590
+ #.
591
+ #. Comes from file Views/Person/Modify.rb and line is show_str_ro :person_id
592
+ #: ../Entities/Person.rb:65
593
+ #: ../Entities/Worker.rb:4
594
+ #: ../Views/Person/Admin.rb:15
595
+ #: ../Views/Person/Modify.rb:14
596
+ msgid "person_id"
597
+ msgstr ""
598
+
599
+ #. Comes from file Entities/Quiz.rb and line is value_str :full_name
600
+ #.
601
+ #. Comes from file Views/Self/Concours.rb and line is show_str :full_name, :width => 300
602
+ #: ../Entities/Quiz.rb:4
603
+ #: ../Views/Self/Concours.rb:12
604
+ msgid "full_name"
605
+ msgstr "الاسم بالكامل"
606
+
607
+ #. Comes from file Entities/Quiz.rb and line is value_str :reply
608
+ #: ../Entities/Quiz.rb:5
609
+ msgid "reply"
610
+ msgstr "أجب"
611
+
612
+ #. Comes from file Entities/Quiz.rb and line is value_int :score
613
+ #: ../Entities/Quiz.rb:6
614
+ msgid "score"
615
+ msgstr "النتيجة"
616
+
617
+ #. Comes from file Entities/Room.rb and line is value_int :size
618
+ #.
619
+ #. Comes from file Views/Network/Tigo.rb and line is show_list_drop :size, "%w( 30MB 100MB 1GB 5GB )"
620
+ #: ../Entities/Room.rb:7
621
+ #: ../Views/Network/Tigo.rb:24
622
+ msgid "size"
623
+ msgstr ""
624
+
625
+ #. Comes from file Entities/Room.rb and line is value_str :ip_net
626
+ #: ../Entities/Room.rb:8
627
+ msgid "ip_net"
628
+ msgstr ""
629
+
630
+ #. Comes from file Entities/Service.rb and line is value_str :group
631
+ #: ../Entities/Service.rb:4
632
+ msgid "group"
633
+ msgstr ""
634
+
635
+ #. Comes from file Entities/Service.rb and line is value_int :price
636
+ #: ../Entities/Service.rb:5
637
+ msgid "price"
638
+ msgstr ""
639
+
640
+ #. Comes from file Entities/Share.rb and line is value_str :path
641
+ #: ../Entities/Share.rb:7
642
+ msgid "path"
643
+ msgstr ""
644
+
645
+ #. Comes from file Entities/Share.rb and line is value_str :force_user
646
+ #: ../Entities/Share.rb:9
647
+ msgid "force_user"
648
+ msgstr ""
649
+
650
+ #. Comes from file Entities/Share.rb and line is value_str :force_group
651
+ #: ../Entities/Share.rb:10
652
+ msgid "force_group"
653
+ msgstr ""
654
+
655
+ #. Comes from file Entities/Share.rb and line is value_list_drop :public, "%w( No Read ReadWrite )"
656
+ #: ../Entities/Share.rb:12
657
+ msgid "public"
658
+ msgstr ""
659
+
660
+ #. Comes from file Entities/Share.rb and line is value_str :acl
661
+ #: ../Entities/Share.rb:15
662
+ msgid "acl"
663
+ msgstr ""
664
+
665
+ #. Comes from file Entities/Static.rb and line is value_str :view_name
666
+ #: ../Entities/Static.rb:3
667
+ msgid "view_name"
668
+ msgstr ""
669
+
670
+ #. Comes from file Entities/Static.rb and line is value_str :data_str
671
+ #: ../Entities/Static.rb:4
672
+ msgid "data_str"
673
+ msgstr ""
674
+
675
+ #. Comes from file Entities/Task.rb and line is value_str :date_name
676
+ #: ../Entities/Task.rb:3
677
+ msgid "date_name"
678
+ msgstr ""
679
+
680
+ #. Comes from file Entities/Task.rb and line is value_str :client
681
+ #.
682
+ #. Comes from file Views/Task/Edit.rb and line is show_list_drop :client, "Entities.Clients.list_name"
683
+ #.
684
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :client, "Entities.Clients.list_name"
685
+ #: ../Entities/Task.rb:6
686
+ #: ../Views/Task/Edit.rb:14
687
+ #: ../Views/Task/List.rb:12
688
+ msgid "client"
689
+ msgstr ""
690
+
691
+ #. Comes from file Entities/Task.rb and line is value_str :person
692
+ #.
693
+ #. Comes from file Views/Task/Edit.rb and line is show_list_drop :person, "Entities.Workers.list_full_name"
694
+ #.
695
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :person, "Entities.Workers.list_full_name"
696
+ #: ../Entities/Task.rb:7
697
+ #: ../Views/Task/Edit.rb:15
698
+ #: ../Views/Task/List.rb:11
699
+ msgid "person"
700
+ msgstr ""
701
+
702
+ #. Comes from file Entities/Task.rb and line is value_entity_person :worker, :drop, :full_name
703
+ #: ../Entities/Task.rb:8
704
+ msgid "worker"
705
+ msgstr ""
706
+
707
+ #. 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 ) )}"
708
+ #.
709
+ #. Comes from file Views/Network/Access.rb and line is show_fromto :time
710
+ #: ../Entities/Task.rb:12
711
+ #: ../Views/Network/Access.rb:21
712
+ msgid "time"
713
+ msgstr ""
714
+
715
+ #. Comes from file Entities/Task.rb and line is value_int :duration_hours
716
+ #: ../Entities/Task.rb:13
717
+ msgid "duration_hours"
718
+ msgstr ""
719
+
720
+ #. Comes from file Entities/Task.rb and line is value_text :work
721
+ #.
722
+ #. Comes from file Entities/Ticket.rb and line is value_text :work
723
+ #: ../Entities/Task.rb:14
724
+ #: ../Entities/Ticket.rb:18
725
+ msgid "work"
726
+ msgstr ""
727
+
728
+ #. Comes from file Entities/Task.rb and line is value_int :transport_length
729
+ #: ../Entities/Task.rb:17
730
+ msgid "transport_length"
731
+ msgstr ""
732
+
733
+ #. Comes from file Entities/Task.rb and line is value_list_single :transport_type, "%w( moto voiture taxi )"
734
+ #: ../Entities/Task.rb:18
735
+ msgid "transport_type"
736
+ msgstr ""
737
+
738
+ #. Comes from file Entities/Task.rb and line is value_int :cost
739
+ #: ../Entities/Task.rb:19
740
+ msgid "cost"
741
+ msgstr ""
742
+
743
+ #. Comes from file Entities/Task.rb and line is value_str :cost_description
744
+ #: ../Entities/Task.rb:20
745
+ msgid "cost_description"
746
+ msgstr ""
747
+
748
+ #. Comes from file Entities/Task.rb and line is value_int :gain
749
+ #: ../Entities/Task.rb:21
750
+ msgid "gain"
751
+ msgstr ""
752
+
753
+ #. Comes from file Entities/Task.rb and line is value_str :gain_description
754
+ #: ../Entities/Task.rb:22
755
+ msgid "gain_description"
756
+ msgstr ""
757
+
758
+ #. Comes from file Entities/Ticket.rb and line is value_date :opened
759
+ #: ../Entities/Ticket.rb:6
760
+ msgid "opened"
761
+ msgstr ""
762
+
763
+ #. Comes from file Entities/Ticket.rb and line is value_date :closed
764
+ #: ../Entities/Ticket.rb:7
765
+ msgid "closed"
766
+ msgstr ""
767
+
768
+ #. Comes from file Entities/Ticket.rb and line is value_list_drop :severity, "%w( critique grave moyen optionnel )"
769
+ #: ../Entities/Ticket.rb:8
770
+ msgid "severity"
771
+ msgstr ""
772
+
773
+ #. Comes from file Entities/Ticket.rb and line is value_str_ro :created_by
774
+ #: ../Entities/Ticket.rb:9
775
+ msgid "created_by"
776
+ msgstr ""
777
+
778
+ #. Comes from file Entities/Ticket.rb and line is value_entity_person_empty :assigned, :drop, :full_name,
779
+ #: ../Entities/Ticket.rb:10
780
+ msgid "assigned"
781
+ msgstr ""
782
+
783
+ #. Comes from file Entities/Ticket.rb and line is value_entity_computer_empty :computer, :drop, :name_service
784
+ #: ../Entities/Ticket.rb:12
785
+ msgid "computer"
786
+ msgstr ""
787
+
788
+ #. Comes from file Entities/Ticket.rb and line is value_str :other
789
+ #: ../Entities/Ticket.rb:13
790
+ msgid "other"
791
+ msgstr ""
792
+
793
+ #. Comes from file Entities/Ticket.rb and line is value_text :todo
794
+ #: ../Entities/Ticket.rb:16
795
+ msgid "todo"
796
+ msgstr ""
797
+
798
+ #. Comes from file Entities/Ticket.rb and line is value_text :verification
799
+ #: ../Entities/Ticket.rb:17
800
+ msgid "verification"
801
+ msgstr ""
802
+
803
+ #. Comes from file Entities/Ticket.rb and line is vtlp_list :ticket_list, method, :width => 150
804
+ #: ../Entities/Ticket.rb:47
805
+ msgid "ticket_list"
806
+ msgstr ""
807
+
808
+ #. Comes from file Entities/Ticket.rb and line is show_button :new_ticket, :delete
809
+ #: ../Entities/Ticket.rb:49
810
+ msgid "new_ticket"
811
+ msgstr ""
812
+
813
+ #. Comes from file Entities/Ticket.rb and line is show_button :new_ticket, :delete
814
+ #.
815
+ #. Comes from file Entities/Ticket.rb and line is show_button :delete
816
+ #.
817
+ #. Comes from file Views/Admin/CourseType.rb and line is show_button :new, :delete
818
+ #.
819
+ #. Comes from file Views/Course/Responsible.rb and line is show_button :new, :delete, :save
820
+ #.
821
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :delete, :add
822
+ #.
823
+ #. Comes from file Views/Inventory/Computer.rb and line is show_button :new, :delete
824
+ #.
825
+ #. Comes from file Views/Inventory/Room.rb and line is show_button :new, :delete
826
+ #.
827
+ #. Comes from file Views/Network/Access.rb and line is show_button :new, :delete
828
+ #.
829
+ #. Comes from file Views/Network/Share.rb and line is show_button :new, :delete
830
+ #.
831
+ #. Comes from file Views/Person/Course.rb and line is show_button :add, :delete
832
+ #.
833
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :start_search, :delete, :add
834
+ #.
835
+ #. Comes from file Views/Task/Client.rb and line is show_button :delete
836
+ #.
837
+ #. Comes from file Views/Task/Edit.rb and line is show_button :delete
838
+ #.
839
+ #. Comes from file Views/Task/Worker.rb and line is show_button :delete
840
+ #: ../Entities/Ticket.rb:49
841
+ #: ../Entities/Ticket.rb:51
842
+ #: ../Views/Admin/CourseType.rb:15
843
+ #: ../Views/Course/Responsible.rb:13
844
+ #: ../Views/Course/Tabs.rb:9
845
+ #: ../Views/Inventory/Computer.rb:9
846
+ #: ../Views/Inventory/Room.rb:9
847
+ #: ../Views/Network/Access.rb:13
848
+ #: ../Views/Network/Share.rb:23
849
+ #: ../Views/Person/Course.rb:14
850
+ #: ../Views/Person/Tabs.rb:12
851
+ #: ../Views/Task/Client.rb:10
852
+ #: ../Views/Task/Edit.rb:11
853
+ #: ../Views/Task/Worker.rb:10
854
+ msgid "delete"
855
+ msgstr ""
856
+
857
+ #. Comes from file Entities/Ticket.rb and line is show_button :save_ticket
858
+ #: ../Entities/Ticket.rb:65
859
+ msgid "save_ticket"
860
+ msgstr ""
861
+
862
+ #. Comes from file Entities/Ticket.rb and line is show_button :save
863
+ #.
864
+ #. Comes from file Views/Admin/Function.rb and line is show_button :save
865
+ #.
866
+ #. Comes from file Views/Compta/Users.rb and line is show_button :save
867
+ #.
868
+ #. Comes from file Views/Course/Grade.rb and line is show_button :save, :upload
869
+ #.
870
+ #. Comes from file Views/Course/Modify.rb and line is show_button :save
871
+ #.
872
+ #. Comes from file Views/Course/Responsible.rb and line is show_button :new, :delete, :save
873
+ #.
874
+ #. Comes from file Views/Course/Stats.rb and line is show_button :save
875
+ #.
876
+ #. Comes from file Views/Inventory/Computer.rb and line is show_button :save
877
+ #.
878
+ #. Comes from file Views/Inventory/Room.rb and line is show_button :save
879
+ #.
880
+ #. Comes from file Views/Network/Access.rb and line is show_button :save, :add_time, :delete_time
881
+ #.
882
+ #. Comes from file Views/Person/Admin.rb and line is show_button :save
883
+ #.
884
+ #. Comes from file Views/Person/Modify.rb and line is show_print :save, :print_student
885
+ #.
886
+ #. Comes from file Views/Self/Show.rb and line is show_button :save
887
+ #.
888
+ #. Comes from file Views/Task/Client.rb and line is show_button :new, :save
889
+ #.
890
+ #. Comes from file Views/Task/Edit.rb and line is show_button :save, :new
891
+ #.
892
+ #. Comes from file Views/Task/Worker.rb and line is show_button :new, :save
893
+ #: ../Entities/Ticket.rb:67
894
+ #: ../Views/Admin/Function.rb:9
895
+ #: ../Views/Compta/Users.rb:18
896
+ #: ../Views/Course/Grade.rb:34
897
+ #: ../Views/Course/Modify.rb:61
898
+ #: ../Views/Course/Responsible.rb:13
899
+ #: ../Views/Course/Stats.rb:11
900
+ #: ../Views/Inventory/Computer.rb:16
901
+ #: ../Views/Inventory/Room.rb:14
902
+ #: ../Views/Network/Access.rb:22
903
+ #: ../Views/Person/Admin.rb:33
904
+ #: ../Views/Person/Modify.rb:18
905
+ #: ../Views/Self/Show.rb:11
906
+ #: ../Views/Task/Client.rb:17
907
+ #: ../Views/Task/Edit.rb:19
908
+ #: ../Views/Task/Worker.rb:17
909
+ msgid "save"
910
+ msgstr ""
911
+
912
+ #. Comes from file Entities/Worker.rb and line is value_list_drop :function, "%w( assistant expert )"
913
+ #: ../Entities/Worker.rb:8
914
+ msgid "function"
915
+ msgstr ""
916
+
917
+ #. Comes from file Views/Welcome.rb and line is class Welcome < View
918
+ #: ../Views/Welcome.rb:1
919
+ msgid "Welcome"
920
+ msgstr ""
921
+
922
+ #. Comes from file Views/Welcome.rb and line is show_str :username
923
+ #: ../Views/Welcome.rb:3
924
+ msgid "username"
925
+ msgstr ""
926
+
927
+ #. Comes from file Views/Welcome.rb and line is show_str :version
928
+ #: ../Views/Welcome.rb:4
929
+ msgid "version"
930
+ msgstr ""
931
+
932
+ #. Comes from file Views/Admin/Backup.rb and line is class AdminBackup < View
933
+ #: ../Views/Admin/Backup.rb:3
934
+ msgid "AdminBackup"
935
+ msgstr ""
936
+
937
+ #. Comes from file Views/Admin/Backup.rb and line is show_list_single :backups, "View.AdminBackup.list_backups", :width => 400
938
+ #: ../Views/Admin/Backup.rb:9
939
+ msgid "backups"
940
+ msgstr ""
941
+
942
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :do_backup, :do_restore
943
+ #: ../Views/Admin/Backup.rb:10
944
+ msgid "do_backup"
945
+ msgstr ""
946
+
947
+ #. Comes from file Views/Admin/Backup.rb and line is show_button :do_backup, :do_restore
948
+ #: ../Views/Admin/Backup.rb:10
949
+ msgid "do_restore"
950
+ msgstr ""
951
+
952
+ #. Comes from file Views/Admin/Backup.rb and line is show_html :txt
953
+ #.
954
+ #. Comes from file Views/Admin/Power.rb and line is show_html :txt
955
+ #.
956
+ #. Comes from file Views/Compta/Admin.rb and line is show_html :txt
957
+ #.
958
+ #. Comes from file Views/Course/Grade.rb and line is show_html :txt
959
+ #.
960
+ #. Comes from file Views/Self/Concours.rb and line is show_html :txt
961
+ #: ../Views/Admin/Backup.rb:14
962
+ #: ../Views/Admin/Power.rb:18
963
+ #: ../Views/Compta/Admin.rb:10
964
+ #: ../Views/Course/Grade.rb:37
965
+ #: ../Views/Self/Concours.rb:52
966
+ msgid "txt"
967
+ msgstr ""
968
+
969
+ #. Comes from file Views/Admin/CourseType.rb and line is class AdminCourseType < View
970
+ #: ../Views/Admin/CourseType.rb:4
971
+ msgid "AdminCourseType"
972
+ msgstr ""
973
+
974
+ #. Comes from file Views/Admin/CourseType.rb and line is show_button :new, :delete
975
+ #.
976
+ #. Comes from file Views/Compta/Users.rb and line is show_button :new
977
+ #.
978
+ #. Comes from file Views/Course/Responsible.rb and line is show_button :new, :delete, :save
979
+ #.
980
+ #. Comes from file Views/Inventory/Computer.rb and line is show_button :new, :delete
981
+ #.
982
+ #. Comes from file Views/Inventory/Room.rb and line is show_button :new, :delete
983
+ #.
984
+ #. Comes from file Views/Network/Access.rb and line is show_button :new, :delete
985
+ #.
986
+ #. Comes from file Views/Network/Share.rb and line is show_button :new, :delete
987
+ #.
988
+ #. Comes from file Views/Task/Client.rb and line is show_button :new, :save
989
+ #.
990
+ #. Comes from file Views/Task/Edit.rb and line is show_button :save, :new
991
+ #.
992
+ #. Comes from file Views/Task/Worker.rb and line is show_button :new, :save
993
+ #: ../Views/Admin/CourseType.rb:15
994
+ #: ../Views/Compta/Users.rb:10
995
+ #: ../Views/Course/Responsible.rb:13
996
+ #: ../Views/Inventory/Computer.rb:9
997
+ #: ../Views/Inventory/Room.rb:9
998
+ #: ../Views/Network/Access.rb:13
999
+ #: ../Views/Network/Share.rb:23
1000
+ #: ../Views/Task/Client.rb:17
1001
+ #: ../Views/Task/Edit.rb:19
1002
+ #: ../Views/Task/Worker.rb:17
1003
+ msgid "new"
1004
+ msgstr ""
1005
+
1006
+ #. Comes from file Views/Admin/CourseType.rb and line is show_button :save
1007
+ #: ../Views/Admin/CourseType.rb:32
1008
+ msgid "save "
1009
+ msgstr ""
1010
+
1011
+ #. Comes from file Views/Admin/Credit.rb and line is class AdminCredit < View
1012
+ #: ../Views/Admin/Credit.rb:3
1013
+ msgid "AdminCredit"
1014
+ msgstr ""
1015
+
1016
+ #. Comes from file Views/Admin/Credit.rb and line is show_text :user_credit
1017
+ #: ../Views/Admin/Credit.rb:9
1018
+ msgid "user_credit"
1019
+ msgstr ""
1020
+
1021
+ #. Comes from file Views/Admin/Credit.rb and line is show_button :update_credits
1022
+ #: ../Views/Admin/Credit.rb:10
1023
+ msgid "update_credits"
1024
+ msgstr ""
1025
+
1026
+ #. Comes from file Views/Admin/Function.rb and line is class AdminFunction < View
1027
+ #: ../Views/Admin/Function.rb:1
1028
+ msgid "AdminFunction"
1029
+ msgstr ""
1030
+
1031
+ #. Comes from file Views/Admin/Internet.rb and line is class AdminInternet < View
1032
+ #: ../Views/Admin/Internet.rb:1
1033
+ msgid "AdminInternet"
1034
+ msgstr ""
1035
+
1036
+ #. Comes from file Views/Admin/Internet.rb and line is show_int_ro :credit_left
1037
+ #.
1038
+ #. Comes from file Views/Network/Tigo.rb and line is show_int_ro :credit_left
1039
+ #: ../Views/Admin/Internet.rb:17
1040
+ #: ../Views/Network/Tigo.rb:14
1041
+ msgid "credit_left"
1042
+ msgstr ""
1043
+
1044
+ #. Comes from file Views/Admin/Internet.rb and line is show_int_ro :promotion_left
1045
+ #.
1046
+ #. Comes from file Views/Network/Tigo.rb and line is show_int_ro :promotion_left
1047
+ #: ../Views/Admin/Internet.rb:18
1048
+ #: ../Views/Network/Tigo.rb:15
1049
+ msgid "promotion_left"
1050
+ msgstr ""
1051
+
1052
+ #. Comes from file Views/Admin/Internet.rb and line is show_list_drop :auto_disconnect, "[:No,:Yes]", :callback => :auto_disconnect
1053
+ #: ../Views/Admin/Internet.rb:19
1054
+ msgid "auto_disconnect"
1055
+ msgstr ""
1056
+
1057
+ #. Comes from file Views/Admin/Internet.rb and line is show_button :connect, :disconnect, :delete_emails
1058
+ #.
1059
+ #. Comes from file Views/Self/Internet.rb and line is show_button :connect, :disconnect
1060
+ #: ../Views/Admin/Internet.rb:20
1061
+ #: ../Views/Self/Internet.rb:16
1062
+ msgid "connect"
1063
+ msgstr ""
1064
+
1065
+ #. Comes from file Views/Admin/Internet.rb and line is show_button :connect, :disconnect, :delete_emails
1066
+ #.
1067
+ #. Comes from file Views/Self/Internet.rb and line is show_button :connect, :disconnect
1068
+ #: ../Views/Admin/Internet.rb:20
1069
+ #: ../Views/Self/Internet.rb:16
1070
+ msgid "disconnect"
1071
+ msgstr ""
1072
+
1073
+ #. Comes from file Views/Admin/Internet.rb and line is show_button :connect, :disconnect, :delete_emails
1074
+ #: ../Views/Admin/Internet.rb:20
1075
+ msgid "delete_emails"
1076
+ msgstr ""
1077
+
1078
+ #. Comes from file Views/Admin/Internet.rb and line is show_html :mails
1079
+ #: ../Views/Admin/Internet.rb:23
1080
+ msgid "mails"
1081
+ msgstr ""
1082
+
1083
+ #. Comes from file Views/Admin/Internet.rb and line is show_html :transfer
1084
+ #: ../Views/Admin/Internet.rb:24
1085
+ msgid "transfer"
1086
+ msgstr ""
1087
+
1088
+ #. Comes from file Views/Admin/Power.rb and line is class AdminPower < View
1089
+ #: ../Views/Admin/Power.rb:3
1090
+ msgid "AdminPower"
1091
+ msgstr ""
1092
+
1093
+ #. Comes from file Views/Admin/Power.rb and line is show_button :reboot_gestion
1094
+ #: ../Views/Admin/Power.rb:9
1095
+ msgid "reboot_gestion"
1096
+ msgstr ""
1097
+
1098
+ #. Comes from file Views/Admin/Power.rb and line is show_button :reboot_dreamplug
1099
+ #: ../Views/Admin/Power.rb:12
1100
+ msgid "reboot_dreamplug"
1101
+ msgstr ""
1102
+
1103
+ #. Comes from file Views/Admin/Power.rb and line is show_button :update_files
1104
+ #: ../Views/Admin/Power.rb:15
1105
+ msgid "update_files"
1106
+ msgstr ""
1107
+
1108
+ #. Comes from file Views/Admin/Power.rb and line is show_button :OK
1109
+ #: ../Views/Admin/Power.rb:19
1110
+ msgid "OK"
1111
+ msgstr ""
1112
+
1113
+ #. Comes from file Views/Admin/Report.rb and line is class AdminReport < View
1114
+ #: ../Views/Admin/Report.rb:1
1115
+ msgid "AdminReport"
1116
+ msgstr ""
1117
+
1118
+ #. Comes from file Views/Admin/Report.rb and line is show_list_single :report_type, "View.AdminReport.list_types", :callback => true
1119
+ #: ../Views/Admin/Report.rb:8
1120
+ msgid "report_type"
1121
+ msgstr ""
1122
+
1123
+ #. Comes from file Views/Admin/Tabs.rb and line is class AdminTabs < View
1124
+ #: ../Views/Admin/Tabs.rb:1
1125
+ msgid "AdminTabs"
1126
+ msgstr ""
1127
+
1128
+ #. Comes from file Views/Compta/Admin.rb and line is class ComptaAdmin < View
1129
+ #: ../Views/Compta/Admin.rb:3
1130
+ msgid "ComptaAdmin"
1131
+ msgstr ""
1132
+
1133
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :archive, :update_totals, :clean_up
1134
+ #: ../Views/Compta/Admin.rb:8
1135
+ msgid "archive"
1136
+ msgstr ""
1137
+
1138
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :archive, :update_totals, :clean_up
1139
+ #: ../Views/Compta/Admin.rb:8
1140
+ msgid "update_totals"
1141
+ msgstr ""
1142
+
1143
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :archive, :update_totals, :clean_up
1144
+ #: ../Views/Compta/Admin.rb:8
1145
+ msgid "clean_up"
1146
+ msgstr ""
1147
+
1148
+ #. Comes from file Views/Compta/Admin.rb and line is show_button :close
1149
+ #.
1150
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :close
1151
+ #.
1152
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :close
1153
+ #.
1154
+ #. Comes from file Views/Course/Grade.rb and line is show_button :close
1155
+ #.
1156
+ #. Comes from file Views/Course/Grade.rb and line is show_button :close
1157
+ #.
1158
+ #. Comes from file Views/Course/Grade.rb and line is show_button :close
1159
+ #.
1160
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_students, :close
1161
+ #.
1162
+ #. Comes from file Views/Course/Modify.rb and line is show_button :close
1163
+ #.
1164
+ #. Comes from file Views/Course/Modify.rb and line is show_button :close
1165
+ #.
1166
+ #. Comes from file Views/Course/Print.rb and line is show_button :close
1167
+ #.
1168
+ #. Comes from file Views/Course/Print.rb and line is show_button :close
1169
+ #.
1170
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :close
1171
+ #.
1172
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :new_course, :close
1173
+ #.
1174
+ #. Comes from file Views/Network/Share.rb and line is show_button :close
1175
+ #.
1176
+ #. Comes from file Views/Network/Tigo.rb and line is show_button :close
1177
+ #.
1178
+ #. Comes from file Views/Person/Course.rb and line is show_button :add_course, :close
1179
+ #.
1180
+ #. Comes from file Views/Person/Modify.rb and line is show_button :close
1181
+ #.
1182
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :add_person, :close
1183
+ #.
1184
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :close
1185
+ #.
1186
+ #. Comes from file Views/Self/Concours.rb and line is show_button :close
1187
+ #: ../Views/Compta/Admin.rb:11
1188
+ #: ../Views/Course/Diploma.rb:30
1189
+ #: ../Views/Course/Diploma.rb:34
1190
+ #: ../Views/Course/Grade.rb:39
1191
+ #: ../Views/Course/Grade.rb:44
1192
+ #: ../Views/Course/Grade.rb:58
1193
+ #: ../Views/Course/Modify.rb:45
1194
+ #: ../Views/Course/Modify.rb:54
1195
+ #: ../Views/Course/Modify.rb:58
1196
+ #: ../Views/Course/Print.rb:20
1197
+ #: ../Views/Course/Print.rb:24
1198
+ #: ../Views/Course/Tabs.rb:14
1199
+ #: ../Views/Course/Tabs.rb:40
1200
+ #: ../Views/Network/Share.rb:46
1201
+ #: ../Views/Network/Tigo.rb:45
1202
+ #: ../Views/Person/Course.rb:18
1203
+ #: ../Views/Person/Modify.rb:31
1204
+ #: ../Views/Person/Tabs.rb:18
1205
+ #: ../Views/Person/Tabs.rb:23
1206
+ #: ../Views/Self/Concours.rb:53
1207
+ msgid "close"
1208
+ msgstr "اغلاق"
1209
+
1210
+ #. Comes from file Views/Compta/Course.rb and line is class ComptaCourse < View
1211
+ #: ../Views/Compta/Course.rb:4
1212
+ msgid "ComptaCourse"
1213
+ msgstr ""
1214
+
1215
+ #. Comes from file Views/Compta/Show.rb and line is class ComptaShow < View
1216
+ #: ../Views/Compta/Show.rb:1
1217
+ msgid "ComptaShow"
1218
+ msgstr ""
1219
+
1220
+ #. Comes from file Views/Compta/Show.rb and line is vtlp_list :account_list, 'path', :width => 150
1221
+ #: ../Views/Compta/Show.rb:11
1222
+ msgid "account_list"
1223
+ msgstr ""
1224
+
1225
+ #. Comes from file Views/Compta/Show.rb and line is show_int :total
1226
+ #: ../Views/Compta/Show.rb:14
1227
+ msgid "total"
1228
+ msgstr ""
1229
+
1230
+ #. Comes from file Views/Compta/Tabs.rb and line is class ComptaTabs < View
1231
+ #: ../Views/Compta/Tabs.rb:4
1232
+ msgid "ComptaTabs"
1233
+ msgstr ""
1234
+
1235
+ #. Comes from file Views/Compta/Transfer.rb and line is class ComptaTransfer < View
1236
+ #: ../Views/Compta/Transfer.rb:4
1237
+ msgid "ComptaTransfer"
1238
+ msgstr ""
1239
+
1240
+ #. Comes from file Views/Compta/Transfer.rb and line is vtlp_list :person_list, :account_due
1241
+ #: ../Views/Compta/Transfer.rb:14
1242
+ msgid "person_list"
1243
+ msgstr ""
1244
+
1245
+ #. Comes from file Views/Compta/Transfer.rb and line is show_button :empty
1246
+ #: ../Views/Compta/Transfer.rb:15
1247
+ msgid "empty"
1248
+ msgstr ""
1249
+
1250
+ #. Comes from file Views/Compta/Transfer.rb and line is show_int_ro :account_cash
1251
+ #: ../Views/Compta/Transfer.rb:18
1252
+ msgid "account_cash"
1253
+ msgstr ""
1254
+
1255
+ #. Comes from file Views/Compta/Users.rb and line is class ComptaUsers < View
1256
+ #: ../Views/Compta/Users.rb:1
1257
+ msgid "ComptaUsers"
1258
+ msgstr ""
1259
+
1260
+ #. Comes from file Views/Compta/Users.rb and line is vtlp_list :users_list, 'name', :width => 150
1261
+ #: ../Views/Compta/Users.rb:9
1262
+ msgid "users_list"
1263
+ msgstr ""
1264
+
1265
+ #. Comes from file Views/Compta/Users.rb and line is show_str :full
1266
+ #: ../Views/Compta/Users.rb:14
1267
+ msgid "full"
1268
+ msgstr ""
1269
+
1270
+ #. Comes from file Views/Compta/Users.rb and line is show_str :pass
1271
+ #: ../Views/Compta/Users.rb:15
1272
+ msgid "pass"
1273
+ msgstr ""
1274
+
1275
+ #. Comes from file Views/Compta/Users.rb and line is show_int :account_index
1276
+ #: ../Views/Compta/Users.rb:16
1277
+ msgid "account_index"
1278
+ msgstr ""
1279
+
1280
+ #. Comes from file Views/Compta/Users.rb and line is show_int :movement_index
1281
+ #: ../Views/Compta/Users.rb:17
1282
+ msgid "movement_index"
1283
+ msgstr ""
1284
+
1285
+ #. Comes from file Views/Course/Diploma.rb and line is class CourseDiploma < View
1286
+ #: ../Views/Course/Diploma.rb:7
1287
+ msgid "CourseDiploma"
1288
+ msgstr ""
1289
+
1290
+ #. Comes from file Views/Course/Diploma.rb and line is show_table :diplomas_t, :headings => [:Name, :Grade, :State],
1291
+ #: ../Views/Course/Diploma.rb:18
1292
+ msgid "diplomas_t"
1293
+ msgstr ""
1294
+
1295
+ #. Comes from file Views/Course/Diploma.rb and line is show_info :status
1296
+ #.
1297
+ #. Comes from file Views/Network/Tigo.rb and line is show_html :status
1298
+ #: ../Views/Course/Diploma.rb:23
1299
+ #: ../Views/Network/Tigo.rb:35
1300
+ msgid "status"
1301
+ msgstr ""
1302
+
1303
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :do_diplomas, :abort
1304
+ #: ../Views/Course/Diploma.rb:24
1305
+ msgid "do_diplomas"
1306
+ msgstr ""
1307
+
1308
+ #. Comes from file Views/Course/Diploma.rb and line is show_button :do_diplomas, :abort
1309
+ #: ../Views/Course/Diploma.rb:24
1310
+ msgid "abort"
1311
+ msgstr ""
1312
+
1313
+ #. Comes from file Views/Course/Diploma.rb and line is show_print :print
1314
+ #: ../Views/Course/Diploma.rb:26
1315
+ msgid "print"
1316
+ msgstr ""
1317
+
1318
+ #. Comes from file Views/Course/Diploma.rb and line is show_html :missing
1319
+ #.
1320
+ #. Comes from file Views/Course/Modify.rb and line is show_html :missing
1321
+ #.
1322
+ #. Comes from file Views/Course/Print.rb and line is show_html :missing
1323
+ #: ../Views/Course/Diploma.rb:29
1324
+ #: ../Views/Course/Modify.rb:53
1325
+ #: ../Views/Course/Print.rb:19
1326
+ msgid "missing"
1327
+ msgstr ""
1328
+
1329
+ #. Comes from file Views/Course/Diploma.rb and line is show_html :msg_print
1330
+ #.
1331
+ #. Comes from file Views/Course/Modify.rb and line is show_html :msg_print
1332
+ #.
1333
+ #. Comes from file Views/Course/Print.rb and line is show_html :msg_print
1334
+ #.
1335
+ #. Comes from file Views/Person/Modify.rb and line is show_html :msg_print
1336
+ #: ../Views/Course/Diploma.rb:33
1337
+ #: ../Views/Course/Modify.rb:57
1338
+ #: ../Views/Course/Print.rb:23
1339
+ #: ../Views/Person/Modify.rb:30
1340
+ msgid "msg_print"
1341
+ msgstr ""
1342
+
1343
+ #. Comes from file Views/Course/Grade.rb and line is class CourseGrade < View
1344
+ #: ../Views/Course/Grade.rb:5
1345
+ msgid "CourseGrade"
1346
+ msgstr ""
1347
+
1348
+ #. Comes from file Views/Course/Grade.rb and line is show_str_ro :last_synched
1349
+ #: ../Views/Course/Grade.rb:21
1350
+ msgid "last_synched"
1351
+ msgstr ""
1352
+
1353
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
1354
+ #: ../Views/Course/Grade.rb:22
1355
+ msgid "prepare_files"
1356
+ msgstr ""
1357
+
1358
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
1359
+ #: ../Views/Course/Grade.rb:22
1360
+ msgid "fetch_files"
1361
+ msgstr ""
1362
+
1363
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
1364
+ #: ../Views/Course/Grade.rb:22
1365
+ msgid "transfer_files"
1366
+ msgstr ""
1367
+
1368
+ #. Comes from file Views/Course/Grade.rb and line is show_button :prepare_files, :fetch_files, :transfer_files, :sync_server
1369
+ #: ../Views/Course/Grade.rb:22
1370
+ msgid "sync_server"
1371
+ msgstr ""
1372
+
1373
+ #. Comes from file Views/Course/Grade.rb and line is show_int :mean1
1374
+ #: ../Views/Course/Grade.rb:25
1375
+ msgid "mean1"
1376
+ msgstr ""
1377
+
1378
+ #. Comes from file Views/Course/Grade.rb and line is show_int :mean2
1379
+ #: ../Views/Course/Grade.rb:26
1380
+ msgid "mean2"
1381
+ msgstr ""
1382
+
1383
+ #. Comes from file Views/Course/Grade.rb and line is show_int :mean3
1384
+ #: ../Views/Course/Grade.rb:27
1385
+ msgid "mean3"
1386
+ msgstr ""
1387
+
1388
+ #. Comes from file Views/Course/Grade.rb and line is show_int :mean4
1389
+ #: ../Views/Course/Grade.rb:28
1390
+ msgid "mean4"
1391
+ msgstr ""
1392
+
1393
+ #. Comes from file Views/Course/Grade.rb and line is show_int :mean5
1394
+ #: ../Views/Course/Grade.rb:29
1395
+ msgid "mean5"
1396
+ msgstr ""
1397
+
1398
+ #. Comes from file Views/Course/Grade.rb and line is show_int_ro :files_saved
1399
+ #: ../Views/Course/Grade.rb:30
1400
+ msgid "files_saved"
1401
+ msgstr ""
1402
+
1403
+ #. Comes from file Views/Course/Grade.rb and line is show_button :save, :upload
1404
+ #: ../Views/Course/Grade.rb:34
1405
+ msgid "upload"
1406
+ msgstr ""
1407
+
1408
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :files
1409
+ #: ../Views/Course/Grade.rb:38
1410
+ msgid "files"
1411
+ msgstr ""
1412
+
1413
+ #. Comes from file Views/Course/Grade.rb and line is show_html :synching
1414
+ #: ../Views/Course/Grade.rb:43
1415
+ msgid "synching"
1416
+ msgstr ""
1417
+
1418
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_1
1419
+ #: ../Views/Course/Grade.rb:48
1420
+ msgid "name_file_1"
1421
+ msgstr ""
1422
+
1423
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_1, :callback => true
1424
+ #: ../Views/Course/Grade.rb:49
1425
+ msgid "upload_file_1"
1426
+ msgstr ""
1427
+
1428
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_2
1429
+ #: ../Views/Course/Grade.rb:50
1430
+ msgid "name_file_2"
1431
+ msgstr ""
1432
+
1433
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_2, :callback => true
1434
+ #: ../Views/Course/Grade.rb:51
1435
+ msgid "upload_file_2"
1436
+ msgstr ""
1437
+
1438
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_3
1439
+ #: ../Views/Course/Grade.rb:52
1440
+ msgid "name_file_3"
1441
+ msgstr ""
1442
+
1443
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_3, :callback => true
1444
+ #: ../Views/Course/Grade.rb:53
1445
+ msgid "upload_file_3"
1446
+ msgstr ""
1447
+
1448
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_4
1449
+ #: ../Views/Course/Grade.rb:54
1450
+ msgid "name_file_4"
1451
+ msgstr ""
1452
+
1453
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_4, :callback => true
1454
+ #: ../Views/Course/Grade.rb:55
1455
+ msgid "upload_file_4"
1456
+ msgstr ""
1457
+
1458
+ #. Comes from file Views/Course/Grade.rb and line is show_html :name_file_5
1459
+ #: ../Views/Course/Grade.rb:56
1460
+ msgid "name_file_5"
1461
+ msgstr ""
1462
+
1463
+ #. Comes from file Views/Course/Grade.rb and line is show_upload :upload_file_5, :callback => true
1464
+ #: ../Views/Course/Grade.rb:57
1465
+ msgid "upload_file_5"
1466
+ msgstr ""
1467
+
1468
+ #. Comes from file Views/Course/Modify.rb and line is class CourseModify < View
1469
+ #: ../Views/Course/Modify.rb:15
1470
+ msgid "CourseModify"
1471
+ msgstr ""
1472
+
1473
+ #. Comes from file Views/Course/Modify.rb and line is show_print :print_presence
1474
+ #.
1475
+ #. Comes from file Views/Course/Print.rb and line is show_print :print_presence
1476
+ #: ../Views/Course/Modify.rb:34
1477
+ #: ../Views/Course/Print.rb:13
1478
+ msgid "print_presence"
1479
+ msgstr ""
1480
+
1481
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_add, :del_student, :edit_student
1482
+ #: ../Views/Course/Modify.rb:38
1483
+ msgid "bulk_add"
1484
+ msgstr ""
1485
+
1486
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_add, :del_student, :edit_student
1487
+ #: ../Views/Course/Modify.rb:38
1488
+ msgid "del_student"
1489
+ msgstr ""
1490
+
1491
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_add, :del_student, :edit_student
1492
+ #: ../Views/Course/Modify.rb:38
1493
+ msgid "edit_student"
1494
+ msgstr ""
1495
+
1496
+ #. Comes from file Views/Course/Modify.rb and line is show_print :print_student
1497
+ #: ../Views/Course/Modify.rb:40
1498
+ msgid "print_student"
1499
+ msgstr ""
1500
+
1501
+ #. Comes from file Views/Course/Modify.rb and line is show_text :names
1502
+ #: ../Views/Course/Modify.rb:44
1503
+ msgid "names"
1504
+ msgstr ""
1505
+
1506
+ #. Comes from file Views/Course/Modify.rb and line is show_button :bulk_students, :close
1507
+ #: ../Views/Course/Modify.rb:45
1508
+ msgid "bulk_students"
1509
+ msgstr ""
1510
+
1511
+ #. Comes from file Views/Course/Modify.rb and line is show_str :double_name
1512
+ #: ../Views/Course/Modify.rb:48
1513
+ msgid "double_name"
1514
+ msgstr ""
1515
+
1516
+ #. Comes from file Views/Course/Modify.rb and line is show_entity_person_lazy :double_proposition, :drop, :full_name
1517
+ #: ../Views/Course/Modify.rb:49
1518
+ msgid "double_proposition"
1519
+ msgstr ""
1520
+
1521
+ #. Comes from file Views/Course/Modify.rb and line is show_button :accept, :create_new
1522
+ #: ../Views/Course/Modify.rb:50
1523
+ msgid "accept"
1524
+ msgstr ""
1525
+
1526
+ #. Comes from file Views/Course/Modify.rb and line is show_button :accept, :create_new
1527
+ #: ../Views/Course/Modify.rb:50
1528
+ msgid "create_new"
1529
+ msgstr ""
1530
+
1531
+ #. Comes from file Views/Course/Print.rb and line is class CoursePrint < View
1532
+ #: ../Views/Course/Print.rb:3
1533
+ msgid "CoursePrint"
1534
+ msgstr ""
1535
+
1536
+ #. Comes from file Views/Course/Print.rb and line is show_print :print_exa_1
1537
+ #: ../Views/Course/Print.rb:14
1538
+ msgid "print_exa_1"
1539
+ msgstr ""
1540
+
1541
+ #. Comes from file Views/Course/Print.rb and line is show_print :print_exa_2
1542
+ #: ../Views/Course/Print.rb:15
1543
+ msgid "print_exa_2"
1544
+ msgstr ""
1545
+
1546
+ #. Comes from file Views/Course/Print.rb and line is show_print :print_exa_3
1547
+ #: ../Views/Course/Print.rb:16
1548
+ msgid "print_exa_3"
1549
+ msgstr ""
1550
+
1551
+ #. Comes from file Views/Course/Responsible.rb and line is class CourseResponsible < View
1552
+ #: ../Views/Course/Responsible.rb:1
1553
+ msgid "CourseResponsible"
1554
+ msgstr ""
1555
+
1556
+ #. Comes from file Views/Course/Responsible.rb and line is vtlp_list :persons, 'login_name', 'listp_responsible'
1557
+ #.
1558
+ #. Comes from file Views/Person/Tabs.rb and line is show_list_single :persons, "[]", :callback => true
1559
+ #.
1560
+ #. Comes from file Views/Person/Tabs.rb and line is show_arg :persons, :flexheight => 1
1561
+ #: ../Views/Course/Responsible.rb:12
1562
+ #: ../Views/Person/Tabs.rb:10
1563
+ #: ../Views/Person/Tabs.rb:11
1564
+ msgid "persons"
1565
+ msgstr ""
1566
+
1567
+ #. Comes from file Views/Course/Stats.rb and line is class CourseStats < View
1568
+ #: ../Views/Course/Stats.rb:1
1569
+ msgid "CourseStats"
1570
+ msgstr ""
1571
+
1572
+ #. Comes from file Views/Course/Tabs.rb and line is class CourseTabs < View
1573
+ #: ../Views/Course/Tabs.rb:1
1574
+ msgid "CourseTabs"
1575
+ msgstr ""
1576
+
1577
+ #. Comes from file Views/Course/Tabs.rb and line is show_list_single :courses, :flexheight => 1, :callback => true
1578
+ #.
1579
+ #. Comes from file Views/Person/Course.rb and line is show_list_single :courses
1580
+ #: ../Views/Course/Tabs.rb:8
1581
+ #: ../Views/Person/Course.rb:13
1582
+ msgid "courses"
1583
+ msgstr ""
1584
+
1585
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :delete, :add
1586
+ #.
1587
+ #. Comes from file Views/Person/Course.rb and line is show_button :add, :delete
1588
+ #.
1589
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :start_search, :delete, :add
1590
+ #: ../Views/Course/Tabs.rb:9
1591
+ #: ../Views/Person/Course.rb:14
1592
+ #: ../Views/Person/Tabs.rb:12
1593
+ msgid "add"
1594
+ msgstr ""
1595
+
1596
+ #. Comes from file Views/Course/Tabs.rb and line is show_html "<h1>You're not allowed to do that</h1>"
1597
+ #: ../Views/Course/Tabs.rb:13
1598
+ msgid " show_html \"<h1>You're not allowed to do that</h1>\""
1599
+ msgstr ""
1600
+
1601
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :ct_name
1602
+ #: ../Views/Course/Tabs.rb:20
1603
+ msgid "ct_name"
1604
+ msgstr ""
1605
+
1606
+ #. Comes from file Views/Course/Tabs.rb and line is show_int :ct_duration
1607
+ #: ../Views/Course/Tabs.rb:21
1608
+ msgid "ct_duration"
1609
+ msgstr ""
1610
+
1611
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :ct_desc
1612
+ #: ../Views/Course/Tabs.rb:22
1613
+ msgid "ct_desc"
1614
+ msgstr ""
1615
+
1616
+ #. Comes from file Views/Course/Tabs.rb and line is show_text :ct_contents
1617
+ #: ../Views/Course/Tabs.rb:23
1618
+ msgid "ct_contents"
1619
+ msgstr ""
1620
+
1621
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :new_room
1622
+ #: ../Views/Course/Tabs.rb:26
1623
+ msgid "new_room"
1624
+ msgstr ""
1625
+
1626
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :new_teacher
1627
+ #: ../Views/Course/Tabs.rb:29
1628
+ msgid "new_teacher"
1629
+ msgstr ""
1630
+
1631
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :add_missing
1632
+ #: ../Views/Course/Tabs.rb:31
1633
+ msgid "add_missing"
1634
+ msgstr ""
1635
+
1636
+ #. Comes from file Views/Course/Tabs.rb and line is show_entity_courseType :new_ctype, :drop, :name
1637
+ #: ../Views/Course/Tabs.rb:38
1638
+ msgid "new_ctype"
1639
+ msgstr ""
1640
+
1641
+ #. Comes from file Views/Course/Tabs.rb and line is show_str :name_date
1642
+ #: ../Views/Course/Tabs.rb:39
1643
+ msgid "name_date"
1644
+ msgstr ""
1645
+
1646
+ #. Comes from file Views/Course/Tabs.rb and line is show_button :new_course, :close
1647
+ #: ../Views/Course/Tabs.rb:40
1648
+ msgid "new_course"
1649
+ msgstr ""
1650
+
1651
+ #. Comes from file Views/Inventory/Computer.rb and line is class InventoryComputer < View
1652
+ #: ../Views/Inventory/Computer.rb:1
1653
+ msgid "InventoryComputer"
1654
+ msgstr ""
1655
+
1656
+ #. Comes from file Views/Inventory/Computer.rb and line is vtlp_list :computer_list, 'name_service', :width => 100
1657
+ #: ../Views/Inventory/Computer.rb:8
1658
+ msgid "computer_list"
1659
+ msgstr ""
1660
+
1661
+ #. Comes from file Views/Inventory/Room.rb and line is class InventoryRoom < View
1662
+ #: ../Views/Inventory/Room.rb:1
1663
+ msgid "InventoryRoom"
1664
+ msgstr ""
1665
+
1666
+ #. Comes from file Views/Inventory/Room.rb and line is vtlp_list :rooms, 'name'
1667
+ #: ../Views/Inventory/Room.rb:8
1668
+ msgid "rooms"
1669
+ msgstr ""
1670
+
1671
+ #. Comes from file Views/Inventory/Tabs.rb and line is class InventoryTabs < View
1672
+ #: ../Views/Inventory/Tabs.rb:1
1673
+ msgid "InventoryTabs"
1674
+ msgstr ""
1675
+
1676
+ #. Comes from file Views/Inventory/TicketClosed.rb and line is class InventoryTicketClosed < View
1677
+ #: ../Views/Inventory/TicketClosed.rb:1
1678
+ msgid "InventoryTicketClosed"
1679
+ msgstr ""
1680
+
1681
+ #. Comes from file Views/Inventory/TicketOpen.rb and line is class InventoryTicketOpen < View
1682
+ #: ../Views/Inventory/TicketOpen.rb:1
1683
+ msgid "InventoryTicketOpen"
1684
+ msgstr ""
1685
+
1686
+ #. Comes from file Views/Network/Access.rb and line is class NetworkAccess < View
1687
+ #: ../Views/Network/Access.rb:1
1688
+ msgid "NetworkAccess"
1689
+ msgstr ""
1690
+
1691
+ #. Comes from file Views/Network/Access.rb and line is show_list_single :access_times_view
1692
+ #: ../Views/Network/Access.rb:20
1693
+ msgid "access_times_view"
1694
+ msgstr ""
1695
+
1696
+ #. Comes from file Views/Network/Access.rb and line is show_button :save, :add_time, :delete_time
1697
+ #: ../Views/Network/Access.rb:22
1698
+ msgid "add_time"
1699
+ msgstr ""
1700
+
1701
+ #. Comes from file Views/Network/Access.rb and line is show_button :save, :add_time, :delete_time
1702
+ #: ../Views/Network/Access.rb:22
1703
+ msgid "delete_time"
1704
+ msgstr ""
1705
+
1706
+ #. Comes from file Views/Network/Access.rb and line is show_list_single :members_view
1707
+ #: ../Views/Network/Access.rb:25
1708
+ msgid "members_view"
1709
+ msgstr ""
1710
+
1711
+ #. Comes from file Views/Network/Access.rb and line is show_button :add_member, :delete_member
1712
+ #: ../Views/Network/Access.rb:27
1713
+ msgid "add_member"
1714
+ msgstr ""
1715
+
1716
+ #. Comes from file Views/Network/Access.rb and line is show_button :add_member, :delete_member
1717
+ #: ../Views/Network/Access.rb:27
1718
+ msgid "delete_member"
1719
+ msgstr ""
1720
+
1721
+ #. Comes from file Views/Network/Block.rb and line is class NetworkBlock < View
1722
+ #: ../Views/Network/Block.rb:1
1723
+ msgid "NetworkBlock"
1724
+ msgstr ""
1725
+
1726
+ #. Comes from file Views/Network/Block.rb and line is show_list :blocked, "View.NetworkBlock.list_dhcp", :width => 400
1727
+ #: ../Views/Network/Block.rb:16
1728
+ msgid "blocked"
1729
+ msgstr ""
1730
+
1731
+ #. Comes from file Views/Network/Block.rb and line is show_button :block
1732
+ #: ../Views/Network/Block.rb:17
1733
+ msgid "block"
1734
+ msgstr ""
1735
+
1736
+ #. Comes from file Views/Network/Connection.rb and line is class NetworkConnection < View
1737
+ #: ../Views/Network/Connection.rb:1
1738
+ msgid "NetworkConnection"
1739
+ msgstr ""
1740
+
1741
+ #. Comes from file Views/Network/Connection.rb and line is show_str_ro :connection
1742
+ #: ../Views/Network/Connection.rb:7
1743
+ msgid "connection"
1744
+ msgstr ""
1745
+
1746
+ #. Comes from file Views/Network/Connection.rb and line is show_int :cost_base
1747
+ #: ../Views/Network/Connection.rb:8
1748
+ msgid "cost_base"
1749
+ msgstr ""
1750
+
1751
+ #. Comes from file Views/Network/Connection.rb and line is show_int :cost_shared
1752
+ #: ../Views/Network/Connection.rb:9
1753
+ msgid "cost_shared"
1754
+ msgstr ""
1755
+
1756
+ #. Comes from file Views/Network/Connection.rb and line is show_list_drop :allow_free, "%w( true false )"
1757
+ #: ../Views/Network/Connection.rb:10
1758
+ msgid "allow_free"
1759
+ msgstr ""
1760
+
1761
+ #. Comes from file Views/Network/Connection.rb and line is show_button :save_costs
1762
+ #: ../Views/Network/Connection.rb:11
1763
+ msgid "save_costs"
1764
+ msgstr ""
1765
+
1766
+ #. Comes from file Views/Network/Restriction.rb and line is class NetworkRestriction < View
1767
+ #: ../Views/Network/Restriction.rb:1
1768
+ msgid "NetworkRestriction"
1769
+ msgstr ""
1770
+
1771
+ #. Comes from file Views/Network/Restriction.rb and line is show_html :state
1772
+ #: ../Views/Network/Restriction.rb:7
1773
+ msgid "state"
1774
+ msgstr ""
1775
+
1776
+ #. Comes from file Views/Network/Restriction.rb and line is show_button :remove_restriction, :restrict_info1, :restrict_info2
1777
+ #: ../Views/Network/Restriction.rb:8
1778
+ msgid "remove_restriction"
1779
+ msgstr ""
1780
+
1781
+ #. Comes from file Views/Network/Restriction.rb and line is show_button :remove_restriction, :restrict_info1, :restrict_info2
1782
+ #: ../Views/Network/Restriction.rb:8
1783
+ msgid "restrict_info1"
1784
+ msgstr ""
1785
+
1786
+ #. Comes from file Views/Network/Restriction.rb and line is show_button :remove_restriction, :restrict_info1, :restrict_info2
1787
+ #: ../Views/Network/Restriction.rb:8
1788
+ msgid "restrict_info2"
1789
+ msgstr ""
1790
+
1791
+ #. Comes from file Views/Network/Share.rb and line is class NetworkShare < View
1792
+ #: ../Views/Network/Share.rb:3
1793
+ msgid "NetworkShare"
1794
+ msgstr ""
1795
+
1796
+ #. Comes from file Views/Network/Share.rb and line is vtlp_list :shares, :name
1797
+ #: ../Views/Network/Share.rb:22
1798
+ msgid "shares"
1799
+ msgstr ""
1800
+
1801
+ #. Comes from file Views/Network/Share.rb and line is show_button :share_save, :change_path, :add_htaccess
1802
+ #: ../Views/Network/Share.rb:27
1803
+ msgid "share_save"
1804
+ msgstr ""
1805
+
1806
+ #. Comes from file Views/Network/Share.rb and line is show_button :share_save, :change_path, :add_htaccess
1807
+ #: ../Views/Network/Share.rb:27
1808
+ msgid "change_path"
1809
+ msgstr ""
1810
+
1811
+ #. Comes from file Views/Network/Share.rb and line is show_button :share_save, :change_path, :add_htaccess
1812
+ #: ../Views/Network/Share.rb:27
1813
+ msgid "add_htaccess"
1814
+ msgstr ""
1815
+
1816
+ #. Comes from file Views/Network/Share.rb and line is show_list_single :users, :width => 200
1817
+ #: ../Views/Network/Share.rb:30
1818
+ msgid "users"
1819
+ msgstr ""
1820
+
1821
+ #. Comes from file Views/Network/Share.rb and line is show_button :no_access, :read_write, :read_only
1822
+ #: ../Views/Network/Share.rb:31
1823
+ msgid "no_access"
1824
+ msgstr ""
1825
+
1826
+ #. Comes from file Views/Network/Share.rb and line is show_button :no_access, :read_write, :read_only
1827
+ #: ../Views/Network/Share.rb:31
1828
+ msgid "read_write"
1829
+ msgstr ""
1830
+
1831
+ #. Comes from file Views/Network/Share.rb and line is show_button :no_access, :read_write, :read_only
1832
+ #: ../Views/Network/Share.rb:31
1833
+ msgid "read_only"
1834
+ msgstr ""
1835
+
1836
+ #. Comes from file Views/Network/Share.rb and line is show_str :domain, :width => 200
1837
+ #: ../Views/Network/Share.rb:36
1838
+ msgid "domain"
1839
+ msgstr ""
1840
+
1841
+ #. Comes from file Views/Network/Share.rb and line is show_str :hostname
1842
+ #: ../Views/Network/Share.rb:37
1843
+ msgid "hostname"
1844
+ msgstr ""
1845
+
1846
+ #. Comes from file Views/Network/Share.rb and line is show_button :samba_save
1847
+ #: ../Views/Network/Share.rb:38
1848
+ msgid "samba_save"
1849
+ msgstr ""
1850
+
1851
+ #. Comes from file Views/Network/Share.rb and line is show_html :msg_txt
1852
+ #: ../Views/Network/Share.rb:45
1853
+ msgid "msg_txt"
1854
+ msgstr ""
1855
+
1856
+ #. Comes from file Views/Network/Tabs.rb and line is class NetworkTabs < View
1857
+ #: ../Views/Network/Tabs.rb:1
1858
+ msgid "NetworkTabs"
1859
+ msgstr ""
1860
+
1861
+ #. Comes from file Views/Network/Tigo.rb and line is class NetworkTigo < View
1862
+ #: ../Views/Network/Tigo.rb:1
1863
+ msgid "NetworkTigo"
1864
+ msgstr ""
1865
+
1866
+ #. Comes from file Views/Network/Tigo.rb and line is show_int_ro :usage_day_mo
1867
+ #: ../Views/Network/Tigo.rb:16
1868
+ msgid "usage_day_mo"
1869
+ msgstr ""
1870
+
1871
+ #. Comes from file Views/Network/Tigo.rb and line is show_button :update_params
1872
+ #: ../Views/Network/Tigo.rb:17
1873
+ msgid "update_params"
1874
+ msgstr ""
1875
+
1876
+ #. Comes from file Views/Network/Tigo.rb and line is show_int :code, :width => 150
1877
+ #: ../Views/Network/Tigo.rb:20
1878
+ msgid "code"
1879
+ msgstr ""
1880
+
1881
+ #. Comes from file Views/Network/Tigo.rb and line is show_button :recharge
1882
+ #: ../Views/Network/Tigo.rb:21
1883
+ msgid "recharge"
1884
+ msgstr ""
1885
+
1886
+ #. Comes from file Views/Network/Tigo.rb and line is show_button :add_promotion
1887
+ #: ../Views/Network/Tigo.rb:25
1888
+ msgid "add_promotion"
1889
+ msgstr ""
1890
+
1891
+ #. Comes from file Views/Network/Tigo.rb and line is show_str :tigo_number
1892
+ #: ../Views/Network/Tigo.rb:30
1893
+ msgid "tigo_number"
1894
+ msgstr ""
1895
+
1896
+ #. Comes from file Views/Network/Tigo.rb and line is show_str_ro :tigo_recharge
1897
+ #: ../Views/Network/Tigo.rb:31
1898
+ msgid "tigo_recharge"
1899
+ msgstr ""
1900
+
1901
+ #. Comes from file Views/Network/Tigo.rb and line is show_button :update_tigo_number
1902
+ #: ../Views/Network/Tigo.rb:32
1903
+ msgid "update_tigo_number"
1904
+ msgstr ""
1905
+
1906
+ #. Comes from file Views/Network/Tigo.rb and line is show_html :successful_promotions
1907
+ #: ../Views/Network/Tigo.rb:38
1908
+ msgid "successful_promotions"
1909
+ msgstr ""
1910
+
1911
+ #. Comes from file Views/Network/Tigo.rb and line is show_button :show_all_promotions
1912
+ #: ../Views/Network/Tigo.rb:39
1913
+ msgid "show_all_promotions"
1914
+ msgstr ""
1915
+
1916
+ #. Comes from file Views/Network/Tigo.rb and line is show_html :msg
1917
+ #: ../Views/Network/Tigo.rb:44
1918
+ msgid "msg"
1919
+ msgstr ""
1920
+
1921
+ #. Comes from file Views/Person/Admin.rb and line is class PersonAdmin < View
1922
+ #: ../Views/Person/Admin.rb:3
1923
+ msgid "PersonAdmin"
1924
+ msgstr ""
1925
+
1926
+ #. Comes from file Views/Person/Admin.rb and line is show_fromto :internet_block
1927
+ #: ../Views/Person/Admin.rb:27
1928
+ msgid "internet_block"
1929
+ msgstr ""
1930
+
1931
+ #. Comes from file Views/Person/Admin.rb and line is show_button :add_block, :del_block
1932
+ #: ../Views/Person/Admin.rb:28
1933
+ msgid "add_block"
1934
+ msgstr ""
1935
+
1936
+ #. Comes from file Views/Person/Admin.rb and line is show_button :add_block, :del_block
1937
+ #: ../Views/Person/Admin.rb:28
1938
+ msgid "del_block"
1939
+ msgstr ""
1940
+
1941
+ #. Comes from file Views/Person/Course.rb and line is class PersonCourse < View
1942
+ #: ../Views/Person/Course.rb:3
1943
+ msgid "PersonCourse"
1944
+ msgstr ""
1945
+
1946
+ #. Comes from file Views/Person/Course.rb and line is show_list_single :courses_available, 'Entities.Courses.list_courses'
1947
+ #: ../Views/Person/Course.rb:17
1948
+ msgid "courses_available"
1949
+ msgstr ""
1950
+
1951
+ #. Comes from file Views/Person/Course.rb and line is show_button :add_course, :close
1952
+ #: ../Views/Person/Course.rb:18
1953
+ msgid "add_course"
1954
+ msgstr ""
1955
+
1956
+ #. Comes from file Views/Person/Credit.rb and line is class PersonCredit < View
1957
+ #: ../Views/Person/Credit.rb:1
1958
+ msgid "PersonCredit"
1959
+ msgstr ""
1960
+
1961
+ #. Comes from file Views/Person/Credit.rb and line is show_int :credit_add
1962
+ #: ../Views/Person/Credit.rb:9
1963
+ msgid "credit_add"
1964
+ msgstr ""
1965
+
1966
+ #. Comes from file Views/Person/Credit.rb and line is show_button :add_credit
1967
+ #: ../Views/Person/Credit.rb:12
1968
+ msgid "add_credit"
1969
+ msgstr ""
1970
+
1971
+ #. Comes from file Views/Person/Credit.rb and line is show_int_ro :your_account_total_due
1972
+ #: ../Views/Person/Credit.rb:14
1973
+ msgid "your_account_total_due"
1974
+ msgstr ""
1975
+
1976
+ #. Comes from file Views/Person/Modify.rb and line is class PersonModify < View
1977
+ #: ../Views/Person/Modify.rb:3
1978
+ msgid "PersonModify"
1979
+ msgstr ""
1980
+
1981
+ #. Comes from file Views/Person/Modify.rb and line is show_str :new_password
1982
+ #.
1983
+ #. Comes from file Views/Self/Show.rb and line is show_str :new_password
1984
+ #: ../Views/Person/Modify.rb:23
1985
+ #: ../Views/Self/Show.rb:14
1986
+ msgid "new_password"
1987
+ msgstr ""
1988
+
1989
+ #. Comes from file Views/Person/Modify.rb and line is show_html :not_allowed
1990
+ #: ../Views/Person/Modify.rb:25
1991
+ msgid "not_allowed"
1992
+ msgstr ""
1993
+
1994
+ #. Comes from file Views/Person/Modify.rb and line is show_button :change_password
1995
+ #.
1996
+ #. Comes from file Views/Self/Show.rb and line is show_button :change_password
1997
+ #: ../Views/Person/Modify.rb:26
1998
+ #: ../Views/Self/Show.rb:15
1999
+ msgid "change_password"
2000
+ msgstr ""
2001
+
2002
+ #. Comes from file Views/Person/Tabs.rb and line is class PersonTabs < View
2003
+ #: ../Views/Person/Tabs.rb:1
2004
+ msgid "PersonTabs"
2005
+ msgstr ""
2006
+
2007
+ #. Comes from file Views/Person/Tabs.rb and line is show_str :search
2008
+ #: ../Views/Person/Tabs.rb:9
2009
+ msgid "search"
2010
+ msgstr ""
2011
+
2012
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :start_search, :delete, :add
2013
+ #: ../Views/Person/Tabs.rb:12
2014
+ msgid "start_search"
2015
+ msgstr ""
2016
+
2017
+ #. Comes from file Views/Person/Tabs.rb and line is show_str :complete_name, :width => 150
2018
+ #: ../Views/Person/Tabs.rb:16
2019
+ msgid "complete_name"
2020
+ msgstr ""
2021
+
2022
+ #. Comes from file Views/Person/Tabs.rb and line is show_str :login_prop
2023
+ #: ../Views/Person/Tabs.rb:17
2024
+ msgid "login_prop"
2025
+ msgstr ""
2026
+
2027
+ #. Comes from file Views/Person/Tabs.rb and line is show_button :add_person, :close
2028
+ #: ../Views/Person/Tabs.rb:18
2029
+ msgid "add_person"
2030
+ msgstr ""
2031
+
2032
+ #. Comes from file Views/Person/Tabs.rb and line is show_html :info
2033
+ #: ../Views/Person/Tabs.rb:22
2034
+ msgid "info"
2035
+ msgstr ""
2036
+
2037
+ #. Comes from file Views/Self/Cash.rb and line is class SelfCash < View
2038
+ #: ../Views/Self/Cash.rb:1
2039
+ msgid "SelfCash"
2040
+ msgstr ""
2041
+
2042
+ #. Comes from file Views/Self/Cash.rb and line is show_list_single :payments, :width => 500, :callback => true,
2043
+ #: ../Views/Self/Cash.rb:14
2044
+ msgid "payments"
2045
+ msgstr ""
2046
+
2047
+ #. Comes from file Views/Self/Cash.rb and line is show_button :update
2048
+ #: ../Views/Self/Cash.rb:18
2049
+ msgid "update"
2050
+ msgstr ""
2051
+
2052
+ #. Comes from file Views/Self/Chat.rb and line is class SelfChat < View
2053
+ #: ../Views/Self/Chat.rb:4
2054
+ msgid "SelfChat"
2055
+ msgstr ""
2056
+
2057
+ #. Comes from file Views/Self/Chat.rb and line is show_text :discussion, :width => 400
2058
+ #: ../Views/Self/Chat.rb:15
2059
+ msgid "discussion"
2060
+ msgstr ""
2061
+
2062
+ #. Comes from file Views/Self/Chat.rb and line is show_str :talk
2063
+ #: ../Views/Self/Chat.rb:16
2064
+ msgid "talk"
2065
+ msgstr ""
2066
+
2067
+ #. Comes from file Views/Self/Chat.rb and line is show_button :send
2068
+ #: ../Views/Self/Chat.rb:17
2069
+ msgid "send"
2070
+ msgstr ""
2071
+
2072
+ #. Comes from file Views/Self/Concours.rb and line is class SelfConcours < View
2073
+ #: ../Views/Self/Concours.rb:1
2074
+ msgid "SelfConcours"
2075
+ msgstr "مسابقة"
2076
+
2077
+ #. Comes from file Views/Self/Concours.rb and line is show_html :welcome
2078
+ #: ../Views/Self/Concours.rb:8
2079
+ msgid "welcome"
2080
+ msgstr "مرحبا"
2081
+
2082
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q01_isoc_start, "%w( répondez 1980 1992 2000 )"
2083
+ #: ../Views/Self/Concours.rb:16
2084
+ msgid "q01_isoc_start"
2085
+ msgstr "في اي عام تم تاسيس جمعية الانترنت العالمية"
2086
+
2087
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q02_isoc_chad_start, "%w( répondez 2000 2003 2007 )"
2088
+ #: ../Views/Self/Concours.rb:17
2089
+ msgid "q02_isoc_chad_start"
2090
+ msgstr "متي اسست جمعة الانترنت التشادية"
2091
+
2092
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q03_internet_sat, "%w( répondez vrai faux )"
2093
+ #: ../Views/Self/Concours.rb:18
2094
+ msgid "q03_internet_sat"
2095
+ msgstr "هل الانترنت يستخدم عبر الاقمار الصناعية فقط ؟"
2096
+
2097
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q04_internet_like, "%w( répondez route avion eau )"
2098
+ #: ../Views/Self/Concours.rb:19
2099
+ msgid "q04_internet_like"
2100
+ msgstr "الانترنت مثل ماذا ؟"
2101
+
2102
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q05_internet_needs, "%w( répondez portable fai disque_dur )"
2103
+ #: ../Views/Self/Concours.rb:20
2104
+ msgid "q05_internet_needs"
2105
+ msgstr "لاستعمال الانترنت ماذا نحتاج ؟"
2106
+
2107
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q06_fai_only_one, "%w( répondez vrai faux )"
2108
+ #: ../Views/Self/Concours.rb:21
2109
+ msgid "q06_fai_only_one"
2110
+ msgstr "هناك شركة واحدة فقط للاتصال بشبكة الانترنت"
2111
+
2112
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q07_price_free, "%w( répondez vrai faux )"
2113
+ #: ../Views/Self/Concours.rb:22
2114
+ msgid "q07_price_free"
2115
+ msgstr "الاتصال بالانترنت مجانا"
2116
+
2117
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q08_email_generic, "%w( répondez courriel yahoo gmail )"
2118
+ #: ../Views/Self/Concours.rb:23
2119
+ msgid "q08_email_generic"
2120
+ msgstr "ماذا تعني E-mail بالعربية"
2121
+
2122
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q09_service_surf, "%w( répondez ftp www e-mail )"
2123
+ #: ../Views/Self/Concours.rb:24
2124
+ msgid "q09_service_surf"
2125
+ msgstr "ما هي خدمات التصفح في الانترنت"
2126
+
2127
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q10_is_central, "%w( répondez vrai faux )"
2128
+ #: ../Views/Self/Concours.rb:25
2129
+ msgid "q10_is_central"
2130
+ msgstr "الانترنت خاص للبعض "
2131
+
2132
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q11_internet_start, "%w( répondez recherche commercial )"
2133
+ #: ../Views/Self/Concours.rb:28
2134
+ msgid "q11_internet_start"
2135
+ msgstr "الانترنت بدأ في مجال ..."
2136
+
2137
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q12_what_standards, "%w( répondez ouvert payants )"
2138
+ #: ../Views/Self/Concours.rb:29
2139
+ msgid "q12_what_standards"
2140
+ msgstr "الانترنت يستخدم في المجالات"
2141
+
2142
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q13_chapters_count, "%w( répondez 80 90 100 )"
2143
+ #: ../Views/Self/Concours.rb:30
2144
+ msgid "q13_chapters_count"
2145
+ msgstr "كم عدد فروع الجمعية في نهاية ٢٠١٢م"
2146
+
2147
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q14_isoc_members, "%w( répondez 57000 60000 55000 )"
2148
+ #: ../Views/Self/Concours.rb:31
2149
+ msgid "q14_isoc_members"
2150
+ msgstr "كم عدد اعضاء الجمعية نهاية ٢٠١٢ "
2151
+
2152
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q15_domain_names, "%w( répondez IANA IAB ICANN )"
2153
+ #: ../Views/Self/Concours.rb:32
2154
+ msgid "q15_domain_names"
2155
+ msgstr "من المسؤول من اسم الملكية في الانترنت "
2156
+
2157
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q16_gives_ips, "%w( répondez IANA IAB ICANN )"
2158
+ #: ../Views/Self/Concours.rb:33
2159
+ msgid "q16_gives_ips"
2160
+ msgstr "من المسؤول من الالكترونيات"
2161
+
2162
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q17_does_standards, "%w( répondez IANA IAB ICANN )"
2163
+ #: ../Views/Self/Concours.rb:34
2164
+ msgid "q17_does_standards"
2165
+ msgstr "من المسؤول من الارقام التلقائية"
2166
+
2167
+ #. Comes from file Views/Self/Concours.rb and line is show_list_drop :q18_we_work_with, "%w( répondez NTIC NPIC IPNT )"
2168
+ #: ../Views/Self/Concours.rb:35
2169
+ msgid "q18_we_work_with"
2170
+ msgstr "نحن نشتغل في مجال ؟"
2171
+
2172
+ #. 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 )"
2173
+ #: ../Views/Self/Concours.rb:36
2174
+ msgid "q19_website_chad"
2175
+ msgstr "ما هو عنوان موقع جمعية الانترنت التشادية"
2176
+
2177
+ #. 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 )"
2178
+ #: ../Views/Self/Concours.rb:37
2179
+ msgid "q20_best_fai"
2180
+ msgstr "ما هو أفضل موزع شبكة الأنترنت في تشاد ؟"
2181
+
2182
+ #. Comes from file Views/Self/Concours.rb and line is show_button :send_replies
2183
+ #: ../Views/Self/Concours.rb:41
2184
+ msgid "send_replies"
2185
+ msgstr "ارسال"
2186
+
2187
+ #. Comes from file Views/Self/Concours.rb and line is show_html :txt_error
2188
+ #: ../Views/Self/Concours.rb:44
2189
+ msgid "txt_error"
2190
+ msgstr ""
2191
+
2192
+ #. Comes from file Views/Self/Concours.rb and line is show_button :ok
2193
+ #: ../Views/Self/Concours.rb:45
2194
+ msgid "ok"
2195
+ msgstr "نعم"
2196
+
2197
+ #. Comes from file Views/Self/Concours.rb and line is show_html :txt_finish
2198
+ #: ../Views/Self/Concours.rb:48
2199
+ msgid "txt_finish"
2200
+ msgstr ""
2201
+
2202
+ #. Comes from file Views/Self/Concours.rb and line is show_button :yes, :no
2203
+ #: ../Views/Self/Concours.rb:49
2204
+ msgid "yes"
2205
+ msgstr "نعم"
2206
+
2207
+ #. Comes from file Views/Self/Concours.rb and line is show_button :yes, :no
2208
+ #: ../Views/Self/Concours.rb:49
2209
+ msgid "no"
2210
+ msgstr "لا"
2211
+
2212
+ #. Comes from file Views/Self/Internet.rb and line is class SelfInternet < View
2213
+ #: ../Views/Self/Internet.rb:1
2214
+ msgid "SelfInternet"
2215
+ msgstr ""
2216
+
2217
+ #. Comes from file Views/Self/Internet.rb and line is show_html :connection_status
2218
+ #: ../Views/Self/Internet.rb:12
2219
+ msgid "connection_status"
2220
+ msgstr ""
2221
+
2222
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :users_connected
2223
+ #: ../Views/Self/Internet.rb:14
2224
+ msgid "users_connected"
2225
+ msgstr ""
2226
+
2227
+ #. Comes from file Views/Self/Internet.rb and line is show_int_ro :bytes_left
2228
+ #: ../Views/Self/Internet.rb:15
2229
+ msgid "bytes_left"
2230
+ msgstr ""
2231
+
2232
+ #. Comes from file Views/Self/Services.rb and line is class SelfServices < View
2233
+ #: ../Views/Self/Services.rb:1
2234
+ msgid "SelfServices"
2235
+ msgstr ""
2236
+
2237
+ #. Comes from file Views/Self/Services.rb and line is show_int :copies_laser, :callback => :calc
2238
+ #: ../Views/Self/Services.rb:11
2239
+ msgid "copies_laser"
2240
+ msgstr ""
2241
+
2242
+ #. Comes from file Views/Self/Services.rb and line is show_int :heures_groupe_grand, :callback => :calc
2243
+ #: ../Views/Self/Services.rb:13
2244
+ msgid "heures_groupe_grand"
2245
+ msgstr ""
2246
+
2247
+ #. Comes from file Views/Self/Services.rb and line is show_int :CDs, :callback => :calc
2248
+ #: ../Views/Self/Services.rb:14
2249
+ msgid "CDs"
2250
+ msgstr ""
2251
+
2252
+ #. Comes from file Views/Self/Services.rb and line is show_str :autres_text, :callback => :calc
2253
+ #: ../Views/Self/Services.rb:17
2254
+ msgid "autres_text"
2255
+ msgstr ""
2256
+
2257
+ #. Comes from file Views/Self/Services.rb and line is show_int :autres_cfa, :callback => :calc
2258
+ #: ../Views/Self/Services.rb:18
2259
+ msgid "autres_cfa"
2260
+ msgstr ""
2261
+
2262
+ #. Comes from file Views/Self/Services.rb and line is show_int :services_total
2263
+ #: ../Views/Self/Services.rb:21
2264
+ msgid "services_total"
2265
+ msgstr ""
2266
+
2267
+ #. Comes from file Views/Self/Services.rb and line is show_button :add_cash
2268
+ #: ../Views/Self/Services.rb:23
2269
+ msgid "add_cash"
2270
+ msgstr ""
2271
+
2272
+ #. Comes from file Views/Self/Show.rb and line is class SelfShow < View
2273
+ #: ../Views/Self/Show.rb:3
2274
+ msgid "SelfShow"
2275
+ msgstr ""
2276
+
2277
+ #. Comes from file Views/Self/Show.rb and line is show_button :logout
2278
+ #: ../Views/Self/Show.rb:17
2279
+ msgid "logout"
2280
+ msgstr ""
2281
+
2282
+ #. Comes from file Views/Self/Tabs.rb and line is class SelfTabs < View
2283
+ #: ../Views/Self/Tabs.rb:1
2284
+ msgid "SelfTabs"
2285
+ msgstr ""
2286
+
2287
+ #. Comes from file Views/Task/Client.rb and line is class TaskClient < View
2288
+ #: ../Views/Task/Client.rb:1
2289
+ msgid "TaskClient"
2290
+ msgstr ""
2291
+
2292
+ #. Comes from file Views/Task/Client.rb and line is vtlp_list :clients, 'name'
2293
+ #: ../Views/Task/Client.rb:9
2294
+ msgid "clients"
2295
+ msgstr ""
2296
+
2297
+ #. Comes from file Views/Task/Edit.rb and line is class TaskEdit < View
2298
+ #: ../Views/Task/Edit.rb:1
2299
+ msgid "TaskEdit"
2300
+ msgstr ""
2301
+
2302
+ #. Comes from file Views/Task/Edit.rb and line is vtlp_list :tasks, "tasks"
2303
+ #: ../Views/Task/Edit.rb:10
2304
+ msgid "tasks"
2305
+ msgstr ""
2306
+
2307
+ #. Comes from file Views/Task/List.rb and line is class TaskList < View
2308
+ #: ../Views/Task/List.rb:1
2309
+ msgid "TaskList"
2310
+ msgstr ""
2311
+
2312
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :year, "View.TaskList.list_years"
2313
+ #: ../Views/Task/List.rb:9
2314
+ msgid "year"
2315
+ msgstr ""
2316
+
2317
+ #. Comes from file Views/Task/List.rb and line is show_list_drop :month, "1.upto(12).to_a"
2318
+ #: ../Views/Task/List.rb:10
2319
+ msgid "month"
2320
+ msgstr ""
2321
+
2322
+ #. Comes from file Views/Task/List.rb and line is show_button :list
2323
+ #: ../Views/Task/List.rb:13
2324
+ msgid "list"
2325
+ msgstr ""
2326
+
2327
+ #. Comes from file Views/Task/List.rb and line is show_text :tasks_done
2328
+ #: ../Views/Task/List.rb:16
2329
+ msgid "tasks_done"
2330
+ msgstr ""
2331
+
2332
+ #. Comes from file Views/Task/List.rb and line is show_text :summary
2333
+ #: ../Views/Task/List.rb:17
2334
+ msgid "summary"
2335
+ msgstr ""
2336
+
2337
+ #. Comes from file Views/Task/Tabs.rb and line is class TaskTabs < View
2338
+ #: ../Views/Task/Tabs.rb:1
2339
+ msgid "TaskTabs"
2340
+ msgstr ""
2341
+
2342
+ #. Comes from file Views/Task/Tabs.rb and line is show_button :new_task
2343
+ #: ../Views/Task/Tabs.rb:6
2344
+ msgid "new_task"
2345
+ msgstr ""
2346
+
2347
+ #. Comes from file Views/Task/Worker.rb and line is class TaskWorker < View
2348
+ #: ../Views/Task/Worker.rb:1
2349
+ msgid "TaskWorker"
2350
+ msgstr ""
2351
+
2352
+ #. Comes from file Views/Task/Worker.rb and line is vtlp_list :workers, "login_name"
2353
+ #: ../Views/Task/Worker.rb:9
2354
+ msgid "workers"
2355
+ msgstr ""
2356
+