1 | # PyKota |
---|
2 | # |
---|
3 | # PyKota : Print Quotas for CUPS and LPRng |
---|
4 | # |
---|
5 | # (c) 2003 Jerome Alet <alet@librelogiciel.com> |
---|
6 | # This program is free software; you can redistribute it and/or modify |
---|
7 | # it under the terms of the GNU General Public License as published by |
---|
8 | # the Free Software Foundation; either version 2 of the License, or |
---|
9 | # (at your option) any later version. |
---|
10 | # |
---|
11 | # This program is distributed in the hope that it will be useful, |
---|
12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | # GNU General Public License for more details. |
---|
15 | # |
---|
16 | # You should have received a copy of the GNU General Public License |
---|
17 | # along with this program; if not, write to the Free Software |
---|
18 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
---|
19 | # |
---|
20 | # $Id$ |
---|
21 | # |
---|
22 | # $Log$ |
---|
23 | # Revision 1.35 2003/10/08 21:41:38 jalet |
---|
24 | # External policies for printers works ! |
---|
25 | # We can now auto-add users on first print, and do other useful things if needed. |
---|
26 | # |
---|
27 | # Revision 1.34 2003/08/18 16:20:59 jalet |
---|
28 | # Improvement of the printing system detection code. |
---|
29 | # |
---|
30 | # Revision 1.33 2003/07/25 10:41:30 jalet |
---|
31 | # Better documentation. |
---|
32 | # pykotme now displays the current user's account balance. |
---|
33 | # Some test changed in ldap module. |
---|
34 | # |
---|
35 | # Revision 1.32 2003/07/21 23:01:55 jalet |
---|
36 | # Modified some messages aout soft limit |
---|
37 | # |
---|
38 | # Revision 1.31 2003/07/08 19:43:50 jalet |
---|
39 | # Configurable warning messages. |
---|
40 | # Poor man's treshold value added. |
---|
41 | # |
---|
42 | # Revision 1.30 2003/07/03 11:38:43 jalet |
---|
43 | # Translations for pykotme added |
---|
44 | # |
---|
45 | # Revision 1.29 2003/06/30 21:44:18 jalet |
---|
46 | # 1.09 is out ! |
---|
47 | # |
---|
48 | # Revision 1.28 2003/06/25 10:39:17 jalet |
---|
49 | # Translations. |
---|
50 | # |
---|
51 | # Revision 1.27 2003/06/24 21:54:24 jalet |
---|
52 | # More translations. |
---|
53 | # |
---|
54 | # Revision 1.26 2003/06/24 14:53:04 jalet |
---|
55 | # More translations |
---|
56 | # |
---|
57 | # Revision 1.25 2003/06/15 22:26:52 jalet |
---|
58 | # More work on LDAP |
---|
59 | # |
---|
60 | # Revision 1.24 2003/04/30 19:53:58 jalet |
---|
61 | # 1.05 |
---|
62 | # |
---|
63 | # Revision 1.23 2003/04/30 13:36:40 jalet |
---|
64 | # Stupid accounting method was added. |
---|
65 | # |
---|
66 | # Revision 1.22 2003/04/29 18:37:54 jalet |
---|
67 | # Pluggable accounting methods (actually doesn't support external scripts) |
---|
68 | # |
---|
69 | # Revision 1.21 2003/04/23 22:13:56 jalet |
---|
70 | # Preliminary support for LPRng added BUT STILL UNTESTED. |
---|
71 | # |
---|
72 | # Revision 1.20 2003/04/23 09:58:17 jalet |
---|
73 | # Prices per page/job are now displayed |
---|
74 | # |
---|
75 | # Revision 1.19 2003/04/17 09:26:21 jalet |
---|
76 | # repykota now reports account balances too. |
---|
77 | # |
---|
78 | # Revision 1.18 2003/04/16 12:35:49 jalet |
---|
79 | # Groups quota work now ! |
---|
80 | # |
---|
81 | # Revision 1.17 2003/04/16 08:53:14 jalet |
---|
82 | # Printing can now be limited either by user's account balance or by |
---|
83 | # page quota (the default). Quota report doesn't include account balance |
---|
84 | # yet, though. |
---|
85 | # |
---|
86 | # Revision 1.16 2003/04/16 08:22:09 jalet |
---|
87 | # More strict error detection. |
---|
88 | # Minor code rewrite to avoid some repetitive tests. |
---|
89 | # |
---|
90 | # Revision 1.15 2003/04/16 08:01:54 jalet |
---|
91 | # edpykota --charge command line option works now. |
---|
92 | # |
---|
93 | # Revision 1.14 2003/04/11 14:42:54 jalet |
---|
94 | # Translations |
---|
95 | # |
---|
96 | # Revision 1.13 2003/04/09 23:20:38 jalet |
---|
97 | # A message added. |
---|
98 | # |
---|
99 | # Revision 1.12 2003/03/29 13:45:27 jalet |
---|
100 | # GPL paragraphs were incorrectly (from memory) copied into the sources. |
---|
101 | # Two README files were added. |
---|
102 | # Upgrade script for PostgreSQL pre 1.01 schema was added. |
---|
103 | # |
---|
104 | # Revision 1.11 2003/03/29 13:08:28 jalet |
---|
105 | # Configuration is now expected to be found in /etc/pykota.conf instead of |
---|
106 | # in /etc/cups/pykota.conf |
---|
107 | # Installation script can move old config files to the new location if needed. |
---|
108 | # Better error handling if configuration file is absent. |
---|
109 | # |
---|
110 | # Revision 1.10 2003/03/15 23:01:28 jalet |
---|
111 | # New mailto option in configuration file added. |
---|
112 | # No time to test this tonight (although it should work). |
---|
113 | # |
---|
114 | # Revision 1.9 2003/03/09 23:38:43 jalet |
---|
115 | # Simplified translations. |
---|
116 | # |
---|
117 | # Revision 1.8 2003/02/27 09:08:39 jalet |
---|
118 | # Updated translations. |
---|
119 | # |
---|
120 | # Revision 1.7 2003/02/10 12:12:08 jalet |
---|
121 | # Translation added for total number of pages for printer in repykota |
---|
122 | # |
---|
123 | # Revision 1.6 2003/02/10 11:49:06 jalet |
---|
124 | # Added Content-Transfert-Encoding |
---|
125 | # |
---|
126 | # Revision 1.5 2003/02/10 08:50:45 jalet |
---|
127 | # External requester seems to be finally ok now |
---|
128 | # |
---|
129 | # Revision 1.4 2003/02/10 00:42:17 jalet |
---|
130 | # External requester should be ok (untested) |
---|
131 | # New syntax for configuration file wrt requesters |
---|
132 | # |
---|
133 | # Revision 1.3 2003/02/09 14:02:31 jalet |
---|
134 | # French translation was added |
---|
135 | # |
---|
136 | # Revision 1.2 2003/02/09 13:10:46 jalet |
---|
137 | # Strings were extracted |
---|
138 | # |
---|
139 | # Revision 1.1 2003/02/05 21:28:17 jalet |
---|
140 | # Initial import into CVS |
---|
141 | # |
---|
142 | # |
---|
143 | # |
---|
144 | # PyKota translation master file. |
---|
145 | # Copyright (C) 2003 Conseil Internet & Logiciels Libres |
---|
146 | # Jerome Alet <alet@librelogiciel.com>, 2003. |
---|
147 | # |
---|
148 | msgid "" |
---|
149 | msgstr "" |
---|
150 | "Project-Id-Version: PyKota v0.9-unofficial\n" |
---|
151 | "POT-Creation-Date: Sun Feb 9 13:50:50 2003\n" |
---|
152 | "PO-Revision-Date: 2003-02-09 14:08+1\n" |
---|
153 | "Last-Translator: Jerome Alet <alet@librelogiciel.com>\n" |
---|
154 | "Language-Team: English <alet@librelogiciel.com>\n" |
---|
155 | "MIME-Version: 1.0\n" |
---|
156 | "Content-Type: text/plain; charset=ISO-8859-1\n" |
---|
157 | "Content-Transfer-Encoding: 8bit\n" |
---|
158 | "Generated-By: pygettext.py 1.3\n" |
---|
159 | |
---|
160 | msgid "Undefined soft limit set to hard limit (%s) on printer %s." |
---|
161 | msgstr "" |
---|
162 | |
---|
163 | msgid "Hard limit %i is less than soft limit %i, values will be exchanged." |
---|
164 | msgstr "" |
---|
165 | |
---|
166 | msgid "Pages grace time: %i days" |
---|
167 | msgstr "" |
---|
168 | |
---|
169 | msgid "Invalid softlimit value %s." |
---|
170 | msgstr "" |
---|
171 | |
---|
172 | msgid "Prototype %s not found in Quota Storage for printer %s." |
---|
173 | msgstr "" |
---|
174 | |
---|
175 | msgid "Printer %s not registered in the PyKota system" |
---|
176 | msgstr "" |
---|
177 | |
---|
178 | msgid "option --groups is currently not implemented." |
---|
179 | msgstr "" |
---|
180 | |
---|
181 | msgid "Quota not found for object %s on printer %s." |
---|
182 | msgstr "" |
---|
183 | |
---|
184 | msgid "Invalid user name %s" |
---|
185 | msgstr "" |
---|
186 | |
---|
187 | msgid "Both hard and soft limits must be set ! Aborting." |
---|
188 | msgstr "" |
---|
189 | |
---|
190 | msgid "Undefined hard limit set to soft limit (%s) on printer %s." |
---|
191 | msgstr "" |
---|
192 | |
---|
193 | msgid "incompatible options, see help." |
---|
194 | msgstr "" |
---|
195 | |
---|
196 | msgid "Invalid hardlimit value %s." |
---|
197 | msgstr "" |
---|
198 | |
---|
199 | msgid "Group used soft hard balance grace total paid" |
---|
200 | msgstr "" |
---|
201 | |
---|
202 | msgid "There's no printer matching %s" |
---|
203 | msgstr "" |
---|
204 | |
---|
205 | msgid "*** Report for %s quota on printer %s" |
---|
206 | msgstr "" |
---|
207 | |
---|
208 | msgid "Error in page count value %i for user %s on printer %s" |
---|
209 | msgstr "" |
---|
210 | |
---|
211 | msgid "Invalid group name %s" |
---|
212 | msgstr "" |
---|
213 | |
---|
214 | msgid "User used soft hard balance grace total paid" |
---|
215 | msgstr "" |
---|
216 | |
---|
217 | msgid "Invalid printer name %s" |
---|
218 | msgstr "" |
---|
219 | |
---|
220 | msgid "Option requester for printer %s only supports values in %s" |
---|
221 | msgstr "" |
---|
222 | |
---|
223 | msgid "Print Quota Exceeded" |
---|
224 | msgstr "" |
---|
225 | |
---|
226 | msgid "Print Quota" |
---|
227 | msgstr "" |
---|
228 | |
---|
229 | msgid "Requester not implemented yet." |
---|
230 | msgstr "" |
---|
231 | |
---|
232 | msgid "Option %s not found in section %s of %s" |
---|
233 | msgstr "" |
---|
234 | |
---|
235 | msgid "" |
---|
236 | "You will soon be forbidden to print anymore because\n" |
---|
237 | "your Print Quota is almost reached on printer %s." |
---|
238 | msgstr "" |
---|
239 | |
---|
240 | msgid "" |
---|
241 | "\n" |
---|
242 | "\n" |
---|
243 | "Please contact your system administrator :\n" |
---|
244 | "\n" |
---|
245 | "\t%s - <%s>\n" |
---|
246 | msgstr "" |
---|
247 | |
---|
248 | msgid "Invalid grace delay %s" |
---|
249 | msgstr "" |
---|
250 | |
---|
251 | msgid "Option logger only supports values in %s" |
---|
252 | msgstr "" |
---|
253 | |
---|
254 | msgid "Option %s not found in section global of %s" |
---|
255 | msgstr "" |
---|
256 | |
---|
257 | msgid "Option method only supports values in %s" |
---|
258 | msgstr "" |
---|
259 | |
---|
260 | msgid "Unable to match user %s on printer %s, applying default policy (%s)" |
---|
261 | msgstr "" |
---|
262 | |
---|
263 | msgid "Group quotas are currently not implemented." |
---|
264 | msgstr "" |
---|
265 | |
---|
266 | msgid "Unknown printer address in SNMP(%s, %s) for printer %s" |
---|
267 | msgstr "" |
---|
268 | |
---|
269 | msgid "Print Quota low for user %s on printer %s" |
---|
270 | msgstr "" |
---|
271 | |
---|
272 | msgid "Unsupported logging subsystem %s" |
---|
273 | msgstr "" |
---|
274 | |
---|
275 | msgid "Unable to query printer %s via SNMP(%s, %s)" |
---|
276 | msgstr "" |
---|
277 | |
---|
278 | msgid "Unsupported requester backend %s" |
---|
279 | msgstr "" |
---|
280 | |
---|
281 | msgid "Option policy in section %s only supports values in %s" |
---|
282 | msgstr "" |
---|
283 | |
---|
284 | msgid "Unsupported quota storage backend %s" |
---|
285 | msgstr "" |
---|
286 | |
---|
287 | msgid "" |
---|
288 | "You are not allowed to print anymore because\n" |
---|
289 | "your Print Quota is exceeded on printer %s." |
---|
290 | msgstr "" |
---|
291 | |
---|
292 | msgid "Print Quota exceeded for user %s on printer %s" |
---|
293 | msgstr "" |
---|
294 | |
---|
295 | msgid "Invalid requester %s for printer %s" |
---|
296 | msgstr "" |
---|
297 | |
---|
298 | msgid "Unknown printer address in EXTERNAL(%s) for printer %s" |
---|
299 | msgstr "" |
---|
300 | |
---|
301 | msgid "Unable to query printer %s via EXTERNAL(%s)" |
---|
302 | msgstr "" |
---|
303 | |
---|
304 | msgid "Total : %9i" |
---|
305 | msgstr "" |
---|
306 | |
---|
307 | msgid "Real : %s" |
---|
308 | msgstr "" |
---|
309 | |
---|
310 | msgid "You have to pass user or group names on the command line" |
---|
311 | msgstr "" |
---|
312 | |
---|
313 | msgid "unknown" |
---|
314 | msgstr "" |
---|
315 | |
---|
316 | msgid "Option mailto in section %s only supports values in %s" |
---|
317 | msgstr "" |
---|
318 | |
---|
319 | msgid "Configuration file %s not found." |
---|
320 | msgstr "" |
---|
321 | |
---|
322 | msgid "User %s not registered in the PyKota system, applying default policy (%s) for printer %s" |
---|
323 | msgstr "" |
---|
324 | |
---|
325 | msgid "Invalid charge amount value %s" |
---|
326 | msgstr "" |
---|
327 | |
---|
328 | msgid "Invalid balance value %s" |
---|
329 | msgstr "" |
---|
330 | |
---|
331 | msgid "Invalid limitby value %s" |
---|
332 | msgstr "" |
---|
333 | |
---|
334 | msgid "Unable to find user %s's account balance, applying default policy (%s) for printer %s" |
---|
335 | msgstr "" |
---|
336 | |
---|
337 | msgid "Unable to find group %s's account balance, applying default policy (%s) for printer %s" |
---|
338 | msgstr "" |
---|
339 | |
---|
340 | msgid "Unable to match group %s on printer %s, applying default policy (%s)" |
---|
341 | msgstr "" |
---|
342 | |
---|
343 | msgid "Print Quota exceeded for group %s on printer %s" |
---|
344 | msgstr "" |
---|
345 | |
---|
346 | msgid "Print Quota low for group %s on printer %s" |
---|
347 | msgstr "" |
---|
348 | |
---|
349 | msgid "Totals may be inaccurate if some users are members of several groups." |
---|
350 | msgstr "" |
---|
351 | |
---|
352 | msgid "Price per job: %.3f" |
---|
353 | msgstr "" |
---|
354 | |
---|
355 | msgid "Price per page: %.3f" |
---|
356 | msgstr "" |
---|
357 | |
---|
358 | msgid "Group %s not found in the PyKota Storage." |
---|
359 | msgstr "" |
---|
360 | |
---|
361 | msgid "Unsupported accounter backend %s" |
---|
362 | msgstr "" |
---|
363 | |
---|
364 | msgid "Option accounter in section %s only supports values in %s" |
---|
365 | msgstr "" |
---|
366 | |
---|
367 | msgid "Option requester for printer %s was not set" |
---|
368 | msgstr "" |
---|
369 | |
---|
370 | msgid "Using the 'stupid' accounting method is unreliable." |
---|
371 | msgstr "" |
---|
372 | |
---|
373 | msgid "Invalid external accounter %s for printer %s" |
---|
374 | msgstr "" |
---|
375 | |
---|
376 | msgid "Unable to compute job size with external accounter %s" |
---|
377 | msgstr "" |
---|
378 | |
---|
379 | msgid "Search for %s(%s) from %s(scope=%s) returned no answer." |
---|
380 | msgstr "" |
---|
381 | |
---|
382 | msgid "Problem adding LDAP entry (%s, %s)" |
---|
383 | msgstr "" |
---|
384 | |
---|
385 | msgid "Problem modifying LDAP entry (%s, %s)" |
---|
386 | msgstr "" |
---|
387 | |
---|
388 | msgid "Problem deleting LDAP entry (%s)" |
---|
389 | msgstr "" |
---|
390 | |
---|
391 | msgid "Impossible to add printer %s" |
---|
392 | msgstr "" |
---|
393 | |
---|
394 | msgid "Prototype object %s not found in Quota Storage." |
---|
395 | msgstr "" |
---|
396 | |
---|
397 | msgid "Impossible to send mail to %s, error %s : %s" |
---|
398 | msgstr "" |
---|
399 | |
---|
400 | msgid "Unsupported reporter backend %s" |
---|
401 | msgstr "" |
---|
402 | |
---|
403 | msgid "Unable to compute size of %s in number of pages.\n" |
---|
404 | msgstr "" |
---|
405 | |
---|
406 | msgid "Job size : %i pages" |
---|
407 | msgstr "" |
---|
408 | |
---|
409 | msgid "Cost on printer %s : %.2f" |
---|
410 | msgstr "" |
---|
411 | |
---|
412 | msgid "Invalid poor man's treshold %s" |
---|
413 | msgstr "" |
---|
414 | |
---|
415 | msgid "" |
---|
416 | "Your Print Quota account balance is Low.\n" |
---|
417 | "Soon you'll not be allowed to print anymore.\n" |
---|
418 | "Please contact the Print Quota Administrator to solve the problem." |
---|
419 | msgstr "" |
---|
420 | |
---|
421 | msgid "Print Quota Low" |
---|
422 | msgstr "" |
---|
423 | |
---|
424 | msgid "Your account balance : %.2f" |
---|
425 | msgstr "" |
---|
426 | |
---|
427 | msgid "Printer hostname undefined, set to 'localhost'" |
---|
428 | msgstr "" |
---|
429 | |
---|
430 | msgid "Printing system unknown, args=%s" |
---|
431 | msgstr "" |
---|
432 | |
---|
433 | msgid "Invalid policy %s for printer %s" |
---|
434 | msgstr "" |
---|
435 | |
---|
436 | msgid "User %s not registered in the PyKota system, applying external policy (%s) for printer %s" |
---|
437 | msgstr "" |
---|
438 | |
---|
439 | msgid "External policy %s for printer %s produced an error. Job rejected. Please check PyKota's configuration files." |
---|
440 | msgstr "" |
---|
441 | |
---|
442 | msgid "External policy %s for printer %s couldn't add user %s. Job rejected." |
---|
443 | msgstr "" |
---|