# Hungarian translation of Drupal
# Copyright Drupal.hu Fordítói Csapat <forditas [at] drupal.hu>
# Generated from files:
#  bbcode-filter.inc,v 1.6 2004/08/31 20:49:14 LacKac
#  bbcode-help.inc,v 1.3 2004/09/12 15:48:55 goba
#
msgid ""
msgstr ""
"Project-Id-Version: Drupal 4.5.0\n"
"POT-Creation-Date: 2005-01-08 19:20+0000\n"
"PO-Revision-Date: 2005-01-08 20:32+0100\n"
"Last-Translator: Drupal.hu Fordítói Csapat <forditas [at] drupal.hu>\n"
"Language-Team: Drupal.hu Fordítói Csapat <forditas [at] drupal.hu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"

#: bbcode-filter.inc:6
msgid "Quote"
msgstr "Idézet"

#: bbcode-filter.inc:7
msgid "Quote \\1"
msgstr "Idézet (\\1)"

#: bbcode-help.inc:5
msgid ""
"<h1>BBCode Guide</h1>\n"
"\n"
"<h2>Introduction</h2>\n"
"\n"
"<p>\n"
" BBCode allows you to specify formatting rules for your text,\n"
" even if you are not allowed to use HTML in your posts. BBCode\n"
" originated from the forum software named PHPBB, and Drupal has a\n"
" special implementation of it.\n"
"</p>\n"
"<p>\n"
" In BBCode terms, you use \"tags\" to add formatting to your text. Every\n"
" tag is enclosed in [ and ]. If you want to mark some region in\n"
" your text, you need to use an opening tag and a closing tag. Closing\n"
" tags start with [/, as you will see in the examples below. If you\n"
" mistype a tag or forget to close it, you will not get the desired\n"
" formatting.\n"
"</p>\n"
"\n"
"<h2>Simple text formatting</h2>\n"
"\n"
"<p>\n"
" BBCode allows you to make some parts of your texts stand out from the\n"
" context by adding <strong>[b]</strong>old, <strong>[i]</strong>talic\n"
" and <strong>[u]</strong>nderlined formatting to them. The\n"
" <strong>[color]</strong> and <strong>[size]</strong> tags allow you to\n"
" change the color and size of portions of the text you enclose with\n"
" these tags. Both require a parameter (which colour or how big) that is\n"
" suffixed to the name of the tag by an equals sign (example below).\n"
" You should not repeat the parameter in the closing tag!\n"
"</p>\n"
"\n"
"<p>\n"
" You can specify any recognized color name (red, blue, green, white, etc.)\n"
" or a hexadecimal color value (#CDCDCD, #FFFFFF, etc.) as the parameter of\n"
" a <strong>[color]</strong> tag. The <strong>[size]</strong> tag allows you\n"
" to set the font size between 10 and 30, 10 being the smallest size.\n"
" Note that using very large text is considered by many to be annoying, and\n"
" it is seldom a good idea to try to drive more attention to your post in\n"
" this way.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>usage</th><th>display</th>\n"
" </tr>\n"
" <tr>\n"
"  <td>I [b]need to do[/b] this by the weekend</td>\n"
"  <td>I <strong>need to do</strong> this by the weekend</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>John said, that [i]we should[/i] ask her</td>\n"
"  <td>John said, that <em>we should</em> ask her</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>I [u]would not like to[/u] offend you</td>\n"
"  <td>I <span style=\"text-decoration: underline;\">would not like to</span> "
"offend you</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Jane was at [color=blue]the coast[/color]</td>\n"
"  <td>Jane was at <span style=\"color: blue;\">the coast</span></td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Joe was in [color=#00FF00]the forest[/color]</td>\n"
"  <td>Joe was in <span style=\"color: #00FF00;\">the forest</span></td>\n"
" </tr>\n"
" <tr>\n"
"  <td>You said: [size=20]HEY![/size]</td>\n"
"  <td>You said: <span style=\"font-size: 20px;\">HEY!</span></td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Creating Links</h2>\n"
"\n"
"<p>\n"
" You have multiple options to specify links to other destinations in\n"
" your posts.\n"
"</p>\n"
"\n"
"<p>\n"
" Drupal recognizes URLs (Uniform Resource Locators) used in your posts, and\n"
" automatically replaces them with links. For URLs starting with \"www\" or\n"
" \"ftp\" (eg. www.example.com) there is no need for a protocol "
"specification,\n"
" but you need to specify a protocol for other types of addresses\n"
" (eg. example.com).\n"
"</p>\n"
"<p>\n"
" Drupal also recognizes email addresses in posts automatically, but for "
"compatibility\n"
" with the common BBCode implementations, also provides the <strong>[email]</"
"strong> tag\n"
" to mark email addresses. There is no spam protection applied to the email "
"addresses!\n"
"</p>\n"
"<p>\n"
" You can use the <strong>[url]</strong> tag with a parameter to specify a "
"link with\n"
" meaningful text to click on. If you use the url tag without the parameter,\n"
" then the enclosed text is assumed to be an URL, and a link is created to "
"that\n"
" destination.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>usage</th><th>display</th>\n"
" </tr>\n"
" <tr>\n"
"  <td>For more examples, visit www.example.com</td>\n"
"  <td>For more examples, visit <a href=\"http://www.example.com\" target="
"\"_blank\">www.example.com</a></td>\n"
" </tr>\n"
" <tr>\n"
"  <td>For more examples, visit http://example.com</td>\n"
"  <td>For more examples, visit <a href=\"http://example.com\" target=\"_blank"
"\">http://example.com</a></td>\n"
" </tr>\n"
" <tr>\n"
"  <td>If you have questions ask me at joe@example.com</td>\n"
"  <td>If you have questions ask me at <a href=\"mailto:joe@example.com"
"\">joe@example.com</a></td>\n"
" </tr>\n"
" <tr>\n"
"  <td>If you have questions ask me at [email]joe@example.com[/email]</td>\n"
"  <td>If you have questions ask me at <a href=\"mailto:joe@example.com"
"\">joe@example.com</a></td>\n"
" </tr>\n"
" <tr>\n"
"  <td>We use [url=http://example.com/]the example site[/url] in these "
"examples</td>\n"
"  <td>We use <a href=\"http://example.com/\" target=\"_blank\">the example "
"site</a> in these examples</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>We use [url]http://example.com/[/url] in these examples</td>\n"
"  <td>We use <a href=\"http://example.com/\" target=\"_blank\">http://"
"example.com/</a> in these examples</td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Displaying images</h2>\n"
"\n"
"<p>\n"
" The <strong>[img]</strong> tag allows you to display an image in your\n"
" post. You need to specify a URL to the image, so it needs to be\n"
" accessible somewhere on the internet. Beware of adding very large\n"
" images to your text, or otherwise the page will load very slowly!\n"
"</p>\n"
"\n"
"<p>\n"
" If you enclose a URL in an <strong>[img]</strong> tag, then it will\n"
" be replaced with code to display the image. For example <code>A good\n"
" screenshot: [img]http://example.com/screenshot.png[/img]</code>\n"
" will show you the screenshot (if it exists). \n"
"</p>\n"
"<p>\n"
" You can also specify the desired display dimensions of the image by\n"
" adding a dimension parameter to the <strong>[img]</strong> tag. <code>A\n"
" good screenshot: [img=640x480]http://example.com/screenshot.png[/img]</"
"code>\n"
" will display the image in 640x480 (though the full image will be\n"
" downloaded). Do not use this to show a thumbnail of an image!\n"
"</p>\n"
"\n"
"<p>\n"
" You are free to link an image to an external destination by enclosing\n"
" the <strong>[img]</strong> tag with an <strong>[url]</strong> tag: "
"<code>See\n"
" [url=http://example.com][img]http://example.com/screenshot.png[/img][/url]</"
"code>.\n"
"</p>\n"
"\n"
"<h2>Ordered and unordered lists</h2>\n"
"\n"
"<p>\n"
" The simplest list type is the unordered list, which means that there is\n"
" no numbering applied to the elements. You can make such a list by "
"enclosing\n"
" the list elements in <strong>[list]</strong> opening and closing tags.\n"
" Specify the start of one element with the <strong>[*]</strong> list "
"element\n"
" marker, which has no closing tag pair.\n"
"</p>\n"
"\n"
"<p>\n"
" To create an ordered list, you should add a parameter to the [list]\n"
" list tag specifying what type of ordered list you would like to see.\n"
" The possible parameters are \"i\", \"I\", \"1\", \"a\", and \"A\" which "
"all\n"
" correspond to the display of the first list element.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>usage</th><th>display</th>\n"
" </tr>\n"
" <tr>\n"
"  <td><pre>\n"
"I love\n"
" [list]\n"
"  [*]Oranges\n"
"  [*]Apples\n"
"  [*]Bananas\n"
" [/list]\n"
"</pre></td>\n"
"  <td>\n"
"   I love \n"
"   <ul>\n"
"    <li>Oranges</li>\n"
"    <li>Apples</li>\n"
"    <li>Bananas</li>\n"
"   </ul>\n"
"  </td>\n"
" </tr>\n"
" <tr>\n"
"  <td><pre>\n"
"I love\n"
" [list=I]\n"
"  [*]Oranges\n"
"  [*]Apples\n"
"  [*]Bananas\n"
" [/list]\n"
"</pre></td>\n"
"  <td>\n"
"   I love \n"
"   <ol style=\"list-style-type: upper-roman;\">\n"
"    <li>Oranges</li>\n"
"    <li>Apples</li>\n"
"    <li>Bananas</li>\n"
"   </ol>\n"
"  </td>\n"
" </tr>\n"
" <tr>\n"
"  <td><pre>\n"
"I love\n"
" [list=1]\n"
"  [*]Oranges\n"
"  [*]Apples\n"
"  [*]Bananas\n"
" [/list]\n"
"</pre></td>\n"
"  <td>\n"
"   I love \n"
"   <ol style=\"list-style-type: decimal;\">\n"
"    <li>Oranges</li>\n"
"    <li>Apples</li>\n"
"    <li>Bananas</li>\n"
"   </ol>\n"
"  </td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Fixed-width text and block formatting</h2>\n"
"\n"
"<p>\n"
" You can use the <strong>[code]</strong> tag to add an inline fixed-width\n"
" formatted part or to add a block of (usually program) code. If there is\n"
" any newline present between the opening and closing tags, then a block\n"
" will be displayed.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>usage</th><th>display</th>\n"
" </tr>\n"
" <tr>\n"
"  <td>Edit your [code]robots.txt[/code] file</td>\n"
"  <td>Edit your <code>robots.txt</code> file</td>\n"
"  </td>\n"
" </tr>\n"
" <tr>\n"
"  <td>\n"
"An HTML title example:<br />\n"
"[code]<br />\n"
"&lt;head&gt;<br />\n"
"&nbsp;&lt;title&gt;Page Title&lt;/title&gt;<br />\n"
"&lt;/head&gt;<br />\n"
"[/code]\n"
"  </td>\n"
"  <td>\n"
"An HTML title example:<br />\n"
"<div class=\"codeblock\"><code>\n"
"&lt;head&gt;<br />\n"
"&nbsp;&lt;title&gt;Page Title&lt;/title&gt;<br />\n"
"&lt;/head&gt;<br />\n"
"</code>\n"
"  </td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Text and block alignment</h2>\n"
"\n"
"<p>\n"
" You can also set the alignment of the text by using <code>[left]</code>,\n"
" <code>[right]</code> and <code>[center]</code> tags. The <code>[float]</"
"code>\n"
" tag can be used to place floating boxes in the text (especially handy for\n"
" images). You can specify the direction of the floating with\n"
" <code>[float=left]</code> and <code>[float=right]</code>.\n"
"</p>\n"
"\n"
"<h2>Using multiple formatting tags</h2>\n"
"\n"
"<p>\n"
" You can apply more than one formatting specification to a portion of some\n"
" text. <code>I was at [b][i]the coast[/i][/b]</code> will be\n"
" rendered as <code>I was at <strong><em>the coast</em></strong></code> for\n"
" example.\n"
"</p>\n"
"\n"
"<p>\n"
" Make sure that you take care of the proper order of the opening and "
"closing\n"
" tags. You should close the tags in the opposite order in which you opened\n"
" them. Otherwise you might get very strange rendering results. Also check\n"
" your post with the preview function before submiting it to discover "
"possible\n"
" formatting errors due to improper BBCode usage.\n"
"</p>\n"
"\n"
"<p>\n"
" There are some exceptions where you cannot add more BBCode tags. Examples\n"
" of these include the contents of the <strong>[img]</strong> tag, which by\n"
" definition should contain an URL only. BBCode tags are also disallowed\n"
" inside <strong>[code]</strong> tags, and you cannot apply some formatting\n"
" to all list items by wrapping the list with that formatting tag.\n"
"</p>"
msgstr ""
"<h1>BBCode Útmutató</h1>\n"
"\n"
"<h2>Bevezetés</h2>\n"
"\n"
"<p>\n"
" A BBCode segítségével formázni tudod a szövegedet, abban az\n"
" esetben is, ha nincs engedélyezve számodra HTML formátum használata\n"
" a beküldéseknél. A BBCode a PHPBB fórumszoftverből származik, a\n"
" Drupal ennek egy egyedi megvalósítását használja.\n"
"</p>\n"
"<p>\n"
" BBCode terminust használva, \"elemek\" segítségével formázhatod a\n"
" szöveget. Minden elemet [ és ] közé kell tenni. Amennyiben a szöveg\n"
" egy részét szeretnéd megjelölni, akkor kezdő és záró elemeket kell\n"
" használni. A záró elem [/-el kezdődik, ahogy azt mindjárt látni is\n"
" fogjuk. Figyelj arra, hogy ha elírsz egy elemet vagy elfelejted lezárni,\n"
" akkor nem a várt megjelenést fogod kapni!\n"
"</p>\n"
"\n"
"<h2>Egyszerű szövegformázás</h2>\n"
"\n"
"<p>\n"
" A BBCode lehetővé teszi számodra, hogy kiemelj pár részt a szövegedből,\n"
" erre a célra a következő elemeket használhatod: <strong>[b]</strong> "
"(félkövér),\n"
" <strong>[i]</strong> (döntött) és <strong>[u]</strong> (aláhúzott). A\n"
" <strong>[color]</strong> (szín) és a <strong>[size]</strong> (méret) "
"elemek\n"
" segítségével a színét és a méretét szabályozhatod a szövegednek. Mindkét\n"
" esetben egy paraméter megadása is szükséges (milyen színű és milyen\n"
" méretű legyen), a szögleteszárójelen belül a color és a size szavak\n"
" után egy egyenlőségjelet követően tudod beírni ezeket (példát lásd\n"
" lenn). Ezt a paramétert a lezáró elembe nem szabad beleírni!\n"
"</p>\n"
"\n"
"<p>\n"
" Bármelyik, a HTML-ben is használható szín a rendelkezésedre áll (red, "
"blue,\n"
" green, white, stb.), vagy hexadecimális számokkal (#CDCDCD, #FFFFFF, stb.)\n"
" is megadhatod a [color] elem esetén a paramétert. A [size] elemmel 10\n"
" és 30 pixel között adhatod meg a méretet, a 10 a legkisebb. Megjegyzendő,\n"
" hogy nagy méretű szöveg használata sokak szerint tolakodó, így ritkán jó\n"
" ötlet ezt az utat választani a figyelemfelhívásra. \n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>használat</th><th>megjelenés</th>\n"
" </tr>\n"
" <tr>\n"
"  <td>Ezt [b]kell[/b] tennem a hétvégén.</td>\n"
"  <td>Ezt <strong>kell</strong> tennem a hétvégén.</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Jani szerint [i]meg kellene[/i] kérdeznünk a csajt.</td>\n"
"  <td>Jani szerint <em>meg kellene</em> kérdeznünk a csajt.</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>[u]Nem szeretnélek[/u] megbántani.</td>\n"
"  <td><span style=\"text-decoration: underline;\">Nem szeretnélek</span> "
"megbántani.</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Marit a [color=blue]parton[/color] láttam.</td>\n"
"  <td>Marit a <span style=\"color: blue;\">parton</span> láttam.</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Karcsi az [color=#00FF00]erdőben[/color] lakik.</td>\n"
"  <td>Karcsi az <span style=\"color: #00FF00;\">erdőben</span> lakik.</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Azt mondtad, hogy [size=20]HALIHÓ![/size]</td>\n"
"  <td>Azt mondtad, hogy <span style=\"font-size: 20px;\">HALIHÓ!</span></"
"td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Linkek létrehozása</h2>\n"
"\n"
"<p>\n"
" A szövegeidben több módon is létrehozhatsz linkeket más oldalakra.\n"
" Tekintsük át ezeket!\n"
"</p>\n"
"\n"
"<p>\n"
" A Drupal magától felismeri az URL-eket (Uniform Resource Locators - vagyis\n"
" az egységesített erőforrás leírókat) a szövegeidben, és automatikusan\n"
" linkekre cseréli őket. A \"www\"-vel és \"ftp\"-vel kezdődő címek esetén\n"
" (pl. www.pelda.hu) elhagyhatod a protokollt (pl. http://), bármely más\n"
" esetben viszont szükséges odaírni (pl. pelda.hu -> http://pelda.hu).\n"
"</p>\n"
"<p>\n"
" A Drupal az e-mail címeket is felismeri automatikusan, de az általános\n"
" BBCode megvalósításokkal való kompatibilitási okokból lehetőséget ad az\n"
" [email] elem segítségével történő megjelölésre is. Nincs spam védelem\n"
" az e-mail címekre!\n"
"</p>\n"
"<p>\n"
" Használhatod az <strong>[url]</strong> elemet is egy paraméterrel,\n"
" segítségével egy linket adhatsz meg szöveggel. Ha nem adsz meg\n"
" paramétert, az url elemek által bezárt szöveg lesz URL-ként értelmezve,\n"
" és egy arra a címre mutató link jön létre.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>használat</th><th>megjelenés</th>\n"
" </tr>\n"
" <tr>\n"
"  <td>További példákat a www.pelda.hu címen találsz!</td>\n"
"  <td>További példákat a <a href=\"http://www.pelda.hu\" target=\"_blank"
"\">www.pelda.hu</a> címen találsz!</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>További példákért látogass el a http://pelda.hu címre!</td>\n"
"  <td>További példákért látogass el a <a href=\"http://pelda.hu\" target="
"\"_blank\">http://pelda.hu</a> címre!</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Bármilyen kérdésed van, küldj egy levelet a jani@pelda.hu címre!</td>\n"
"  <td>Bármilyen kérdésed van, küldj egy levelet a <a href=\"mailto:"
"jani@pelda.hu\">jani@pelda.hu</a> címre!</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Ha kérdéseid vannak, kérdezz a [email]jani@pelda.hu[/email] címen!</"
"td>\n"
"  <td>Ha kérdéseid vannak, kérdezz a <a href=\"mailto:jani@pelda.hu"
"\">jani@pelda.hu</a> címen!</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Mi a [url=http://pelda.hu/]példa oldalt[/url] használjuk ezekben a "
"példákban.</td>\n"
"  <td>Mi a <a href=\"http://pelda.hu/\" target=\"_blank\">példa oldalt</a> "
"használjuk ezekben a példákban.</td>\n"
" </tr>\n"
" <tr>\n"
"  <td>Mi a [url]http://pelda.hu/[/url]-t használjuk ezekben a példákban.</"
"td>\n"
"  <td>Mi a <a href=\"http://pelda.hu/\" target=\"_blank\">http://pelda.hu/</"
"a>-t használjuk ezekben a példákban.</td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Képek megjelenítése</h2>\n"
"\n"
"<p>\n"
" Az <strong>[img]</strong> elem teszi lehetővé számodra képek használatát.\n"
" Meg kell adnod a kép elérhetőségét, azaz valahol már fenn\n"
" kell lennie az interneten. Vigyázz arra, hogy ne hivatkozz a szövegeidben\n"
" nagyon nagy képekre, különben nagyon lassan fog megjelenni az oldal!\n"
"</p>\n"
"\n"
"<p>\n"
" Ha egy URL-t az <strong>[img]</strong> elemek közé helyezel, akkor\n"
" egy a képet megjelenítő kódra fog lecserélődni. Például az <code>Egy jó\n"
" képernyőkép: [img]http://pelda.hu/kepernyokep.png[/img]</code> meg fogja\n"
" neked jeleníteni a képernyőképet (már ha létezik).\n"
"</p>\n"
"<p>\n"
" Megadhatsz egy kívánt méretet is a képhez, hozzáírva a dimenzióit\n"
" paraméterként az <strong>[img]</strong> elemhez. Az <code>Egy jó\n"
" képernyőkép: [img=640x480]http://pelda.hu/kepernyokep.png[/img]</code>\n"
" 640x480 méretben jeleníti meg a képet (de az egész kép letöltődik!).\n"
" Ne használd ezt a módszert előnézeti képek készítésére!\n"
"</p>\n"
"\n"
"<p>\n"
" Szabadon linkelheted a képedet egy külső címre, az <strong>[img]</strong>\n"
" elem köré kell csak elhelyezned egy <strong>[url]</strong> elemet:\n"
" <code>Lásd: [url=http://pelda.hu][img]http://pelda.hu/kepernyokep.png[/img]"
"[/url]</code>.\n"
"</p>\n"
"\n"
"<h2>Számozott lista és felsorolások</h2>\n"
"\n"
"<p>\n"
" A legegyszerűbb listatípus a felsorolás, vagyis ahol nincsenek megszámozva\n"
" az elemei a listának. Egy ilyen listát a listaelemeket a <strong>[list]</"
"strong>\n"
" nyitó és záró elemek közé írva készíthetsz. Egy elem kezdetét a <strong>[*]"
"</strong>\n"
" jellel kell jelölnöd, melynek nincsen záró párja.\n"
"</p>\n"
"\n"
"<p>\n"
" Egy sorszámozott lista létrehozására a [list] elemhez egy paramétert\n"
" kell rendelned, mely megmondja, hogy milyen jelekkel szeretnéd\n"
" jelölni a listaelemeket. A lehetséges értékek \"i\", \"I\", \"1\", \"a\" és "
"\"A\",\n"
" melyek mind az első elem megjelenítését határozzák meg.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>használat</th><th>megjelenés</th>\n"
" </tr>\n"
" <tr>\n"
"  <td><pre>\n"
"Szeretem a\n"
" [list]\n"
"  [*]narancsot\n"
"  [*]almát\n"
"  [*]banánt\n"
" [/list]\n"
"</pre></td>\n"
"  <td>\n"
"   Szeretem a\n"
"   <ul>\n"
"    <li>narancsot</li>\n"
"    <li>almát</li>\n"
"    <li>banánt</li>\n"
"   </ul>\n"
"  </td>\n"
" </tr>\n"
" <tr>\n"
"  <td><pre>\n"
"Szeretem a\n"
" [list=I]\n"
"  [*]narancsot\n"
"  [*]almát\n"
"  [*]banánt\n"
" [/list]\n"
"</pre></td>\n"
"  <td>\n"
"   Szeretem a \n"
"   <ol style=\"list-style-type: upper-roman;\">\n"
"    <li>narancsot</li>\n"
"    <li>almát</li>\n"
"    <li>banánt</li>\n"
"   </ol>\n"
"  </td>\n"
" </tr>\n"
" <tr>\n"
"  <td><pre>\n"
"Szeretem a\n"
" [list=1]\n"
"  [*]narancsot\n"
"  [*]almát\n"
"  [*]banánt\n"
" [/list]\n"
"</pre></td>\n"
"  <td>\n"
"   Szeretem a\n"
"   <ol style=\"list-style-type: decimal;\">\n"
"    <li>narancsot</li>\n"
"    <li>almát</li>\n"
"    <li>banánt</li>\n"
"   </ol>\n"
"  </td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Fix szélességű szöveg és blokk formázás</h2>\n"
"\n"
"<p>\n"
" A <strong>[code]</strong> elemet bekezdésen belüli fix szélességű\n"
" betűkészlettel való megjelenéshez lehet használni, vagy egy blokk\n"
" megjelenítéséhez (általában programkód). Ha legalább egy, bármilyen\n"
" soremelés karakter szerepel a két elem között, akkor egy blokkban,\n"
" ellenkező esetben pedig bekezdésen belül jelenik meg.\n"
"</p>\n"
"\n"
"<table>\n"
" <tr>\n"
"  <th>használat</th><th>megjelenés</th>\n"
" </tr>\n"
" <tr>\n"
"  <td>Szerkeszd a [code]robots.txt[/code] állományt!</td>\n"
"  <td>Szerkeszd a <code>robots.txt</code> állományt!</td>\n"
"  </td>\n"
" </tr>\n"
" <tr>\n"
"  <td>\n"
"Egy HTML title példa:<br />\n"
"[code]<br />\n"
"&lt;head&gt;<br />\n"
"&nbsp;&lt;title&gt;Az oldal címe&lt;/title&gt;<br />\n"
"&lt;/head&gt;<br />\n"
"[/code]\n"
"  </td>\n"
"  <td>\n"
"Egy HTML title példa:<br />\n"
"<div class=\"codeblock\"><code>\n"
"&lt;head&gt;<br />\n"
"&nbsp;&lt;title&gt;Az oldal címe&lt;/title&gt;<br />\n"
"&lt;/head&gt;<br />\n"
"</code>\n"
"  </td>\n"
" </tr>\n"
"</table>\n"
"\n"
"<h2>Szöveg és blokk igazítás</h2>\n"
"\n"
"<p>\n"
" Lehetőség van a szöveg igazításának beállítására a <code>[left]</code>,\n"
" <code>[right]</code> és <code>[center]</code> jelölőkkel. A <code>[float]</"
"code>\n"
" használható lebegő dobozok szövegbe helyezésére (különösen hasznos képek\n"
" esetén). A lebegés iránya meghatározható a megadott paraméterrel, úgymint\n"
" <code>[float=left]</code> vagy <code>[float=right]</code>.\n"
"</p>\n"
"\n"
"<h2>Több formázó elem használata</h2>\n"
"\n"
"<p>\n"
" Több formázó elemet is rendelhetsz egy adott szövegrészhez, például az "
"<code>\n"
" Én a [b][i]parton[i][/b] voltam</code>, <code>Én a <strong><em>parton</em></"
"strong>\n"
" voltam</code>-ként jelenik meg.\n"
"</p>\n"
"\n"
"<p>\n"
" Ellenőrizd, hogy figyeltél-e a helyes sorrendjére a nyitó és a záró "
"elemeknek!\n"
" Az elemeket fordított sorrendben kell becsuknod, mint ahogy megnyitottad,\n"
" ellenkező esetben elég furcsa megjelenéssel is találkozhatsz. Mielőtt "
"elküldöd,\n"
" ellenőrizd a szövegeidet mindig az előnézet funkcióval, így felfedezheted\n"
" a BBCode-ok rossz használatából eredő formázási hibákat.\n"
"</p>\n"
"\n"
"<p>\n"
" Van pár kivétel, ahol nem használhatsz több BBCode elemet egyszerre.\n"
" Egy ilyen példa az <strong>[img]</strong> elem, mely definíció szerint\n"
" csak URL-t tartalmazhat. A BBCode elemek szintén tiltottak a \n"
" <strong>[code]</strong> elemeken belül, illetve nem tudsz formázási\n"
" szabályt beállítani globálisan az összes elemére egy listának sem\n"
" (körbevéve formázó elemekkel).\n"
"</p>"
