aboutsummaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-18 20:39:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2016-11-23 14:16:49 +0300
commit7f5c98bfa147997d58a60186a84d12a3a602d28c (patch)
treea9f4a6f3f4ae3232843c0ec3e0ebdd6efe310c5e /po
parent816458fde97a41082796eb8d3323047cc4f87935 (diff)
downloadlibmicrohttpd-7f5c98bfa147997d58a60186a84d12a3a602d28c.tar.gz
libmicrohttpd-7f5c98bfa147997d58a60186a84d12a3a602d28c.zip
Gettext staff moved to 'po' directory. Main 'configure' now do not check for
gettext and related staff.
Diffstat (limited to 'po')
-rw-r--r--po/ABOUT-NLS1379
-rw-r--r--po/Makefile.in.in53
-rw-r--r--po/POTFILES.in53
-rw-r--r--po/configure.ac.in17
-rw-r--r--po/libmicrohttpd.pot654
-rw-r--r--po/stamp-po1
6 files changed, 1439 insertions, 718 deletions
diff --git a/po/ABOUT-NLS b/po/ABOUT-NLS
new file mode 100644
index 00000000..3cc82865
--- /dev/null
+++ b/po/ABOUT-NLS
@@ -0,0 +1,1379 @@
11 Notes on the Free Translation Project
2***************************************
3
4Free software is going international! The Free Translation Project is a
5way to get maintainers of free software, translators, and users all
6together, so that free software will gradually become able to speak many
7languages. A few packages already provide translations for their
8messages.
9
10 If you found this 'ABOUT-NLS' file inside a distribution, you may
11assume that the distributed package does use GNU 'gettext' internally,
12itself available at your nearest GNU archive site. But you do _not_
13need to install GNU 'gettext' prior to configuring, installing or using
14this package with messages translated.
15
16 Installers will find here some useful hints. These notes also
17explain how users should proceed for getting the programs to use the
18available translations. They tell how people wanting to contribute and
19work on translations can contact the appropriate team.
20
211.1 INSTALL Matters
22===================
23
24Some packages are "localizable" when properly installed; the programs
25they contain can be made to speak your own native language. Most such
26packages use GNU 'gettext'. Other packages have their own ways to
27internationalization, predating GNU 'gettext'.
28
29 By default, this package will be installed to allow translation of
30messages. It will automatically detect whether the system already
31provides the GNU 'gettext' functions. Installers may use special
32options at configuration time for changing the default behaviour. The
33command:
34
35 ./configure --disable-nls
36
37will _totally_ disable translation of messages.
38
39 When you already have GNU 'gettext' installed on your system and run
40configure without an option for your new package, 'configure' will
41probably detect the previously built and installed 'libintl' library and
42will decide to use it. If not, you may have to to use the
43'--with-libintl-prefix' option to tell 'configure' where to look for it.
44
45 Internationalized packages usually have many 'po/LL.po' files, where
46LL gives an ISO 639 two-letter code identifying the language. Unless
47translations have been forbidden at 'configure' time by using the
48'--disable-nls' switch, all available translations are installed
49together with the package. However, the environment variable 'LINGUAS'
50may be set, prior to configuration, to limit the installed set.
51'LINGUAS' should then contain a space separated list of two-letter
52codes, stating which languages are allowed.
53
541.2 Using This Package
55======================
56
57As a user, if your language has been installed for this package, you
58only have to set the 'LANG' environment variable to the appropriate
59'LL_CC' combination. If you happen to have the 'LC_ALL' or some other
60'LC_xxx' environment variables set, you should unset them before setting
61'LANG', otherwise the setting of 'LANG' will not have the desired
62effect. Here 'LL' is an ISO 639 two-letter language code, and 'CC' is
63an ISO 3166 two-letter country code. For example, let's suppose that
64you speak German and live in Germany. At the shell prompt, merely
65execute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in
66'sh') or 'export LANG=de_DE' (in 'bash'). This can be done from your
67'.login' or '.profile' file, once and for all.
68
69 You might think that the country code specification is redundant.
70But in fact, some languages have dialects in different countries. For
71example, 'de_AT' is used for Austria, and 'pt_BR' for Brazil. The
72country code serves to distinguish the dialects.
73
74 The locale naming convention of 'LL_CC', with 'LL' denoting the
75language and 'CC' denoting the country, is the one use on systems based
76on GNU libc. On other systems, some variations of this scheme are used,
77such as 'LL' or 'LL_CC.ENCODING'. You can get the list of locales
78supported by your system for your language by running the command
79'locale -a | grep '^LL''.
80
81 Not all programs have translations for all languages. By default, an
82English message is shown in place of a nonexistent translation. If you
83understand other languages, you can set up a priority list of languages.
84This is done through a different environment variable, called
85'LANGUAGE'. GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG'
86for the purpose of message handling, but you still need to have 'LANG'
87set to the primary language; this is required by other parts of the
88system libraries. For example, some Swedish users who would rather read
89translations in German than English for when Swedish is not available,
90set 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'.
91
92 Special advice for Norwegian users: The language code for Norwegian
93bokma*l changed from 'no' to 'nb' recently (in 2003). During the
94transition period, while some message catalogs for this language are
95installed under 'nb' and some older ones under 'no', it's recommended
96for Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and
97older translations are used.
98
99 In the 'LANGUAGE' environment variable, but not in the 'LANG'
100environment variable, 'LL_CC' combinations can be abbreviated as 'LL' to
101denote the language's main dialect. For example, 'de' is equivalent to
102'de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese
103as spoken in Portugal) in this context.
104
1051.3 Translating Teams
106=====================
107
108For the Free Translation Project to be a success, we need interested
109people who like their own language and write it well, and who are also
110able to synergize with other translators speaking the same language.
111Each translation team has its own mailing list. The up-to-date list of
112teams can be found at the Free Translation Project's homepage,
113'http://translationproject.org/', in the "Teams" area.
114
115 If you'd like to volunteer to _work_ at translating messages, you
116should become a member of the translating team for your own language.
117The subscribing address is _not_ the same as the list itself, it has
118'-request' appended. For example, speakers of Swedish can send a
119message to 'sv-request@li.org', having this message body:
120
121 subscribe
122
123 Keep in mind that team members are expected to participate _actively_
124in translations, or at solving translational difficulties, rather than
125merely lurking around. If your team does not exist yet and you want to
126start one, or if you are unsure about what to do or how to get started,
127please write to 'coordinator@translationproject.org' to reach the
128coordinator for all translator teams.
129
130 The English team is special. It works at improving and uniformizing
131the terminology in use. Proven linguistic skills are praised more than
132programming skills, here.
133
1341.4 Available Packages
135======================
136
137Languages are not equally supported in all packages. The following
138matrix shows the current state of internationalization, as of Jun 2014.
139The matrix shows, in regard of each package, for which languages PO
140files have been submitted to translation coordination, with a
141translation percentage of at least 50%.
142
143 Ready PO files af am an ar as ast az be bg bn bn_IN bs ca crh cs
144 +---------------------------------------------------+
145 a2ps | [] [] [] |
146 aegis | |
147 anubis | |
148 aspell | [] [] [] |
149 bash | [] [] [] |
150 bfd | |
151 binutils | [] |
152 bison | |
153 bison-runtime | [] |
154 buzztrax | [] |
155 ccd2cue | |
156 ccide | |
157 cflow | |
158 clisp | |
159 coreutils | [] [] |
160 cpio | |
161 cppi | |
162 cpplib | [] |
163 cryptsetup | [] |
164 datamash | |
165 denemo | [] [] |
166 dfarc | [] |
167 dialog | [] [] [] |
168 dico | |
169 diffutils | [] |
170 dink | [] |
171 direvent | |
172 doodle | [] |
173 dos2unix | |
174 dos2unix-man | |
175 e2fsprogs | [] [] |
176 enscript | [] |
177 exif | [] |
178 fetchmail | [] [] |
179 findutils | [] |
180 flex | [] |
181 freedink | [] [] |
182 fusionforge | |
183 gas | |
184 gawk | [] |
185 gcal | [] |
186 gcc | |
187 gdbm | |
188 gettext-examples | [] [] [] [] [] |
189 gettext-runtime | [] [] [] |
190 gettext-tools | [] [] |
191 gjay | |
192 glunarclock | [] [] [] |
193 gnubiff | [] |
194 gnubik | [] |
195 gnucash | () () [] |
196 gnuchess | |
197 gnulib | [] |
198 gnunet | |
199 gnunet-gtk | |
200 gold | |
201 gphoto2 | [] |
202 gprof | [] |
203 gramadoir | |
204 grep | [] [] [] |
205 grub | [] |
206 gsasl | |
207 gss | |
208 gst-plugins-bad | [] [] |
209 gst-plugins-base | [] [] [] |
210 gst-plugins-good | [] [] [] |
211 gst-plugins-ugly | [] [] [] |
212 gstreamer | [] [] [] [] |
213 gtick | [] |
214 gtkam | [] [] |
215 gtkspell | [] [] [] [] [] |
216 guix | |
217 guix-packages | |
218 gutenprint | [] |
219 hello | [] |
220 help2man | |
221 help2man-texi | |
222 hylafax | |
223 idutils | |
224 iso_15924 | [] |
225 iso_3166 | [] [] [] [] [] [] [] [] [] [] |
226 iso_3166_2 | |
227 iso_4217 | [] |
228 iso_639 | [] [] [] [] [] [] [] [] [] |
229 iso_639_3 | [] [] |
230 iso_639_5 | |
231 jwhois | |
232 kbd | [] |
233 klavaro | [] [] [] [] [] |
234 ld | [] |
235 leafpad | [] [] [] [] |
236 libc | [] [] [] |
237 libexif | () |
238 libextractor | |
239 libgnutls | [] |
240 libgphoto2 | [] |
241 libgphoto2_port | [] |
242 libgsasl | |
243 libiconv | [] [] |
244 libidn | [] |
245 liferea | [] [] [] [] |
246 lilypond | [] [] |
247 lordsawar | [] |
248 lprng | |
249 lynx | [] [] |
250 m4 | [] |
251 mailfromd | |
252 mailutils | |
253 make | [] |
254 man-db | [] [] |
255 man-db-manpages | |
256 midi-instruments | [] [] [] |
257 minicom | [] |
258 mkisofs | [] |
259 myserver | [] |
260 nano | [] [] [] |
261 opcodes | |
262 parted | [] |
263 pies | |
264 pnmixer | |
265 popt | [] |
266 procps-ng | |
267 procps-ng-man | |
268 psmisc | [] |
269 pspp | [] |
270 pushover | [] |
271 pwdutils | |
272 pyspread | |
273 radius | [] |
274 recode | [] [] [] |
275 recutils | |
276 rpm | |
277 rush | |
278 sarg | |
279 sed | [] [] [] [] |
280 sharutils | [] |
281 shishi | |
282 skribilo | |
283 solfege | [] [] |
284 solfege-manual | |
285 spotmachine | |
286 sudo | [] [] |
287 sudoers | [] [] |
288 sysstat | [] |
289 tar | [] [] [] |
290 texinfo | [] [] |
291 texinfo_document | [] [] |
292 tigervnc | [] |
293 tin | |
294 tin-man | |
295 tracgoogleappsa... | |
296 trader | |
297 util-linux | [] |
298 ve | |
299 vice | |
300 vmm | |
301 vorbis-tools | [] |
302 wastesedge | |
303 wcd | |
304 wcd-man | |
305 wdiff | [] [] |
306 wget | [] |
307 wyslij-po | |
308 xboard | |
309 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] |
310 xkeyboard-config | [] [] [] |
311 +---------------------------------------------------+
312 af am an ar as ast az be bg bn bn_IN bs ca crh cs
313 4 0 2 5 3 11 0 8 25 3 3 1 55 4 74
314
315 da de el en en_GB en_ZA eo es et eu fa fi fr
316 +--------------------------------------------------+
317 a2ps | [] [] [] [] [] [] [] [] [] |
318 aegis | [] [] [] [] |
319 anubis | [] [] [] [] [] |
320 aspell | [] [] [] [] [] [] [] |
321 bash | [] [] [] |
322 bfd | [] [] [] [] |
323 binutils | [] [] [] |
324 bison | [] [] [] [] [] [] [] [] |
325 bison-runtime | [] [] [] [] [] [] [] [] |
326 buzztrax | [] [] [] [] |
327 ccd2cue | [] [] [] [] |
328 ccide | [] [] [] [] [] [] |
329 cflow | [] [] [] [] [] |
330 clisp | [] [] [] [] [] |
331 coreutils | [] [] [] [] [] |
332 cpio | [] [] [] [] [] |
333 cppi | [] [] [] [] [] |
334 cpplib | [] [] [] [] [] [] |
335 cryptsetup | [] [] [] [] [] |
336 datamash | [] [] [] [] |
337 denemo | [] |
338 dfarc | [] [] [] [] [] [] |
339 dialog | [] [] [] [] [] [] [] [] [] |
340 dico | [] [] [] [] |
341 diffutils | [] [] [] [] [] [] |
342 dink | [] [] [] [] [] [] |
343 direvent | [] [] [] [] |
344 doodle | [] [] [] [] |
345 dos2unix | [] [] [] [] [] |
346 dos2unix-man | [] [] [] |
347 e2fsprogs | [] [] [] [] [] |
348 enscript | [] [] [] [] [] [] |
349 exif | [] [] [] [] [] [] |
350 fetchmail | [] () [] [] [] [] [] |
351 findutils | [] [] [] [] [] [] [] [] |
352 flex | [] [] [] [] [] [] |
353 freedink | [] [] [] [] [] [] [] [] |
354 fusionforge | [] [] [] |
355 gas | [] [] [] |
356 gawk | [] [] [] [] [] |
357 gcal | [] [] [] [] |
358 gcc | [] |
359 gdbm | [] [] [] [] [] |
360 gettext-examples | [] [] [] [] [] [] [] |
361 gettext-runtime | [] [] [] [] [] [] |
362 gettext-tools | [] [] [] [] [] |
363 gjay | [] [] [] [] |
364 glunarclock | [] [] [] [] [] |
365 gnubiff | () [] [] () |
366 gnubik | [] [] [] [] [] |
367 gnucash | [] () () () () () () |
368 gnuchess | [] [] [] [] |
369 gnulib | [] [] [] [] [] [] [] |
370 gnunet | [] |
371 gnunet-gtk | [] |
372 gold | [] [] [] |
373 gphoto2 | [] () [] [] |
374 gprof | [] [] [] [] [] [] |
375 gramadoir | [] [] [] [] [] |
376 grep | [] [] [] [] [] [] [] |
377 grub | [] [] [] [] [] |
378 gsasl | [] [] [] [] [] |
379 gss | [] [] [] [] [] |
380 gst-plugins-bad | [] [] [] |
381 gst-plugins-base | [] [] [] [] [] [] |
382 gst-plugins-good | [] [] [] [] [] [] [] |
383 gst-plugins-ugly | [] [] [] [] [] [] [] [] |
384 gstreamer | [] [] [] [] [] [] [] |
385 gtick | [] () [] [] [] |
386 gtkam | [] () [] [] [] [] |
387 gtkspell | [] [] [] [] [] [] [] [] |
388 guix | [] [] |
389 guix-packages | |
390 gutenprint | [] [] [] [] |
391 hello | [] [] [] [] [] [] [] [] |
392 help2man | [] [] [] [] [] [] [] |
393 help2man-texi | [] [] [] |
394 hylafax | [] [] |
395 idutils | [] [] [] [] [] |
396 iso_15924 | [] () [] [] () [] () |
397 iso_3166 | [] () [] [] [] [] () [] () |
398 iso_3166_2 | [] () () () |
399 iso_4217 | [] () [] [] [] () [] () |
400 iso_639 | [] () [] [] () [] () |
401 iso_639_3 | () () () |
402 iso_639_5 | () () () |
403 jwhois | [] [] [] [] [] |
404 kbd | [] [] [] [] [] [] |
405 klavaro | [] [] [] [] [] [] [] |
406 ld | [] [] [] [] |
407 leafpad | [] [] [] [] [] [] [] [] |
408 libc | [] [] [] [] [] |
409 libexif | [] [] () [] [] |
410 libextractor | [] |
411 libgnutls | [] [] [] [] |
412 libgphoto2 | [] () [] |
413 libgphoto2_port | [] () [] [] [] [] |
414 libgsasl | [] [] [] [] [] |
415 libiconv | [] [] [] [] [] [] [] |
416 libidn | [] [] [] [] [] |
417 liferea | [] () [] [] [] [] [] |
418 lilypond | [] [] [] [] [] [] |
419 lordsawar | [] [] |
420 lprng | |
421 lynx | [] [] [] [] [] [] |
422 m4 | [] [] [] [] [] [] |
423 mailfromd | [] |
424 mailutils | [] [] [] [] |
425 make | [] [] [] [] [] |
426 man-db | [] [] [] [] |
427 man-db-manpages | [] [] |
428 midi-instruments | [] [] [] [] [] [] [] [] [] |
429 minicom | [] [] [] [] [] |
430 mkisofs | [] [] [] |
431 myserver | [] [] [] [] |
432 nano | [] [] [] [] [] [] [] |
433 opcodes | [] [] [] [] [] |
434 parted | [] [] [] |
435 pies | [] |
436 pnmixer | [] [] |
437 popt | [] [] [] [] [] [] |
438 procps-ng | [] [] |
439 procps-ng-man | [] [] |
440 psmisc | [] [] [] [] [] [] [] |
441 pspp | [] [] [] |
442 pushover | () [] [] [] |
443 pwdutils | [] [] [] |
444 pyspread | [] [] [] |
445 radius | [] [] |
446 recode | [] [] [] [] [] [] [] |
447 recutils | [] [] [] [] |
448 rpm | [] [] [] [] [] |
449 rush | [] [] [] |
450 sarg | [] [] |
451 sed | [] [] [] [] [] [] [] [] |
452 sharutils | [] [] [] [] |
453 shishi | [] [] [] |
454 skribilo | [] [] [] |
455 solfege | [] [] [] [] [] [] [] [] |
456 solfege-manual | [] [] [] [] [] |
457 spotmachine | [] [] [] [] [] |
458 sudo | [] [] [] [] [] [] |
459 sudoers | [] [] [] [] [] [] |
460 sysstat | [] [] [] [] [] [] |
461 tar | [] [] [] [] [] [] [] |
462 texinfo | [] [] [] [] [] |
463 texinfo_document | [] [] [] [] |
464 tigervnc | [] [] [] [] [] [] |
465 tin | [] [] [] [] |
466 tin-man | [] |
467 tracgoogleappsa... | [] [] [] [] [] |
468 trader | [] [] [] [] [] [] |
469 util-linux | [] [] [] [] |
470 ve | [] [] [] [] [] |
471 vice | () () () |
472 vmm | [] [] |
473 vorbis-tools | [] [] [] [] |
474 wastesedge | [] |
475 wcd | [] [] [] [] |
476 wcd-man | [] |
477 wdiff | [] [] [] [] [] [] [] |
478 wget | [] [] [] [] [] [] |
479 wyslij-po | [] [] [] [] |
480 xboard | [] [] [] [] |
481 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] |
482 xkeyboard-config | [] [] [] [] [] [] [] |
483 +--------------------------------------------------+
484 da de el en en_GB en_ZA eo es et eu fa fi fr
485 119 131 32 1 6 0 94 95 22 13 4 102 139
486
487 ga gd gl gu he hi hr hu hy ia id is it ja ka kk
488 +-------------------------------------------------+
489 a2ps | [] [] [] [] |
490 aegis | [] |
491 anubis | [] [] [] [] |
492 aspell | [] [] [] [] [] |
493 bash | [] [] [] [] |
494 bfd | [] [] |
495 binutils | [] [] [] |
496 bison | [] |
497 bison-runtime | [] [] [] [] [] [] [] [] |
498 buzztrax | |
499 ccd2cue | [] |
500 ccide | [] [] |
501 cflow | [] [] [] |
502 clisp | |
503 coreutils | [] [] |
504 cpio | [] [] [] [] [] [] |
505 cppi | [] [] [] [] [] |
506 cpplib | [] [] |
507 cryptsetup | [] |
508 datamash | |
509 denemo | [] |
510 dfarc | [] [] [] |
511 dialog | [] [] [] [] [] [] [] [] [] [] |
512 dico | |
513 diffutils | [] [] [] [] |
514 dink | [] |
515 direvent | [] |
516 doodle | [] [] |
517 dos2unix | [] [] |
518 dos2unix-man | |
519 e2fsprogs | [] [] |
520 enscript | [] [] [] |
521 exif | [] [] [] [] [] [] |
522 fetchmail | [] [] [] |
523 findutils | [] [] [] [] [] [] [] |
524 flex | [] |
525 freedink | [] [] [] [] |
526 fusionforge | |
527 gas | [] |
528 gawk | [] () [] |
529 gcal | |
530 gcc | |
531 gdbm | |
532 gettext-examples | [] [] [] [] [] [] [] |
533 gettext-runtime | [] [] [] [] [] [] [] |
534 gettext-tools | [] [] [] |
535 gjay | [] |
536 glunarclock | [] [] [] [] [] [] |
537 gnubiff | [] [] () |
538 gnubik | [] [] [] |
539 gnucash | () () () () () |
540 gnuchess | |
541 gnulib | [] [] [] [] [] |
542 gnunet | |
543 gnunet-gtk | |
544 gold | [] [] |
545 gphoto2 | [] [] [] [] |
546 gprof | [] [] [] [] |
547 gramadoir | [] [] [] |
548 grep | [] [] [] [] [] [] [] |
549 grub | [] [] [] |
550 gsasl | [] [] [] [] [] |
551 gss | [] [] [] [] [] |
552 gst-plugins-bad | [] [] [] |
553 gst-plugins-base | [] [] [] [] |
554 gst-plugins-good | [] [] [] [] [] [] |
555 gst-plugins-ugly | [] [] [] [] [] [] |
556 gstreamer | [] [] [] [] [] |
557 gtick | [] [] [] [] [] |
558 gtkam | [] [] [] [] [] |
559 gtkspell | [] [] [] [] [] [] [] [] [] [] |
560 guix | |
561 guix-packages | |
562 gutenprint | [] [] [] |
563 hello | [] [] [] [] [] |
564 help2man | [] [] [] |
565 help2man-texi | |
566 hylafax | [] |
567 idutils | [] [] |
568 iso_15924 | [] [] [] [] [] [] |
569 iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] |
570 iso_3166_2 | [] [] |
571 iso_4217 | [] [] [] [] [] [] |
572 iso_639 | [] [] [] [] [] [] [] [] [] |
573 iso_639_3 | [] [] |
574 iso_639_5 | |
575 jwhois | [] [] [] [] |
576 kbd | [] [] [] |
577 klavaro | [] [] [] [] [] |
578 ld | [] [] [] [] |
579 leafpad | [] [] [] [] [] [] [] () |
580 libc | [] [] [] [] [] |
581 libexif | [] |
582 libextractor | |
583 libgnutls | [] |
584 libgphoto2 | [] [] |
585 libgphoto2_port | [] [] |
586 libgsasl | [] [] [] [] |
587 libiconv | [] [] [] [] [] [] [] |
588 libidn | [] [] [] [] |
589 liferea | [] [] [] [] [] |
590 lilypond | [] |
591 lordsawar | |
592 lprng | [] |
593 lynx | [] [] [] [] |
594 m4 | [] [] [] [] [] |
595 mailfromd | |
596 mailutils | |
597 make | [] [] [] [] |
598 man-db | [] [] |
599 man-db-manpages | [] [] |
600 midi-instruments | [] [] [] [] [] [] [] [] [] |
601 minicom | [] [] [] |
602 mkisofs | [] [] |
603 myserver | [] |
604 nano | [] [] [] [] [] [] |
605 opcodes | [] [] [] |
606 parted | [] [] [] [] [] |
607 pies | |
608 pnmixer | [] [] |
609 popt | [] [] [] [] [] [] [] [] [] [] |
610 procps-ng | |
611 procps-ng-man | |
612 psmisc | [] [] [] [] |
613 pspp | [] [] |
614 pushover | [] |
615 pwdutils | [] |
616 pyspread | |
617 radius | [] |
618 recode | [] [] [] [] [] [] [] |
619 recutils | |
620 rpm | [] |
621 rush | [] |
622 sarg | |
623 sed | [] [] [] [] [] [] [] |
624 sharutils | |
625 shishi | |
626 skribilo | [] |
627 solfege | [] [] |
628 solfege-manual | |
629 spotmachine | |
630 sudo | [] [] [] [] |
631 sudoers | [] [] [] |
632 sysstat | [] [] [] [] |
633 tar | [] [] [] [] [] [] |
634 texinfo | [] [] [] |
635 texinfo_document | [] [] [] |
636 tigervnc | |
637 tin | |
638 tin-man | |
639 tracgoogleappsa... | [] [] [] [] |
640 trader | [] [] |
641 util-linux | [] |
642 ve | [] |
643 vice | () () |
644 vmm | |
645 vorbis-tools | [] [] |
646 wastesedge | [] |
647 wcd | |
648 wcd-man | |
649 wdiff | [] [] [] |
650 wget | [] [] [] [] |
651 wyslij-po | [] [] [] |
652 xboard | |
653 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] |
654 xkeyboard-config | [] [] [] [] [] [] |
655 +-------------------------------------------------+
656 ga gd gl gu he hi hr hu hy ia id is it ja ka kk
657 35 2 47 4 8 2 60 71 2 6 81 11 87 57 0 3
658
659 kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl
660 +--------------------------------------------------+
661 a2ps | [] [] |
662 aegis | [] |
663 anubis | [] [] [] |
664 aspell | [] [] |
665 bash | [] [] |
666 bfd | |
667 binutils | |
668 bison | [] |
669 bison-runtime | [] [] [] [] [] [] |
670 buzztrax | |
671 ccd2cue | |
672 ccide | [] [] |
673 cflow | [] |
674 clisp | [] |
675 coreutils | [] [] |
676 cpio | [] |
677 cppi | |
678 cpplib | [] |
679 cryptsetup | [] |
680 datamash | [] [] |
681 denemo | |
682 dfarc | [] [] |
683 dialog | [] [] [] [] [] [] |
684 dico | |
685 diffutils | [] [] [] |
686 dink | [] |
687 direvent | [] |
688 doodle | [] |
689 dos2unix | [] [] |
690 dos2unix-man | [] |
691 e2fsprogs | [] |
692 enscript | [] |
693 exif | [] [] [] |
694 fetchmail | [] |
695 findutils | [] [] |
696 flex | [] |
697 freedink | [] [] |
698 fusionforge | |
699 gas | |
700 gawk | [] |
701 gcal | |
702 gcc | |
703 gdbm | |
704 gettext-examples | [] [] [] [] [] [] |
705 gettext-runtime | [] [] [] |
706 gettext-tools | [] |
707 gjay | |
708 glunarclock | [] [] |
709 gnubiff | [] |
710 gnubik | [] [] |
711 gnucash | () () () () () () () [] |
712 gnuchess | [] [] |
713 gnulib | [] |
714 gnunet | |
715 gnunet-gtk | |
716 gold | |
717 gphoto2 | [] |
718 gprof | [] [] |
719 gramadoir | [] |
720 grep | [] [] |
721 grub | [] [] [] |
722 gsasl | [] |
723 gss | |
724 gst-plugins-bad | [] [] [] |
725 gst-plugins-base | [] [] [] |
726 gst-plugins-good | [] [] [] [] |
727 gst-plugins-ugly | [] [] [] [] [] |
728 gstreamer | [] [] [] |
729 gtick | [] |
730 gtkam | [] [] |
731 gtkspell | [] [] [] [] [] [] [] |
732 guix | |
733 guix-packages | |
734 gutenprint | [] |
735 hello | [] [] [] |
736 help2man | [] |
737 help2man-texi | |
738 hylafax | [] |
739 idutils | [] |
740 iso_15924 | () [] [] |
741 iso_3166 | [] [] [] () [] [] [] [] [] [] |
742 iso_3166_2 | () [] |
743 iso_4217 | () [] [] [] |
744 iso_639 | [] [] () [] [] [] [] |
745 iso_639_3 | [] () [] |
746 iso_639_5 | () |
747 jwhois | [] [] |
748 kbd | [] |
749 klavaro | [] [] |
750 ld | |
751 leafpad | [] [] [] [] [] |
752 libc | [] [] |
753 libexif | [] |
754 libextractor | [] |
755 libgnutls | [] [] |
756 libgphoto2 | [] |
757 libgphoto2_port | [] |
758 libgsasl | [] |
759 libiconv | [] [] |
760 libidn | [] |
761 liferea | [] [] [] |
762 lilypond | [] |
763 lordsawar | |
764 lprng | |
765 lynx | [] |
766 m4 | [] |
767 mailfromd | |
768 mailutils | |
769 make | [] [] |
770 man-db | [] |
771 man-db-manpages | [] |
772 midi-instruments | [] [] [] [] [] [] [] |
773 minicom | [] |
774 mkisofs | [] |
775 myserver | |
776 nano | [] [] [] |
777 opcodes | [] |
778 parted | [] [] |
779 pies | |
780 pnmixer | [] |
781 popt | [] [] [] [] [] |
782 procps-ng | |
783 procps-ng-man | |
784 psmisc | [] |
785 pspp | [] [] |
786 pushover | |
787 pwdutils | [] |
788 pyspread | |
789 radius | [] |
790 recode | [] [] |
791 recutils | [] |
792 rpm | [] |
793 rush | [] |
794 sarg | |
795 sed | [] [] |
796 sharutils | [] |
797 shishi | |
798 skribilo | |
799 solfege | [] [] |
800 solfege-manual | [] |
801 spotmachine | [] |
802 sudo | [] [] [] |
803 sudoers | [] [] [] |
804 sysstat | [] [] |
805 tar | [] [] [] |
806 texinfo | [] |
807 texinfo_document | [] |
808 tigervnc | [] |
809 tin | |
810 tin-man | |
811 tracgoogleappsa... | [] [] [] |
812 trader | [] |
813 util-linux | [] |
814 ve | [] |
815 vice | [] |
816 vmm | [] |
817 vorbis-tools | [] |
818 wastesedge | [] |
819 wcd | [] |
820 wcd-man | [] |
821 wdiff | [] |
822 wget | [] [] |
823 wyslij-po | [] |
824 xboard | [] |
825 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] |
826 xkeyboard-config | [] [] [] |
827 +--------------------------------------------------+
828 kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl
829 5 15 4 6 0 13 23 3 3 3 4 11 2 42 1 125
830
831 nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr
832 +------------------------------------------------+
833 a2ps | [] [] [] [] [] [] [] |
834 aegis | [] [] |
835 anubis | [] [] [] |
836 aspell | [] [] [] [] [] [] [] |
837 bash | [] [] [] [] [] [] |
838 bfd | [] [] |
839 binutils | [] [] |
840 bison | [] [] [] |
841 bison-runtime | [] [] [] [] [] [] [] [] |
842 buzztrax | [] |
843 ccd2cue | [] [] |
844 ccide | [] [] [] |
845 cflow | [] [] [] |
846 clisp | [] |
847 coreutils | [] [] [] [] |
848 cpio | [] [] [] |
849 cppi | [] [] [] |
850 cpplib | [] [] [] |
851 cryptsetup | [] [] [] |
852 datamash | [] [] |
853 denemo | |
854 dfarc | [] [] [] |
855 dialog | [] [] [] [] [] [] [] |
856 dico | [] |
857 diffutils | [] [] [] |
858 dink | |
859 direvent | [] [] [] |
860 doodle | [] [] |
861 dos2unix | [] [] [] [] |
862 dos2unix-man | [] [] |
863 e2fsprogs | [] |
864 enscript | [] [] [] [] [] [] |
865 exif | [] [] [] [] [] [] |
866 fetchmail | [] [] [] |
867 findutils | [] [] [] [] [] [] |
868 flex | [] [] [] [] [] |
869 freedink | [] [] [] [] [] |
870 fusionforge | |
871 gas | |
872 gawk | [] |
873 gcal | |
874 gcc | |
875 gdbm | [] [] [] |
876 gettext-examples | [] [] [] [] [] [] [] [] |
877 gettext-runtime | [] [] [] [] [] [] [] [] [] |
878 gettext-tools | [] [] [] [] [] [] [] |
879 gjay | [] |
880 glunarclock | [] [] [] [] [] [] |
881 gnubiff | [] |
882 gnubik | [] [] [] [] |
883 gnucash | () () () () () [] |
884 gnuchess | [] [] |
885 gnulib | [] [] [] [] [] |
886 gnunet | |
887 gnunet-gtk | |
888 gold | |
889 gphoto2 | [] [] [] [] [] |
890 gprof | [] [] [] [] |
891 gramadoir | [] [] |
892 grep | [] [] [] [] [] [] |
893 grub | [] [] [] [] [] |
894 gsasl | [] [] [] |
895 gss | [] [] [] [] |
896 gst-plugins-bad | [] [] [] [] [] |
897 gst-plugins-base | [] [] [] [] [] [] |
898 gst-plugins-good | [] [] [] [] [] [] [] |
899 gst-plugins-ugly | [] [] [] [] [] [] [] |
900 gstreamer | [] [] [] [] [] [] [] |
901 gtick | [] [] [] [] [] |
902 gtkam | [] [] [] [] [] [] |
903 gtkspell | [] [] [] [] [] [] [] [] [] |
904 guix | |
905 guix-packages | |
906 gutenprint | [] [] |
907 hello | [] [] [] [] [] [] |
908 help2man | [] [] [] [] |
909 help2man-texi | [] |
910 hylafax | |
911 idutils | [] [] [] |
912 iso_15924 | [] () [] [] [] [] |
913 iso_3166 | [] [] [] [] () [] [] [] [] [] [] [] [] |
914 iso_3166_2 | [] () [] |
915 iso_4217 | [] [] () [] [] [] [] [] |
916 iso_639 | [] [] [] () [] [] [] [] [] [] |
917 iso_639_3 | [] () |
918 iso_639_5 | () [] |
919 jwhois | [] [] [] [] |
920 kbd | [] [] |
921 klavaro | [] [] [] [] [] |
922 ld | |
923 leafpad | [] [] [] [] [] [] [] [] |
924 libc | [] [] [] |
925 libexif | [] () [] |
926 libextractor | [] |
927 libgnutls | [] |
928 libgphoto2 | [] |
929 libgphoto2_port | [] [] [] [] [] |
930 libgsasl | [] [] [] [] |
931 libiconv | [] [] [] [] [] |
932 libidn | [] [] [] |
933 liferea | [] [] [] [] () [] [] |
934 lilypond | |
935 lordsawar | |
936 lprng | [] |
937 lynx | [] [] |
938 m4 | [] [] [] [] [] |
939 mailfromd | [] |
940 mailutils | [] |
941 make | [] [] [] |
942 man-db | [] [] [] |
943 man-db-manpages | [] [] [] |
944 midi-instruments | [] [] [] [] [] [] [] [] |
945 minicom | [] [] [] [] |
946 mkisofs | [] [] [] |
947 myserver | [] [] |
948 nano | [] [] [] [] [] [] |
949 opcodes | |
950 parted | [] [] [] [] [] [] |
951 pies | [] |
952 pnmixer | [] |
953 popt | [] [] [] [] [] [] |
954 procps-ng | [] |
955 procps-ng-man | [] |
956 psmisc | [] [] [] [] |
957 pspp | [] [] |
958 pushover | |
959 pwdutils | [] |
960 pyspread | [] [] |
961 radius | [] [] |
962 recode | [] [] [] [] [] [] [] [] |
963 recutils | [] [] |
964 rpm | [] |
965 rush | [] [] [] |
966 sarg | [] [] |
967 sed | [] [] [] [] [] [] [] [] |
968 sharutils | [] [] [] |
969 shishi | [] [] |
970 skribilo | [] |
971 solfege | [] [] [] |
972 solfege-manual | [] [] |
973 spotmachine | [] [] |
974 sudo | [] [] [] [] [] [] |
975 sudoers | [] [] [] [] |
976 sysstat | [] [] [] [] [] |
977 tar | [] [] [] [] [] |
978 texinfo | [] [] [] |
979 texinfo_document | [] [] |
980 tigervnc | [] [] [] |
981 tin | [] |
982 tin-man | |
983 tracgoogleappsa... | [] [] [] [] |
984 trader | [] [] |
985 util-linux | [] [] |
986 ve | [] [] [] |
987 vice | |
988 vmm | |
989 vorbis-tools | [] [] [] |
990 wastesedge | |
991 wcd | |
992 wcd-man | |
993 wdiff | [] [] [] [] [] |
994 wget | [] [] [] [] [] |
995 wyslij-po | [] [] [] [] |
996 xboard | [] [] [] |
997 xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] |
998 xkeyboard-config | [] [] [] [] |
999 +------------------------------------------------+
1000 nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr
1001 7 3 6 114 1 12 88 32 82 3 40 45 7 101
1002
1003 sv sw ta te tg th tr uk ur vi wa wo zh_CN
1004 +----------------------------------------------+
1005 a2ps | [] [] [] [] [] |
1006 aegis | [] |
1007 anubis | [] [] [] [] |
1008 aspell | [] [] [] [] [] |
1009 bash | [] [] [] [] |
1010 bfd | [] [] [] |
1011 binutils | [] [] [] |
1012 bison | [] [] [] [] |
1013 bison-runtime | [] [] [] [] [] [] |
1014 buzztrax | [] [] [] |
1015 ccd2cue | [] [] [] |
1016 ccide | [] [] [] [] |
1017 cflow | [] [] [] [] |
1018 clisp | |
1019 coreutils | [] [] [] |
1020 cpio | [] [] [] [] [] |
1021 cppi | [] [] [] [] |
1022 cpplib | [] [] [] [] [] |
1023 cryptsetup | [] [] [] |
1024 datamash | [] [] [] |
1025 denemo | [] |
1026 dfarc | [] [] |
1027 dialog | [] [] [] [] [] [] |
1028 dico | [] |
1029 diffutils | [] [] [] [] [] |
1030 dink | [] |
1031 direvent | [] [] |
1032 doodle | [] [] |
1033 dos2unix | [] [] [] [] |
1034 dos2unix-man | [] [] [] |
1035 e2fsprogs | [] [] [] [] |
1036 enscript | [] [] [] [] |
1037 exif | [] [] [] [] [] |
1038 fetchmail | [] [] [] [] |
1039 findutils | [] [] [] [] [] |
1040 flex | [] [] [] [] |
1041 freedink | [] [] [] |
1042 fusionforge | |
1043 gas | [] |
1044 gawk | [] [] [] |
1045 gcal | [] [] [] |
1046 gcc | [] |
1047 gdbm | [] [] |
1048 gettext-examples | [] [] [] [] [] |
1049 gettext-runtime | [] [] [] [] [] |
1050 gettext-tools | [] [] [] [] [] |
1051 gjay | [] [] [] |
1052 glunarclock | [] [] [] [] |
1053 gnubiff | [] [] |
1054 gnubik | [] [] [] [] |
1055 gnucash | () () () () [] |
1056 gnuchess | [] [] [] |
1057 gnulib | [] [] [] [] |
1058 gnunet | |
1059 gnunet-gtk | |
1060 gold | [] [] |
1061 gphoto2 | [] [] [] [] |
1062 gprof | [] [] [] [] |
1063 gramadoir | [] [] [] |
1064 grep | [] [] [] [] [] |
1065 grub | [] [] [] [] |
1066 gsasl | [] [] [] [] |
1067 gss | [] [] [] |
1068 gst-plugins-bad | [] [] [] [] [] |
1069 gst-plugins-base | [] [] [] [] [] |
1070 gst-plugins-good | [] [] [] [] [] |
1071 gst-plugins-ugly | [] [] [] [] [] |
1072 gstreamer | [] [] [] [] [] |
1073 gtick | [] [] [] |
1074 gtkam | [] [] [] [] |
1075 gtkspell | [] [] [] [] [] [] [] |
1076 guix | |
1077 guix-packages | |
1078 gutenprint | [] [] [] [] |
1079 hello | [] [] [] [] [] [] |
1080 help2man | [] [] [] |
1081 help2man-texi | [] |
1082 hylafax | [] |
1083 idutils | [] [] [] |
1084 iso_15924 | [] () [] [] () [] |
1085 iso_3166 | [] [] () [] [] () [] [] |
1086 iso_3166_2 | () [] [] () [] |
1087 iso_4217 | [] () [] [] () [] |
1088 iso_639 | [] [] [] () [] [] () [] [] |
1089 iso_639_3 | [] () [] [] () |
1090 iso_639_5 | () [] () |
1091 jwhois | [] [] [] [] |
1092 kbd | [] [] [] [] |
1093 klavaro | [] [] [] [] [] [] |
1094 ld | [] [] [] [] [] |
1095 leafpad | [] [] [] [] [] [] |
1096 libc | [] [] [] [] [] |
1097 libexif | [] [] () |
1098 libextractor | [] [] |
1099 libgnutls | [] [] [] [] |
1100 libgphoto2 | [] [] [] |
1101 libgphoto2_port | [] [] [] [] |
1102 libgsasl | [] [] [] [] |
1103 libiconv | [] [] [] [] [] |
1104 libidn | () [] [] [] |
1105 liferea | [] [] [] [] [] |
1106 lilypond | [] |
1107 lordsawar | |
1108 lprng | [] |
1109 lynx | [] [] [] [] |
1110 m4 | [] [] [] |
1111 mailfromd | [] [] |
1112 mailutils | [] |
1113 make | [] [] [] [] |
1114 man-db | [] [] [] |
1115 man-db-manpages | [] [] |
1116 midi-instruments | [] [] [] [] [] [] |
1117 minicom | [] [] |
1118 mkisofs | [] [] [] |
1119 myserver | [] |
1120 nano | [] [] [] [] |
1121 opcodes | [] [] [] |
1122 parted | [] [] [] [] [] |
1123 pies | [] [] |
1124 pnmixer | [] [] [] |
1125 popt | [] [] [] [] [] [] [] |
1126 procps-ng | [] [] |
1127 procps-ng-man | [] |
1128 psmisc | [] [] [] [] |
1129 pspp | [] [] [] |
1130 pushover | [] |
1131 pwdutils | [] [] |
1132 pyspread | [] |
1133 radius | [] [] |
1134 recode | [] [] [] [] |
1135 recutils | [] [] [] |
1136 rpm | [] [] [] [] |
1137 rush | [] [] |
1138 sarg | |
1139 sed | [] [] [] [] [] |
1140 sharutils | [] [] [] [] |
1141 shishi | [] [] |
1142 skribilo | [] [] |
1143 solfege | [] [] [] [] |
1144 solfege-manual | [] |
1145 spotmachine | [] [] [] |
1146 sudo | [] [] [] [] [] |
1147 sudoers | [] [] [] [] |
1148 sysstat | [] [] [] [] [] |
1149 tar | [] [] [] [] [] |
1150 texinfo | [] [] [] |
1151 texinfo_document | [] |
1152 tigervnc | [] [] [] |
1153 tin | [] |
1154 tin-man | |
1155 tracgoogleappsa... | [] [] [] [] [] |
1156 trader | [] |
1157 util-linux | [] [] [] [] |
1158 ve | [] [] [] [] |
1159 vice | () () |
1160 vmm | |
1161 vorbis-tools | [] [] |
1162 wastesedge | |
1163 wcd | [] [] [] |
1164 wcd-man | [] |
1165 wdiff | [] [] [] [] |
1166 wget | [] [] [] |
1167 wyslij-po | [] [] |
1168 xboard | [] [] |
1169 xdg-user-dirs | [] [] [] [] [] [] [] [] |
1170 xkeyboard-config | [] [] [] [] |
1171 +----------------------------------------------+
1172 sv sw ta te tg th tr uk ur vi wa wo zh_CN
1173 106 1 4 3 0 13 51 115 1 125 7 1 100
1174
1175 zh_HK zh_TW
1176 +-------------+
1177 a2ps | | 30
1178 aegis | | 9
1179 anubis | | 19
1180 aspell | | 29
1181 bash | [] | 23
1182 bfd | | 11
1183 binutils | | 12
1184 bison | [] | 18
1185 bison-runtime | [] | 38
1186 buzztrax | | 9
1187 ccd2cue | | 10
1188 ccide | | 17
1189 cflow | | 16
1190 clisp | | 10
1191 coreutils | | 18
1192 cpio | | 20
1193 cppi | | 17
1194 cpplib | [] | 19
1195 cryptsetup | | 14
1196 datamash | | 11
1197 denemo | | 5
1198 dfarc | | 17
1199 dialog | [] | 42
1200 dico | | 6
1201 diffutils | | 22
1202 dink | | 10
1203 direvent | | 11
1204 doodle | | 12
1205 dos2unix | [] | 18
1206 dos2unix-man | | 9
1207 e2fsprogs | | 15
1208 enscript | | 21
1209 exif | | 27
1210 fetchmail | | 19
1211 findutils | | 29
1212 flex | [] | 19
1213 freedink | | 24
1214 fusionforge | | 3
1215 gas | | 5
1216 gawk | | 13
1217 gcal | | 8
1218 gcc | | 2
1219 gdbm | | 10
1220 gettext-examples | [] [] | 40
1221 gettext-runtime | [] [] | 35
1222 gettext-tools | [] | 24
1223 gjay | | 9
1224 glunarclock | [] | 27
1225 gnubiff | | 9
1226 gnubik | | 19
1227 gnucash | () | 6
1228 gnuchess | | 11
1229 gnulib | | 23
1230 gnunet | | 1
1231 gnunet-gtk | | 1
1232 gold | | 7
1233 gphoto2 | [] | 19
1234 gprof | | 21
1235 gramadoir | | 14
1236 grep | [] | 31
1237 grub | | 21
1238 gsasl | [] | 19
1239 gss | | 17
1240 gst-plugins-bad | | 21
1241 gst-plugins-base | | 27
1242 gst-plugins-good | | 32
1243 gst-plugins-ugly | | 34
1244 gstreamer | [] | 32
1245 gtick | | 19
1246 gtkam | | 24
1247 gtkspell | [] [] | 48
1248 guix | | 2
1249 guix-packages | | 0
1250 gutenprint | | 15
1251 hello | [] | 30
1252 help2man | | 18
1253 help2man-texi | | 5
1254 hylafax | | 5
1255 idutils | | 14
1256 iso_15924 | [] | 23
1257 iso_3166 | [] [] | 58
1258 iso_3166_2 | | 9
1259 iso_4217 | [] [] | 28
1260 iso_639 | [] [] | 46
1261 iso_639_3 | | 10
1262 iso_639_5 | | 2
1263 jwhois | [] | 20
1264 kbd | | 17
1265 klavaro | | 30
1266 ld | [] | 15
1267 leafpad | [] | 39
1268 libc | [] | 24
1269 libexif | | 10
1270 libextractor | | 5
1271 libgnutls | | 13
1272 libgphoto2 | | 10
1273 libgphoto2_port | [] | 19
1274 libgsasl | | 18
1275 libiconv | [] | 29
1276 libidn | | 17
1277 liferea | | 29
1278 lilypond | | 11
1279 lordsawar | | 3
1280 lprng | | 3
1281 lynx | | 19
1282 m4 | [] | 22
1283 mailfromd | | 4
1284 mailutils | | 6
1285 make | | 19
1286 man-db | | 15
1287 man-db-manpages | | 10
1288 midi-instruments | [] | 43
1289 minicom | [] | 17
1290 mkisofs | | 13
1291 myserver | | 9
1292 nano | [] | 30
1293 opcodes | | 12
1294 parted | [] | 23
1295 pies | | 4
1296 pnmixer | | 9
1297 popt | [] | 36
1298 procps-ng | | 5
1299 procps-ng-man | | 4
1300 psmisc | [] | 22
1301 pspp | | 13
1302 pushover | | 6
1303 pwdutils | | 8
1304 pyspread | | 6
1305 radius | | 9
1306 recode | | 31
1307 recutils | | 10
1308 rpm | [] | 13
1309 rush | | 10
1310 sarg | | 4
1311 sed | [] | 35
1312 sharutils | | 13
1313 shishi | | 7
1314 skribilo | | 7
1315 solfege | | 21
1316 solfege-manual | | 9
1317 spotmachine | | 11
1318 sudo | | 26
1319 sudoers | | 22
1320 sysstat | | 23
1321 tar | [] | 30
1322 texinfo | | 17
1323 texinfo_document | | 13
1324 tigervnc | | 14
1325 tin | [] | 7
1326 tin-man | | 1
1327 tracgoogleappsa... | [] | 22
1328 trader | | 12
1329 util-linux | | 13
1330 ve | | 14
1331 vice | | 1
1332 vmm | | 3
1333 vorbis-tools | | 13
1334 wastesedge | | 3
1335 wcd | | 8
1336 wcd-man | | 3
1337 wdiff | [] | 23
1338 wget | | 21
1339 wyslij-po | | 14
1340 xboard | | 10
1341 xdg-user-dirs | [] [] | 68
1342 xkeyboard-config | [] | 28
1343 +-------------+
1344 89 teams zh_HK zh_TW
1345 166 domains 7 42 2809
1346
1347 Some counters in the preceding matrix are higher than the number of
1348visible blocks let us expect. This is because a few extra PO files are
1349used for implementing regional variants of languages, or language
1350dialects.
1351
1352 For a PO file in the matrix above to be effective, the package to
1353which it applies should also have been internationalized and distributed
1354as such by its maintainer. There might be an observable lag between the
1355mere existence a PO file and its wide availability in a distribution.
1356
1357 If Jun 2014 seems to be old, you may fetch a more recent copy of this
1358'ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix
1359with full percentage details can be found at
1360'http://translationproject.org/extra/matrix.html'.
1361
13621.5 Using 'gettext' in new packages
1363===================================
1364
1365If you are writing a freely available program and want to
1366internationalize it you are welcome to use GNU 'gettext' in your
1367package. Of course you have to respect the GNU Lesser General Public
1368License which covers the use of the GNU 'gettext' library. This means
1369in particular that even non-free programs can use 'libintl' as a shared
1370library, whereas only free software can use 'libintl' as a static
1371library or use modified versions of 'libintl'.
1372
1373 Once the sources are changed appropriately and the setup can handle
1374the use of 'gettext' the only thing missing are the translations. The
1375Free Translation Project is also available for packages which are not
1376developed inside the GNU project. Therefore the information given above
1377applies also for every other Free Software Project. Contact
1378'coordinator@translationproject.org' to make the '.pot' files available
1379to the translation teams.
diff --git a/po/Makefile.in.in b/po/Makefile.in.in
index 38c293d2..4e5c700e 100644
--- a/po/Makefile.in.in
+++ b/po/Makefile.in.in
@@ -18,8 +18,12 @@ SHELL = /bin/sh
18@SET_MAKE@ 18@SET_MAKE@
19 19
20srcdir = @srcdir@ 20srcdir = @srcdir@
21top_srcdir = @top_srcdir@ 21# Modified to fit MHD needs
22VPATH = @srcdir@ 22top_po_srcdir = @top_srcdir@
23top_srcdir = @top_srcdir@/..
24top_po_builddir = $(top_builddir)/po
25# See '$(POTFILES):' rule
26VPATH = @srcdir@:@srcdir@/po
23 27
24prefix = @prefix@ 28prefix = @prefix@
25exec_prefix = @exec_prefix@ 29exec_prefix = @exec_prefix@
@@ -155,6 +159,7 @@ stamp-po: $(srcdir)/$(DOMAIN).pot
155# The determination of whether the package xyz is a GNU one is based on the 159# The determination of whether the package xyz is a GNU one is based on the
156# heuristic whether some file in the top level directory mentions "GNU xyz". 160# heuristic whether some file in the top level directory mentions "GNU xyz".
157# If GNU 'find' is available, we avoid grepping through monster files. 161# If GNU 'find' is available, we avoid grepping through monster files.
162# Modified to fit MHD needs
158$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed 163$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
159 package_gnu="$(PACKAGE_GNU)"; \ 164 package_gnu="$(PACKAGE_GNU)"; \
160 test -n "$$package_gnu" || { \ 165 test -n "$$package_gnu" || { \
@@ -183,19 +188,19 @@ $(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed
183 fi; \ 188 fi; \
184 case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \ 189 case `$(XGETTEXT) --version | sed 1q | sed -e 's,^[^0-9]*,,'` in \
185 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \ 190 '' | 0.[0-9] | 0.[0-9].* | 0.1[0-5] | 0.1[0-5].* | 0.16 | 0.16.[0-1]*) \
186 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ 191 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_po_srcdir) \
187 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ 192 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \
188 --files-from=$(srcdir)/POTFILES.in \ 193 --files-from=$(srcdir)/POTFILES.in \
189 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 194 --copyright-holder='$(COPYRIGHT_HOLDER)' \
190 --msgid-bugs-address="$$msgid_bugs_address" \ 195 --msgid-bugs-address="$$msgid_bugs_address" \
191 ;; \ 196 ;; \
192 *) \ 197 *) \
193 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ 198 $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_po_srcdir) \
194 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \ 199 --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) @XGETTEXT_EXTRA_OPTIONS@ \
195 --files-from=$(srcdir)/POTFILES.in \ 200 --files-from=$(srcdir)/POTFILES.in \
196 --copyright-holder='$(COPYRIGHT_HOLDER)' \ 201 --copyright-holder='$(COPYRIGHT_HOLDER)' \
197 --package-name="$${package_prefix}@PACKAGE@" \ 202 --package-name="$${package_prefix}@PACKAGE@" \
198 --package-version='@VERSION@' \ 203 --package-version='$(VERSION)' \
199 --msgid-bugs-address="$$msgid_bugs_address" \ 204 --msgid-bugs-address="$$msgid_bugs_address" \
200 ;; \ 205 ;; \
201 esac 206 esac
@@ -373,24 +378,51 @@ check: all
373 378
374info dvi ps pdf html tags TAGS ctags CTAGS ID: 379info dvi ps pdf html tags TAGS ctags CTAGS ID:
375 380
381# Modified for MHD
376mostlyclean: 382mostlyclean:
377 rm -f remove-potcdate.sed 383 rm -f remove-potcdate.sed
378 rm -f stamp-poT 384 rm -f stamp-poT
379 rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po 385 rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po
380 rm -fr *.o 386 rm -fr *.o
387 rm -fr po
381 388
382clean: mostlyclean 389clean: mostlyclean
383 390
391# Modified to fit MHD needs
384distclean: clean 392distclean: clean
385 rm -f Makefile Makefile.in POTFILES *.mo 393 rm -f Makefile Makefile.in POTFILES *.mo
394 rm -f config.status config.cache config.log configure.lineno config.status.lineno stamp-po
386 395
396# Modified to fit MHD needs
387maintainer-clean: distclean 397maintainer-clean: distclean
388 @echo "This command is intended for maintainers to use;" 398 @echo "This command is intended for maintainers to use;"
389 @echo "it deletes files that may require special tools to rebuild." 399 @echo "it deletes files that may require special tools to rebuild."
390 rm -f stamp-po $(GMOFILES) 400 rm -f $(GMOFILES)
391 401
392distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) 402distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
393dist distdir: 403
404# Added for MHD
405# If source path is in absolute form, POTFILES generated with correct path,
406# but if source path in relative form (forced by 'configure' for inplace builds)
407# then POTFILES is generated with extra '..' ('po-directories' in config.status
408# think that '.' is subdirectory and add additional '..' to path to source files)
409# This rule create additional 'po' subdirectory which is included in VPATH.
410$(POTFILES):
411 @ case "$(srcdir)" in \
412 /* ) : ;; \
413 * ) @mkdir_p@ po ;; \
414 esac
415
416# Modified to fit MHD needs
417mkdistdir:
418 @ $(mkdir_p) $(distdir)
419 @ case "$(srcdir)" in \
420 /* ) : ;; \
421 * ) @mkdir_p@ po ;; \
422 esac
423
424# Modified to fit MHD needs
425dist distdir: mkdistdir
394 test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS) 426 test -z "$(DISTFILESDEPS)" || $(MAKE) $(DISTFILESDEPS)
395 @$(MAKE) dist2 427 @$(MAKE) dist2
396# This is a separate target because 'update-po' must be executed before. 428# This is a separate target because 'update-po' must be executed before.
@@ -472,9 +504,10 @@ update-gmo: Makefile $(GMOFILES)
472# because execution permission bits may not work on the current file system. 504# because execution permission bits may not work on the current file system.
473# Use @SHELL@, which is the shell determined by autoconf for the use by its 505# Use @SHELL@, which is the shell determined by autoconf for the use by its
474# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient. 506# scripts, not $(SHELL) which is hardwired to /bin/sh and may be deficient.
475Makefile: Makefile.in.in Makevars $(top_builddir)/config.status @POMAKEFILEDEPS@ 507# Note: Fixed missging 'srcdir', Modified to fit MHD needs
476 cd $(top_builddir) \ 508Makefile: $(srcdir)/Makefile.in.in $(srcdir)/Makevars $(top_po_builddir)/config.status @POMAKEFILEDEPS@
477 && @SHELL@ ./config.status $(subdir)/$@.in po-directories 509 cd $(top_po_builddir) \
510 && @SHELL@ ./config.status ./$@.in po-directories
478 511
479force: 512force:
480 513
diff --git a/po/POTFILES.in b/po/POTFILES.in
deleted file mode 100644
index 1fda6ce6..00000000
--- a/po/POTFILES.in
+++ /dev/null
@@ -1,53 +0,0 @@
1src/examples/authorization_example.c
2src/examples/benchmark.c
3src/examples/benchmark_https.c
4src/examples/chunked_example.c
5src/examples/demo.c
6src/examples/demo_https.c
7src/examples/digest_auth_example.c
8src/examples/dual_stack_example.c
9src/examples/fileserver_example.c
10src/examples/fileserver_example_dirs.c
11src/examples/fileserver_example_external_select.c
12src/examples/https_fileserver_example.c
13src/examples/minimal_example.c
14src/examples/minimal_example_comet.c
15src/examples/post_example.c
16src/examples/querystring_example.c
17src/examples/refuse_post_example.c
18src/examples/timeout.c
19src/examples/upgrade_example.c
20src/microhttpd/base64.c
21src/microhttpd/basicauth.c
22src/microhttpd/connection.c
23src/microhttpd/connection_https.c
24src/microhttpd/daemon.c
25src/microhttpd/digestauth.c
26src/microhttpd/internal.c
27src/microhttpd/md5.c
28src/microhttpd/memorypool.c
29src/microhttpd/mhd_compat.c
30src/microhttpd/mhd_itc.c
31src/microhttpd/mhd_mono_clock.c
32src/microhttpd/mhd_sem.c
33src/microhttpd/mhd_sockets.c
34src/microhttpd/mhd_str.c
35src/microhttpd/mhd_threads.c
36src/microhttpd/postprocessor.c
37src/microhttpd/reason_phrase.c
38src/microhttpd/response.c
39src/microhttpd/sysfdsetsize.c
40src/microhttpd/tsearch.c
41src/testcurl/curl_version_check.c
42src/testcurl/https/tls_test_common.c
43src/testzzuf/socat.c
44src/include/mhd_options.h
45src/include/microhttpd.h
46src/microhttpd/connection.h
47src/microhttpd/internal.h
48src/microhttpd/mhd_compat.h
49src/microhttpd/mhd_itc.h
50src/microhttpd/mhd_locks.h
51src/microhttpd/mhd_sockets.h
52src/microhttpd/mhd_str.h
53src/microhttpd/mhd_threads.h
diff --git a/po/configure.ac.in b/po/configure.ac.in
new file mode 100644
index 00000000..c0b98669
--- /dev/null
+++ b/po/configure.ac.in
@@ -0,0 +1,17 @@
1# This configure.ac.in is in the public domain
2
3# Use versions from parent configure
4AC_INIT([@PACKAGE_NAME@], [@PACKAGE_VERSION@], [@PACKAGE_BUGREPORT@])
5
6AC_CONFIG_SRCDIR([Makevars])
7AC_CONFIG_MACRO_DIR([../m4])
8AC_CONFIG_AUX_DIR([..])
9AM_INIT_AUTOMAKE([silent-rules])
10
11AM_GNU_GETTEXT([external])
12
13# gettext expect that 'po' files will stay in subdirectory.
14# Form './Makefile.in' is accepted by gettext as subdirectory but caused some
15# troubles with in-place build (with relative path to source files). To workaround
16# this, some hack are used in Makefile.
17AC_OUTPUT([./Makefile.in])
diff --git a/po/libmicrohttpd.pot b/po/libmicrohttpd.pot
deleted file mode 100644
index 2af0c97f..00000000
--- a/po/libmicrohttpd.pot
+++ /dev/null
@@ -1,654 +0,0 @@
1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR Christian Grothoff
3# This file is distributed under the same license as the GNU libmicrohttpd package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#
6#, fuzzy
7msgid ""
8msgstr ""
9"Project-Id-Version: GNU libmicrohttpd 0.9.52\n"
10"Report-Msgid-Bugs-To: libmicrohttpd@gnu.org\n"
11"POT-Creation-Date: 2016-10-17 19:09+0200\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"
15"Language: \n"
16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=CHARSET\n"
18"Content-Transfer-Encoding: 8bit\n"
19
20#: src/microhttpd/basicauth.c:67
21msgid "Error decoding basic authentication\n"
22msgstr ""
23
24#: src/microhttpd/basicauth.c:77
25msgid "Basic authentication doesn't contain ':' separator\n"
26msgstr ""
27
28#: src/microhttpd/basicauth.c:95
29msgid "Failed to allocate memory for password\n"
30msgstr ""
31
32#: src/microhttpd/basicauth.c:158
33msgid "Failed to add Basic auth header\n"
34msgstr ""
35
36#: src/microhttpd/connection.c:528
37msgid ""
38"Failed to signal end of connection via inter-thread communication channel"
39msgstr ""
40
41#: src/microhttpd/connection.c:621
42msgid "Closing connection (application reported error generating data)\n"
43msgstr ""
44
45#: src/microhttpd/connection.c:667
46msgid "Closing connection (out of memory)\n"
47msgstr ""
48
49#: src/microhttpd/connection.c:711
50msgid "Closing connection (application error generating response)\n"
51msgstr ""
52
53#: src/microhttpd/connection.c:1233
54#, c-format
55msgid ""
56"Error processing request (HTTP response code is %u (`%s')). Closing "
57"connection.\n"
58msgstr ""
59
60#: src/microhttpd/connection.c:1250 src/microhttpd/connection.c:2859
61#: src/microhttpd/connection.c:2962
62msgid "Closing connection (failed to create response header)\n"
63msgstr ""
64
65#: src/microhttpd/connection.c:1274 src/microhttpd/connection.c:2329
66#: src/microhttpd/connection.c:2390 src/microhttpd/connection.c:2626
67#: src/microhttpd/connection_https.c:139
68#, c-format
69msgid "In function %s handling connection at state: %s\n"
70msgstr ""
71
72#: src/microhttpd/connection.c:1490
73msgid "Not enough memory in pool to allocate header record!\n"
74msgstr ""
75
76#: src/microhttpd/connection.c:1532
77msgid "Not enough memory in pool to parse cookies!\n"
78msgstr ""
79
80#: src/microhttpd/connection.c:1737 src/microhttpd/connection.c:1899
81msgid "Application reported internal error, closing connection.\n"
82msgstr ""
83
84#: src/microhttpd/connection.c:1789 src/microhttpd/connection.c:1844
85msgid ""
86"Received malformed HTTP request (bad chunked encoding). Closing connection.\n"
87msgstr ""
88
89#: src/microhttpd/connection.c:1907
90msgid "libmicrohttpd API violation"
91msgstr ""
92
93#: src/microhttpd/connection.c:1923
94msgid ""
95"WARNING: incomplete POST processing and connection not suspended will result "
96"in hung connection.\n"
97msgstr ""
98
99#: src/microhttpd/connection.c:2027
100#, c-format
101msgid "Sent response: `%.*s'\n"
102msgstr ""
103
104#: src/microhttpd/connection.c:2088
105msgid "Received malformed line (no colon). Closing connection.\n"
106msgstr ""
107
108#: src/microhttpd/connection.c:2224
109msgid "Received HTTP 1.1 request without `Host' header.\n"
110msgstr ""
111
112#: src/microhttpd/connection.c:2419 src/microhttpd/connection.c:2493
113#, c-format
114msgid "Failed to send data: %s\n"
115msgstr ""
116
117#: src/microhttpd/connection.c:2428
118#, c-format
119msgid "Sent 100 continue response: `%.*s'\n"
120msgstr ""
121
122#: src/microhttpd/connection.c:2468
123msgid "Data offset exceeds limit"
124msgstr ""
125
126#: src/microhttpd/connection.c:2478
127#, c-format
128msgid "Sent %d-byte DATA response: `%.*s'\n"
129msgstr ""
130
131#: src/microhttpd/connection.c:2544 src/microhttpd/daemon.c:5249
132msgid "Internal error\n"
133msgstr ""
134
135#: src/microhttpd/connection.c:3164 src/microhttpd/daemon.c:2078
136#: src/microhttpd/daemon.c:3417 src/microhttpd/daemon.c:3437
137#: src/microhttpd/daemon.c:4387 src/microhttpd/daemon.c:4405
138#: src/microhttpd/response.c:838 src/microhttpd/response.c:864
139#, c-format
140msgid "Call to epoll_ctl failed: %s\n"
141msgstr ""
142
143#: src/microhttpd/connection.c:3328
144msgid "Application used invalid status code for 'upgrade' response!\n"
145msgstr ""
146
147#: src/microhttpd/connection.c:3338
148msgid ""
149"Application attempted 'upgrade' without setting MHD_USE_SUSPEND_RESUME!\n"
150msgstr ""
151
152#: src/microhttpd/connection.c:3349
153msgid ""
154"Application attempted 'upgrade' HTTPS connection in epoll mode without "
155"setting MHD_USE_HTTPS_EPOLL_UPGRADE!\n"
156msgstr ""
157
158#: src/microhttpd/connection_https.c:70
159msgid "Error: received handshake message out of context\n"
160msgstr ""
161
162#: src/microhttpd/daemon.c:107
163#, c-format
164msgid "Fatal error in GNU libmicrohttpd %s:%u: %s\n"
165msgstr ""
166
167#: src/microhttpd/daemon.c:323
168msgid "Failed to add IP connection count node\n"
169msgstr ""
170
171#: src/microhttpd/daemon.c:381
172msgid "Failed to find previously-added IP address\n"
173msgstr ""
174
175#: src/microhttpd/daemon.c:387
176msgid "Previously-added IP address had counter of zero\n"
177msgstr ""
178
179#: src/microhttpd/daemon.c:553
180msgid ""
181"Failed to setup x509 certificate/key: pre 3.X.X version of GnuTLS does not "
182"support setting key password"
183msgstr ""
184
185#: src/microhttpd/daemon.c:603
186#, c-format
187msgid "Error: invalid credentials type %d specified.\n"
188msgstr ""
189
190#: src/microhttpd/daemon.c:849
191#, c-format
192msgid "Maximum socket in select set: %d\n"
193msgstr ""
194
195#: src/microhttpd/daemon.c:945 src/microhttpd/daemon.c:962
196#: src/microhttpd/daemon.c:2202 src/microhttpd/daemon.c:2576
197#: src/microhttpd/daemon.c:5142
198msgid "Failed to remove FD from epoll set\n"
199msgstr ""
200
201#: src/microhttpd/daemon.c:1185
202msgid "Error preparing select\n"
203msgstr ""
204
205#: src/microhttpd/daemon.c:1205 src/microhttpd/daemon.c:1426
206#, c-format
207msgid "Error during select (%d): `%s'\n"
208msgstr ""
209
210#: src/microhttpd/daemon.c:1255 src/microhttpd/daemon.c:1500
211#, c-format
212msgid "Error during poll: `%s'\n"
213msgstr ""
214
215#: src/microhttpd/daemon.c:1408
216msgid "Failed to add FD to fd_set\n"
217msgstr ""
218
219#: src/microhttpd/daemon.c:1546 src/microhttpd/response.c:664
220msgid "Processing thread terminating. Closing connection\n"
221msgstr ""
222
223#: src/microhttpd/daemon.c:1809 src/microhttpd/daemon.c:4906
224#, c-format
225msgid "Socket descriptor larger than FD_SETSIZE: %d > %d\n"
226msgstr ""
227
228#: src/microhttpd/daemon.c:1824 src/microhttpd/daemon.c:2496
229#, c-format
230msgid "Accepted connection on socket %d\n"
231msgstr ""
232
233#: src/microhttpd/daemon.c:1836
234msgid "Server reached connection limit. Closing inbound connection.\n"
235msgstr ""
236
237#: src/microhttpd/daemon.c:1854
238msgid "Connection rejected by application. Closing connection.\n"
239msgstr ""
240
241#: src/microhttpd/daemon.c:1902 src/microhttpd/daemon.c:1922
242#: src/microhttpd/daemon.c:3006
243#, c-format
244msgid "Error allocating memory: %s\n"
245msgstr ""
246
247#: src/microhttpd/daemon.c:1955
248#, c-format
249msgid "Failed to set nonblocking mode on connection socket: %s\n"
250msgstr ""
251
252#: src/microhttpd/daemon.c:1983
253#, c-format
254msgid "Failed to setup TLS credentials: unknown credential type %d\n"
255msgstr ""
256
257#: src/microhttpd/daemon.c:1992
258msgid "Unknown credential type"
259msgstr ""
260
261#: src/microhttpd/daemon.c:2058
262msgid "Failed to signal new connection via inter-thread communication channel."
263msgstr ""
264
265#: src/microhttpd/daemon.c:2164
266msgid "Cannot suspend connections without enabling MHD_USE_SUSPEND_RESUME!\n"
267msgstr ""
268
269#: src/microhttpd/daemon.c:2229
270msgid "Cannot resume connections without enabling MHD_USE_SUSPEND_RESUME!\n"
271msgstr ""
272
273#: src/microhttpd/daemon.c:2239
274msgid "Failed to signal resume via inter-thread communication channel."
275msgstr ""
276
277#: src/microhttpd/daemon.c:2366
278#, c-format
279msgid "Failed to set nonblocking mode on new client socket: %s\n"
280msgstr ""
281
282#: src/microhttpd/daemon.c:2374
283msgid "Failed to set noninheritable mode on new client socket.\n"
284msgstr ""
285
286#: src/microhttpd/daemon.c:2442
287#, c-format
288msgid "Error accepting connection: %s\n"
289msgstr ""
290
291#: src/microhttpd/daemon.c:2459
292msgid ""
293"Hit process or system resource limit at FIRST connection. This is really bad "
294"as there is no sane way to proceed. Will try busy waiting for system "
295"resources to become magically available.\n"
296msgstr ""
297
298#: src/microhttpd/daemon.c:2467
299#, c-format
300msgid ""
301"Hit process or system resource limit at %u connections, temporarily "
302"suspending accept(). Consider setting a lower MHD_OPTION_CONNECTION_LIMIT.\n"
303msgstr ""
304
305#: src/microhttpd/daemon.c:2479
306#, c-format
307msgid "Failed to set nonblocking mode on incoming connection socket: %s\n"
308msgstr ""
309
310#: src/microhttpd/daemon.c:2489
311msgid "Failed to set noninheritable mode on incoming connection socket.\n"
312msgstr ""
313
314#: src/microhttpd/daemon.c:2535 src/microhttpd/daemon.c:5213
315#: src/microhttpd/daemon.c:5228 src/microhttpd/daemon.c:5356
316#: src/microhttpd/daemon.c:5387
317msgid "Failed to join a thread\n"
318msgstr ""
319
320#: src/microhttpd/daemon.c:2627
321msgid "Illegal call to MHD_get_timeout\n"
322msgstr ""
323
324#: src/microhttpd/daemon.c:2845
325msgid "Could not obtain daemon fdsets"
326msgstr ""
327
328#: src/microhttpd/daemon.c:2861
329msgid "Could not add listen socket to fdset"
330msgstr ""
331
332#: src/microhttpd/daemon.c:2888
333msgid "Could not add control inter-thread communication channel FD to fdset"
334msgstr ""
335
336#: src/microhttpd/daemon.c:2945
337#, c-format
338msgid "select failed: %s\n"
339msgstr ""
340
341#: src/microhttpd/daemon.c:3103 src/microhttpd/daemon.c:3233
342#, c-format
343msgid "poll failed: %s\n"
344msgstr ""
345
346#: src/microhttpd/daemon.c:3322 src/microhttpd/daemon.c:3493
347#, c-format
348msgid "Call to epoll_wait failed: %s\n"
349msgstr ""
350
351#: src/microhttpd/daemon.c:3455 src/microhttpd/daemon.c:3853
352msgid "Failed to remove listen FD from epoll set\n"
353msgstr ""
354
355#: src/microhttpd/daemon.c:3861
356msgid "Failed to signal quiesce via inter-thread communication channel"
357msgstr ""
358
359#: src/microhttpd/daemon.c:3882
360msgid "failed to signal quiesce via inter-thread communication channel"
361msgstr ""
362
363#: src/microhttpd/daemon.c:4015
364#, c-format
365msgid "Specified thread pool size (%u) too big\n"
366msgstr ""
367
368#: src/microhttpd/daemon.c:4029 src/microhttpd/daemon.c:4040
369#: src/microhttpd/daemon.c:4051 src/microhttpd/daemon.c:4062
370#: src/microhttpd/daemon.c:4104
371#, c-format
372msgid "MHD HTTPS option %d passed to MHD but MHD_USE_TLS not set\n"
373msgstr ""
374
375#: src/microhttpd/daemon.c:4081
376msgid "Error initializing DH parameters\n"
377msgstr ""
378
379#: src/microhttpd/daemon.c:4093
380msgid "Bad Diffie-Hellman parameters format\n"
381msgstr ""
382
383#: src/microhttpd/daemon.c:4121
384#, c-format
385msgid "Setting priorities to `%s' failed: %s\n"
386msgstr ""
387
388#: src/microhttpd/daemon.c:4134
389msgid ""
390"MHD_OPTION_HTTPS_CERT_CALLBACK requires building MHD with GnuTLS >= 3.0\n"
391msgstr ""
392
393#: src/microhttpd/daemon.c:4303
394#, c-format
395msgid "MHD HTTPS option %d passed to MHD compiled without HTTPS support\n"
396msgstr ""
397
398#: src/microhttpd/daemon.c:4309
399#, c-format
400msgid "Invalid option %d! (Did you terminate the list with MHD_OPTION_END?)\n"
401msgstr ""
402
403#: src/microhttpd/daemon.c:4335
404#, c-format
405msgid "Call to epoll_create1 failed: %s\n"
406msgstr ""
407
408#: src/microhttpd/daemon.c:4345
409msgid "Failed to set noninheritable mode on epoll FD.\n"
410msgstr ""
411
412#: src/microhttpd/daemon.c:4530
413#, c-format
414msgid "Failed to create inter-thread communication channel: %s\n"
415msgstr ""
416
417#: src/microhttpd/daemon.c:4544
418msgid ""
419"file descriptor for inter-thread communication channel exceeds maximum "
420"value\n"
421msgstr ""
422
423#: src/microhttpd/daemon.c:4583
424msgid "Specified value for NC_SIZE too large\n"
425msgstr ""
426
427#: src/microhttpd/daemon.c:4597
428#, c-format
429msgid "Failed to allocate memory for nonce-nc map: %s\n"
430msgstr ""
431
432#: src/microhttpd/daemon.c:4613
433msgid "MHD failed to initialize nonce-nc mutex\n"
434msgstr ""
435
436#: src/microhttpd/daemon.c:4631
437msgid "MHD thread pooling only works with MHD_USE_SELECT_INTERNALLY\n"
438msgstr ""
439
440#: src/microhttpd/daemon.c:4641
441msgid ""
442"Combining MHD_USE_THREAD_PER_CONNECTION and MHD_USE_SUSPEND_RESUME is not "
443"supported.\n"
444msgstr ""
445
446#: src/microhttpd/daemon.c:4651
447msgid "Threaded operations are not supported on Symbian.\n"
448msgstr ""
449
450#: src/microhttpd/daemon.c:4665
451#, c-format
452msgid "Failed to create socket for listening: %s\n"
453msgstr ""
454
455#: src/microhttpd/daemon.c:4683 src/microhttpd/daemon.c:4727
456#: src/microhttpd/daemon.c:4759 src/microhttpd/daemon.c:4829
457#: src/microhttpd/daemon.c:4860
458#, c-format
459msgid "setsockopt failed: %s\n"
460msgstr ""
461
462#: src/microhttpd/daemon.c:4737
463msgid "Cannot allow listening address reuse: SO_REUSEPORT not defined\n"
464msgstr ""
465
466#: src/microhttpd/daemon.c:4767
467msgid ""
468"Cannot disallow listening address reuse: SO_EXCLUSIVEADDRUSE not defined\n"
469msgstr ""
470
471#: src/microhttpd/daemon.c:4840
472#, c-format
473msgid "Failed to bind to port %u: %s\n"
474msgstr ""
475
476#: src/microhttpd/daemon.c:4871
477#, c-format
478msgid "Failed to listen for connections: %s\n"
479msgstr ""
480
481#: src/microhttpd/daemon.c:4887
482#, c-format
483msgid "Failed to set nonblocking mode on listening socket: %s\n"
484msgstr ""
485
486#: src/microhttpd/daemon.c:4923
487msgid ""
488"Combining MHD_USE_THREAD_PER_CONNECTION and MHD_USE_EPOLL is not supported.\n"
489msgstr ""
490
491#: src/microhttpd/daemon.c:4935
492msgid "epoll is not supported on this platform by this build.\n"
493msgstr ""
494
495#: src/microhttpd/daemon.c:4945 src/microhttpd/daemon.c:4955
496msgid "MHD failed to initialize IP connection limit mutex\n"
497msgstr ""
498
499#: src/microhttpd/daemon.c:4970
500msgid "Failed to initialize TLS support\n"
501msgstr ""
502
503#: src/microhttpd/daemon.c:4992
504#, c-format
505msgid "Failed to create listen thread: %s\n"
506msgstr ""
507
508#: src/microhttpd/daemon.c:5041
509#, c-format
510msgid "Failed to create worker inter-thread communication channel: %s\n"
511msgstr ""
512
513#: src/microhttpd/daemon.c:5053
514msgid ""
515"File descriptor for worker inter-thread communication channel exceeds "
516"maximum value\n"
517msgstr ""
518
519#: src/microhttpd/daemon.c:5075
520msgid "MHD failed to initialize cleanup connection mutex\n"
521msgstr ""
522
523#: src/microhttpd/daemon.c:5089
524#, c-format
525msgid "Failed to create pool thread: %s\n"
526msgstr ""
527
528#: src/microhttpd/daemon.c:5190
529msgid "MHD_stop_daemon() called while we have suspended connections.\n"
530msgstr ""
531
532#: src/microhttpd/daemon.c:5198 src/microhttpd/daemon.c:5317
533msgid "Failed to signal shutdown via inter-thread communication channel"
534msgstr ""
535
536#: src/microhttpd/daemon.c:5257
537msgid ""
538"Failed to add inter-thread communication channel FD to epoll set to signal "
539"termination\n"
540msgstr ""
541
542#: src/microhttpd/daemon.c:5339
543msgid "MHD listen socket shutdown\n"
544msgstr ""
545
546#: src/microhttpd/daemon.c:5353
547msgid "Failed to signal shutdown via inter-thread communication channel."
548msgstr ""
549
550#: src/microhttpd/daemon.c:5725
551msgid "Failed to initialize winsock\n"
552msgstr ""
553
554#: src/microhttpd/daemon.c:5728
555msgid "Winsock version 2.2 is not available\n"
556msgstr ""
557
558#: src/microhttpd/daemon.c:5735 src/microhttpd/daemon.c:5739
559msgid "Failed to initialise multithreading in libgcrypt\n"
560msgstr ""
561
562#: src/microhttpd/daemon.c:5744
563msgid "libgcrypt is too old. MHD was compiled for libgcrypt 1.6.0 or newer\n"
564msgstr ""
565
566#: src/microhttpd/digestauth.c:443
567msgid ""
568"Stale nonce received. If this happens a lot, you should probably increase "
569"the size of the nonce array.\n"
570msgstr ""
571
572#: src/microhttpd/digestauth.c:630
573msgid "Failed to allocate memory for copy of URI arguments\n"
574msgstr ""
575
576#: src/microhttpd/digestauth.c:759
577msgid "Authentication failed, invalid timestamp format.\n"
578msgstr ""
579
580#: src/microhttpd/digestauth.c:820
581msgid "Authentication failed, invalid format.\n"
582msgstr ""
583
584#: src/microhttpd/digestauth.c:830
585msgid "Authentication failed, invalid nc format.\n"
586msgstr ""
587
588#: src/microhttpd/digestauth.c:856
589msgid "Failed to allocate memory for auth header processing\n"
590msgstr ""
591
592#: src/microhttpd/digestauth.c:896
593msgid "Authentication failed, URI does not match.\n"
594msgstr ""
595
596#: src/microhttpd/digestauth.c:916
597msgid "Authentication failed, arguments do not match.\n"
598msgstr ""
599
600#: src/microhttpd/digestauth.c:971
601msgid "Could not register nonce (is the nonce array size zero?).\n"
602msgstr ""
603
604#: src/microhttpd/digestauth.c:994
605msgid "Failed to allocate memory for auth response header\n"
606msgstr ""
607
608#: src/microhttpd/digestauth.c:1028
609msgid "Failed to add Digest auth header\n"
610msgstr ""
611
612#: src/microhttpd/response.c:721
613msgid ""
614"Invalid response for upgrade: application failed to set the 'Upgrade' "
615"header!\n"
616msgstr ""
617
618#: src/microhttpd/response.c:760
619#, c-format
620msgid "Failed to make loopback sockets non-blocking: %s\n"
621msgstr ""
622
623#: src/microhttpd/response.c:771
624#, c-format
625msgid "Socketpair descriptor larger than FD_SETSIZE: %d > %d\n"
626msgstr ""
627
628#: src/microhttpd/response.c:861
629msgid "Error cleaning up while handling epoll error"
630msgstr ""
631
632#: src/microhttpd/internal.h:74
633msgid "Failed to close FD.\n"
634msgstr ""
635
636#: src/microhttpd/mhd_itc.h:347
637msgid "Failed to destroy ITC.\n"
638msgstr ""
639
640#: src/microhttpd/mhd_locks.h:111
641msgid "Failed to destroy mutex.\n"
642msgstr ""
643
644#: src/microhttpd/mhd_locks.h:144
645msgid "Failed to lock mutex.\n"
646msgstr ""
647
648#: src/microhttpd/mhd_locks.h:170
649msgid "Failed to unlock mutex.\n"
650msgstr ""
651
652#: src/microhttpd/mhd_sockets.h:248
653msgid "Close socket failed.\n"
654msgstr ""
diff --git a/po/stamp-po b/po/stamp-po
deleted file mode 100644
index 9788f702..00000000
--- a/po/stamp-po
+++ /dev/null
@@ -1 +0,0 @@
1timestamp