]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/hu/macros.itexi
Spelling fixes in comments and documentation
[lilypond.git] / Documentation / hu / macros.itexi
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: hu -*-
2 @ignore
3     Translation of GIT committish: 4e069c190dfd3b208a35ae8e053c5678acde69fe
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10
11 @include version.itexi
12 @include common-macros.itexi
13
14 @ignore
15 ****************************
16 MACRO DEFINITIONS GUIDELINES
17 ****************************
18
19 This file should contain macro definitions which are common to all
20 languages, i.e. all macro definitions which do not contain text that
21 should be translated (namely text visible in the output).
22
23 Macro definitions which contain text that should be translated in
24 translations should be in macros.itexi.
25 @end ignore
26
27 @c   ***** Displaying text *****
28
29 @c To get decent quotes in `foo' and ``foo''.
30 @c In Hungarian that is `foo' and ,,foo''.
31
32 @macro q{TEXT}
33 @quoteleft{}\TEXT\@quoteright{}
34 @end macro
35
36 @macro qq{TEXT}
37 @quotedblbase{}\TEXT\@quotedblright{}
38 @end macro
39
40
41 @ifhtml
42
43 @macro warning{TEXT}
44 @html
45 <div class="warning">
46 @end html
47 @strong{Figyelem:} \TEXT\
48 @c keep the space for proper nesting of </p>
49
50 @html
51 </div>
52 @end html
53 @end macro
54
55 @end ifhtml
56
57 @ifnothtml
58
59 @macro warning{TEXT}
60 @quotation
61 @quotation
62 @cartouche
63 @b{Figyelem:} \TEXT\
64 @end cartouche
65 @end quotation
66 @end quotation
67 @end macro
68
69 @end ifnothtml
70
71
72 @macro docMain
73 @cartouche
74 A teljes dokumentáció a @w{@uref{http://@/www@/.lilypond@/.org/}} honlapon
75 található.
76 @end cartouche
77 @end macro
78
79
80 @macro lilyTitlePage{TITLE}
81 @c  This produces the unified index
82 @syncodeindex fn cp
83 @syncodeindex vr cp
84
85
86 @c   ***** Copyright stuff *****
87 @ifset FDL
88 @copying
89 @copyrightDeclare
90
91 @quotation
92 Ezt a dokumentumot a GNU Free Documentation License (GNU Szabad
93 Dokumentációs Licenc) 1.1-es vagy frissebb, a Free Software Foundation
94 (Szabad Szoftver Alapítvány) által kiadott verziójának megfelelően
95 lehet másolni, terjeszteni és/vagy módosítani, nem változtatható szakaszok nélkül.
96 A licenc másolata a ,,GNU Free Documentation License'' című függelékben
97 található.
98 @end quotation
99 @end copying
100 @end ifset
101
102 @ifclear FDL
103 @copying
104 Ez a dokumentum közkincs.
105 @end copying
106 @end ifclear
107
108
109
110 @c   ***** Title page *****
111 @ifnottex
112 @node Top
113 @top LilyPond --- \TITLE\
114
115 @cartouche
116 @manualIntro{}
117 @end cartouche
118 @end ifnottex
119
120 @finalout
121
122 @titlepage
123 @title LilyPond
124 @subtitle A kottaszedő program
125 @titlefont{\TITLE\}
126 @author A LilyPond fejlesztőcsapata
127
128 @vskip 60pt
129
130 @cartouche
131 @manualIntro{}
132 @end cartouche
133
134 @vskip 40pt
135
136 @docMain{}
137
138 @vskip 0pt plus 1filll
139
140 @insertcopying
141
142 A LilyPond @version{} verziójához
143 @end titlepage
144
145 @end macro
146
147
148 @c   ***** Headings in a doc subsection *****
149
150 @c The next macro is a dummy currently since texinfo doesn't
151 @c provide a real ragged-right environment yet.
152 @c
153 @c Don't insert an empty line after @predefined!  Right now
154 @c it doesn't matter, but a future implementation will probably
155 @c add some code which needs this restriction.
156
157 @macro predefined
158 @noindent
159 @subsubheading Előre definiált parancsok
160 @end macro
161
162 @c Due to a bug in texi2html (texi2html.pl CVS versions <= 1.245)
163 @c the next macro must not be empty.
164
165 @macro endpredefined
166 @c
167 @end macro
168
169
170 @macro snippets
171 @noindent
172 @subsubheading Válogatott kódrészletek
173 @end macro
174
175
176 @c Don't insert an empty line after @seealso!  Otherwise we get
177 @c unwanted extra vertical space in the PDF output.
178
179 @macro seealso
180 @noindent
181 @subsubheading Lásd még
182 @indent
183 @end macro
184
185
186 @macro knownissues
187 @noindent
188 @subsubheading Ismert problémák és figyelmeztetések
189 @end macro
190
191
192
193 @c   ***** Links and references *****
194
195 @c  Definitions for references:
196 @c
197 @c     @rweb
198 @c     @ressay
199 @c     @rglos
200 @c     @rinternals
201 @c     @rlearning
202 @c     @rlsr
203 @c     @rprogram
204 @c     @ruser
205 @c     @rchanges
206 @c     @rextend
207 @c     @rcontrib
208 @c
209 @c  All these also have a @...named version which allows to specify the
210 @c  displayed text for the reference as second argument.
211 @c
212 @c ***** HTML + bigpage is a special case (other manual names); all other
213 @c formats are treated similarly.
214
215
216 @c *** not TeX ***
217
218 @ifnottex
219
220 @c ** bigpage **
221
222 @ifset bigpage
223
224 @macro rglos{TEXT}
225 @vindex \TEXT\
226 @ref{\TEXT\,,,music-glossary-big-page,Zenei fogalomtár}
227 @end macro
228
229 @macro rglosnamed{TEXT,DISPLAY}
230 @vindex \TEXT\
231 @ref{\TEXT\,,\DISPLAY\,music-glossary-big-page,Zenei fogalomtár}
232 @end macro
233
234 @macro rlearning{TEXT}
235 @vindex \TEXT\
236 @ref{\TEXT\,,,learning-big-page,Tankönyv}
237 @end macro
238
239 @macro rlearningnamed{TEXT,DISPLAY}
240 @vindex \TEXT\
241 @ref{\TEXT\,,\DISPLAY\,learning-big-page,Tankönyv}
242 @end macro
243
244 @macro ruser{TEXT}
245 @vindex \TEXT\
246 @ref{\TEXT\,,,notation-big-page,A kottaírás kézikönyve}
247 @end macro
248
249 @macro rusernamed{TEXT,DISPLAY}
250 @vindex \TEXT\
251 @ref{\TEXT\,,\DISPLAY\,notation-big-page,A kottaírás kézikönyve}
252 @end macro
253
254 @macro rextend{TEXT}
255 @vindex \TEXT\
256 @ref{\TEXT\,,,extending-big-page,Bővítmények írása}
257 @end macro
258
259 @macro rextendnamed{TEXT,DISPLAY}
260 @vindex \TEXT\
261 @ref{\TEXT\,,\DISPLAY\,extending-big-page,Bővítmények írása}
262 @end macro
263
264 @macro rchanges{TEXT}
265 @vindex \TEXT\
266 @ref{\TEXT\,,,changes-big-page,Változások}
267 @end macro
268
269 @macro rchangesnamed{TEXT,DISPLAY}
270 @vindex \TEXT\
271 @ref{\TEXT\,,\DISPLAY\,changes-big-page,Változások}
272 @end macro
273
274 @macro rcontrib{TEXT}
275 @vindex \TEXT\
276 @ref{\TEXT\,,,contributor-big-page,Útmutató közreműködőknek}
277 @end macro
278
279 @macro rcontribnamed{TEXT,DISPLAY}
280 @vindex \TEXT\
281 @ref{\TEXT\,,\DISPLAY\,contributor-big-page,Útmutató közreműködőknek}
282 @end macro
283
284 @macro rweb{TEXT}
285 @vindex \TEXT\
286 @ref{\TEXT\,,,general-big-page,Általános információk}
287 @end macro
288
289 @macro rwebnamed{TEXT,DISPLAY}
290 @vindex \TEXT\
291 @ref{\TEXT\,,\DISPLAY\,general-big-page,Általános információk}
292 @end macro
293
294 @macro ressay{TEXT}
295 @vindex \TEXT\
296 @ref{\TEXT\,,,essay-big-page,Esszé}
297 @end macro
298
299 @macro ressaynamed{TEXT,DISPLAY}
300 @vindex \TEXT\
301 @ref{\TEXT\,,\DISPLAY\,essay-big-page,Esszé}
302 @end macro
303
304 @macro rprogram{TEXT}
305 @vindex \TEXT\
306 @ref{\TEXT\,,,usage-big-page,Az alkalmazás használata}
307 @end macro
308
309 @macro rprogramnamed{TEXT,DISPLAY}
310 @vindex \TEXT\
311 @ref{\TEXT\,,\DISPLAY\,usage-big-page,Az alkalmazás használata}
312 @end macro
313
314 @macro rlsr{TEXT}
315 @ref{\TEXT\,,,snippets-big-page,Kódrészletek}
316 @end macro
317
318 @macro rlsrnamed{TEXT,DISPLAY}
319 @ref{\TEXT\,,\DISPLAY\,snippets-big-page,Kódrészletek}
320 @end macro
321
322 @macro rinternals{TEXT}
323 @vindex \TEXT\
324 @ref{\TEXT\,,,internals-big-page,A belső működés referenciája}
325 @end macro
326
327 @macro rinternalsnamed{TEXT,DISPLAY}
328 @vindex \TEXT\
329 @ref{\TEXT\,,\DISPLAY\,internals-big-page,A belső működés referenciája}
330 @end macro
331
332 @end ifset
333
334
335 @c ** not bigpage **
336
337 @ifclear bigpage
338
339 @ifnotinfo
340
341 @macro rglos{TEXT}
342 @vindex \TEXT\
343 @ref{\TEXT\,,,music-glossary,Zenei fogalomtár}
344 @end macro
345
346 @macro rglosnamed{TEXT,DISPLAY}
347 @vindex \TEXT\
348 @ref{\TEXT\,,\DISPLAY\,music-glossary,Zenei fogalomtár}
349 @end macro
350
351 @macro rlearning{TEXT}
352 @vindex \TEXT\
353 @ref{\TEXT\,,,learning,Tankönyv}
354 @end macro
355
356 @macro rlearningnamed{TEXT,DISPLAY}
357 @vindex \TEXT\
358 @ref{\TEXT\,,,learning,Tankönyv}
359 @end macro
360
361 @macro ruser{TEXT}
362 @vindex \TEXT\
363 @ref{\TEXT\,,,notation,A kottaírás kézikönyve}
364 @end macro
365
366 @macro rusernamed{TEXT,DISPLAY}
367 @vindex \TEXT\
368 @ref{\TEXT\,,\DISPLAY\,notation,A kottaírás kézikönyve}
369 @end macro
370
371 @macro rchanges{TEXT}
372 @vindex \TEXT\
373 @ref{\TEXT\,,,changes,Változások}
374 @end macro
375
376 @macro rchangesnamed{TEXT,DISPLAY}
377 @vindex \TEXT\
378 @ref{\TEXT\,,\DISPLAY\,changes,Változások}
379 @end macro
380
381 @macro rextend{TEXT}
382 @vindex \TEXT\
383 @ref{\TEXT\,,,extending,Bővítmények írása}
384 @end macro
385
386 @macro rextendnamed{TEXT,DISPLAY}
387 @vindex \TEXT\
388 @ref{\TEXT\,,\DISPLAY\,extending,Bővítmények írása}
389 @end macro
390
391 @macro rcontrib{TEXT}
392 @vindex \TEXT\
393 @ref{\TEXT\,,,contributor,Útmutató közreműködőknek}
394 @end macro
395
396 @macro rcontribnamed{TEXT,DISPLAY}
397 @vindex \TEXT\
398 @ref{\TEXT\,,\DISPLAY\,contributor,Útmutató közreműködőknek}
399 @end macro
400
401 @macro rweb{TEXT}
402 @vindex \TEXT\
403 @ref{\TEXT\,,,general,Általános információk}
404 @end macro
405
406 @macro rwebnamed{TEXT,DISPLAY}
407 @vindex \TEXT\
408 @ref{\TEXT\,,\DISPLAY\,general,Általános információk}
409 @end macro
410
411 @macro ressay{TEXT}
412 @vindex \TEXT\
413 @ref{\TEXT\,,,essay,Esszé}
414 @end macro
415
416 @macro ressaynamed{TEXT,DISPLAY}
417 @vindex \TEXT\
418 @ref{\TEXT\,,\DISPLAY\,essay,Esszé}
419 @end macro
420
421 @macro rprogram{TEXT}
422 @vindex \TEXT\
423 @ref{\TEXT\,,,usage,Az alkalmazás használata}
424 @end macro
425
426 @macro rprogramnamed{TEXT,DISPLAY}
427 @vindex \TEXT\
428 @ref{\TEXT\,,\DISPLAY\,usage,Az alkalmazás használata}
429 @end macro
430
431 @macro rlsr{TEXT}
432 @ref{\TEXT\,,,snippets,Kódrészletek}
433 @end macro
434
435 @macro rlsrnamed{TEXT,DISPLAY}
436 @ref{\TEXT\,,\DISPLAY\,snippets,Kódrészletek}
437 @end macro
438
439 @macro rinternals{TEXT}
440 @vindex \TEXT\
441 @ref{\TEXT\,,,internals,A belső működés referenciája}
442 @end macro
443
444 @macro rinternalsnamed{TEXT,DISPLAY}
445 @vindex \TEXT\
446 @ref{\TEXT\,,\DISPLAY\,internals,A belső működés referenciája}
447 @end macro
448
449 @end ifnotinfo
450
451 @ifinfo
452
453 @macro rglos{TEXT}
454 @vindex \TEXT\
455 @ref{\TEXT\,,,music-glossary,Zenei fogalomtár}
456 @end macro
457
458 @macro rglosnamed{TEXT,DISPLAY}
459 @vindex \TEXT\
460 @ref{\TEXT\,,\DISPLAY\,music-glossary,Zenei fogalomtár}
461 @end macro
462
463 @macro rlearning{TEXT}
464 @vindex \TEXT\
465 @ref{\TEXT\,,,lilypond-learning,Tankönyv}
466 @end macro
467
468 @macro rlearningnamed{TEXT,DISPLAY}
469 @vindex \TEXT\
470 @ref{\TEXT\,,,lilypond-learning,Tankönyv}
471 @end macro
472
473 @macro ruser{TEXT}
474 @vindex \TEXT\
475 @ref{\TEXT\,,,lilypond-notation,A kottaírás kézikönyve}
476 @end macro
477
478 @macro rusernamed{TEXT,DISPLAY}
479 @vindex \TEXT\
480 @ref{\TEXT\,,\DISPLAY\,lilypond-notation,A kottaírás kézikönyve}
481 @end macro
482
483 @macro rchanges{TEXT}
484 @vindex \TEXT\
485 @ref{\TEXT\,,,lilypond-changes,Változások}
486 @end macro
487
488 @macro rchangesnamed{TEXT,DISPLAY}
489 @vindex \TEXT\
490 @ref{\TEXT\,,\DISPLAY\,lilypond-changes,Változások}
491 @end macro
492
493 @macro rextend{TEXT}
494 @vindex \TEXT\
495 @ref{\TEXT\,,,lilypond-extending,Bővítmények írása}
496 @end macro
497
498 @macro rextendnamed{TEXT,DISPLAY}
499 @vindex \TEXT\
500 @ref{\TEXT\,,\DISPLAY\,lilypond-extending,Bővítmények írása}
501 @end macro
502
503 @macro rcontrib{TEXT}
504 @vindex \TEXT\
505 @ref{\TEXT\,,,lilypond-contributor,Útmutató közreműködőknek}
506 @end macro
507
508 @macro rcontribnamed{TEXT,DISPLAY}
509 @vindex \TEXT\
510 @ref{\TEXT\,,\DISPLAY\,lilypond-contributor,Útmutató közreműködőknek}
511 @end macro
512
513 @macro rweb{TEXT}
514 @vindex \TEXT\
515 @ref{\TEXT\,,,lilypond-general,Általános információk}
516 @end macro
517
518 @macro rwebnamed{TEXT,DISPLAY}
519 @vindex \TEXT\
520 @ref{\TEXT\,,\DISPLAY\,lilypond-general,Általános információk}
521 @end macro
522
523 @macro ressay{TEXT}
524 @vindex \TEXT\
525 @ref{\TEXT\,,,lilypond-essay,Esszé}
526 @end macro
527
528 @macro ressaynamed{TEXT,DISPLAY}
529 @vindex \TEXT\
530 @ref{\TEXT\,,\DISPLAY\,lilypond-essay,Esszé}
531 @end macro
532
533 @macro rprogram{TEXT}
534 @vindex \TEXT\
535 @ref{\TEXT\,,,lilypond-usage,Az alkalmazás használata}
536 @end macro
537
538 @macro rprogramnamed{TEXT,DISPLAY}
539 @vindex \TEXT\
540 @ref{\TEXT\,,\DISPLAY\,lilypond-usage,Az alkalmazás használata}
541 @end macro
542
543 @macro rlsr{TEXT}
544 @ref{\TEXT\,,,lilypond-snippets,Kódrészletek}
545 @end macro
546
547 @macro rlsrnamed{TEXT,DISPLAY}
548 @ref{\TEXT\,,\DISPLAY\,lilypond-snippets,Kódrészletek}
549 @end macro
550
551 @macro rinternals{TEXT}
552 @vindex \TEXT\
553 @ref{\TEXT\,,,lilypond-internals,A belső működés referenciája}
554 @end macro
555
556 @macro rinternalsnamed{TEXT,DISPLAY}
557 @vindex \TEXT\
558 @ref{\TEXT\,,\DISPLAY\,lilypond-internals,A belső működés referenciája}
559 @end macro
560
561 @end ifinfo
562
563 @end ifclear
564
565 @end ifnottex
566
567
568 @c *** TeX ***
569
570 @iftex
571
572 @c All commands below should work in the middle of the line;
573 @c we thus must not use @vindex directly since it works only if placed
574 @c on a line of its own.  To overcome this problem, we define a
575 @c replacement macro using the internal definition of @vindex which
576 @c delimits arguments in the standard way (i.e., with braces).
577
578 @tex
579 \gdef\lilyvindex#1{\doind{vr}{\code{#1}}\ignorespaces}
580 @end tex
581
582 @macro rglos{TEXT}
583 @lilyvindex{\TEXT\}
584 @ref{\TEXT\,,,music-glossary,Zenei fogalomtár}
585 @end macro
586
587 @macro rglosnamed{TEXT,DISPLAY}
588 @lilyvindex{\TEXT\}
589 @ref{\TEXT\,,\DISPLAY\,music-glossary,Zenei fogalomtár}
590 @end macro
591
592 @macro rlearning{TEXT}
593 @lilyvindex{\TEXT\}
594 @ref{\TEXT\,,,learning,Tankönyv}
595 @end macro
596
597 @macro rlearningnamed{TEXT,DISPLAY}
598 @lilyvindex{\TEXT\}
599 @ref{\TEXT\,,\DISPLAY\,learning,Tankönyv}
600 @end macro
601
602 @macro ruser{TEXT}
603 @lilyvindex{\TEXT\}
604 @ref{\TEXT\,,,notation,A kottaírás kézikönyve}
605 @end macro
606
607 @macro rusernamed{TEXT,DISPLAY}
608 @lilyvindex{\TEXT\}
609 @ref{\TEXT\,,\DISPLAY\,notation,A kottaírás kézikönyve}
610 @end macro
611
612 @macro rchanges{TEXT}
613 @lilyvindex{\TEXT\}
614 @ref{\TEXT\,,,changes,Változások}
615 @end macro
616
617 @macro rchangesnamed{TEXT,DISPLAY}
618 @lilyvindex{\TEXT\}
619 @ref{\TEXT\,,\DISPLAY\,changes,Változások}
620 @end macro
621
622 @macro rextend{TEXT}
623 @lilyvindex{\TEXT\}
624 @ref{\TEXT\,,,extending,Bővítmények írása}
625 @end macro
626
627 @macro rextendnamed{TEXT,DISPLAY}
628 @lilyvindex{\TEXT\}
629 @ref{\TEXT\,,\DISPLAY\,extending,Bővítmények írása}
630 @end macro
631
632 @macro rcontrib{TEXT}
633 @lilyvindex{\TEXT\}
634 @ref{\TEXT\,,,contributor,Útmutató közreműködőknek}
635 @end macro
636
637 @macro rcontribnamed{TEXT,DISPLAY}
638 @lilyvindex{\TEXT\}
639 @ref{\TEXT\,,\DISPLAY\,contributor,Útmutató közreműködőknek}
640 @end macro
641
642 @macro rweb{TEXT}
643 @lilyvindex{\TEXT\}
644 @ref{\TEXT\,,,general,Általános információk}
645 @end macro
646
647 @macro rwebnamed{TEXT,DISPLAY}
648 @lilyvindex{\TEXT\}
649 @ref{\TEXT\,,\DISPLAY\,general,Általános információk}
650 @end macro
651
652 @macro ressay{TEXT}
653 @lilyvindex{\TEXT\}
654 @ref{\TEXT\,,,essay,Esszé}
655 @end macro
656
657 @macro ressaynamed{TEXT,DISPLAY}
658 @lilyvindex{\TEXT\}
659 @ref{\TEXT\,,\DISPLAY\,essay,Esszé}
660 @end macro
661
662 @macro rprogram{TEXT}
663 @lilyvindex{\TEXT\}
664 @ref{\TEXT\,,,usage,Az alkalmazás használata}
665 @end macro
666
667 @macro rprogramnamed{TEXT,DISPLAY}
668 @lilyvindex{\TEXT\}
669 @ref{\TEXT\,,\DISPLAY\,usage,Az alkalmazás használata}
670 @end macro
671
672 @macro rlsr{TEXT}
673 @lilyvindex{\TEXT\}
674 @ref{\TEXT\,,,snippets,Kódrészletek}
675 @end macro
676
677 @macro rlsrnamed{TEXT,DISPLAY}
678 @lilyvindex{\TEXT\}
679 @ref{\TEXT\,,\DISPLAY\,snippets,Kódrészletek}
680 @end macro
681
682 @macro rinternals{TEXT}
683 @lilyvindex{\TEXT\}
684 @ref{\TEXT\,,,internals,A belső működés referenciája}
685 @end macro
686
687 @macro rinternalsnamed{TEXT,DISPLAY}
688 @lilyvindex{\TEXT\}
689 @ref{\TEXT\,,\DISPLAY\,internals,A belső működés referenciája}
690 @end macro
691
692 @end iftex
693
694 @c  ***** Macros specific to the web site *****
695
696 @ifset web
697
698 @macro exampleImage{IMAGE-FILE}
699 @html
700 <div class="float-center">
701   <a class="clickable" href="ly-examples/\IMAGE-FILE\.png">
702     <img src="ly-examples/\IMAGE-FILE\-small.png" alt="\IMAGE-FILE\">
703   </a>
704   <p style="text-align: center">
705     (Kattints a képre a nagyításhoz)
706   </p>
707 </div>
708 @end html
709 @iftex
710 @image{ly-examples/\IMAGE-FILE\,6in,,\IMAGE-FILE\,png}
711 @end iftex
712 @ifinfo
713 @image{lilypond/examples/\IMAGE-FILE\,,,\IMAGE-FILE\,png}
714 @end ifinfo
715 @end macro
716
717 @c LEGALESE
718
719 @macro logoLegalLinux
720 Tux, a Linux pingvin @uref{mailto:lewing@@isc.tamu.edu, lewing@@isc.tamu.edu}
721 műve, és a @uref{http://www.isc.tamu.edu/~lewing/gimp/, GNU Image
722 Manipulation Program} segítségével készült.
723
724 @end macro
725
726 @macro logoLegalFreeBSD
727 A FreeBSD logó a @uref{http://www.freebsd.org/, FreeBSD Alapítvány}
728 bejegyzett védjegye.
729
730 @end macro
731
732 @macro logoLegalMacOSX
733 Az @qq{X-et ábrázoló kép} nem bejegyzett védjegy.
734 @uref{http://en.wikipedia.org/wiki/User:Nihonjoe, Nihonjoe} és
735 @uref{http://en.wikipedia.org/wiki/User:CyberSkull, CyberSkull} műve,
736 a GNU Free Documentation License (GNU Szabad Dokumentációs Licenc) 1.2-es
737 verziója vonatkozik rá.
738 A kép forrása
739 @uref{http://commons.wikimedia.org/wiki/File:Mac_OS_X_Userbox_X.png,
740 ez a Wikipedia Commons oldal}.
741
742 @end macro
743
744 @macro logoLegalWindows
745 A @qq{négyszínű ablakot ábrázoló kép} nem bejegyzett védjegy.
746 @uref{http://en.wikipedia.org/wiki/User:Rohitbd, Rohitbd} műve és
747 a GNU Free Documentation License (GNU Szabad Dokumentációs Licenc) 1.2-es
748 verziója vonatkozik rá.
749 A kép forrása
750 @uref{http://commons.wikimedia.org/wiki/Category:Microsoft_Windows_logos,
751 ez a Wikipedia Commons oldal}.
752
753 @end macro
754
755 @end ifset