<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ceus1984</id>
	<title>Joomla! Documentation - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.sandbox.joomla.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ceus1984"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/Ceus1984"/>
	<updated>2026-05-15T08:29:03Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_custom_fields_to_core_components_using_a_plugin/de&amp;diff=245387</id>
		<title>Adding custom fields to core components using a plugin/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_custom_fields_to_core_components_using_a_plugin/de&amp;diff=245387"/>
		<updated>2015-10-24T17:39:37Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Hast Du Dir je gewünscht, es gäbe ein extra Telefonnummern-Feld in com_contact oder ein Extrafeld für Artikel in com-content? Joomla bietet einen einfachen Weg, neue Felder...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Hast Du Dir je gewünscht, es gäbe ein extra Telefonnummern-Feld in com_contact oder ein Extrafeld für Artikel in com-content? Joomla bietet einen einfachen Weg, neue Felder in solchen Komponenten zu integrieren. Alles was nötig ist, ist ein einfaches Content-Plugin und ein Layout-Override für Dein Template.&lt;br /&gt;
&lt;br /&gt;
This article shows how to add an extra field to a core component using the example of adding an additional email address to contacts in com_contact. If you need to add custom fields to com_content for your Joomla articles, simply change any references to &amp;quot;contact&amp;quot; to &amp;quot;content&amp;quot; in the code below.&lt;br /&gt;
&lt;br /&gt;
==Adding a Custom Field==&lt;br /&gt;
It is recommended that you first read [[S:MyLanguage/Creating a Plugin for Joomla|Creating a Plugin for Joomla!]] for details on how to create and install a plugin, which is not covered here.&lt;br /&gt;
&lt;br /&gt;
To add a field to a system component you need to create a content plugin which picks up the onContentPrepareForm event and inserts its own fields into the given JForm. The following code is for Joomla 3.1 and later.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php&lt;br /&gt;
// no direct access&lt;br /&gt;
defined ( &#039;_JEXEC&#039; ) or die ( &#039;Restricted access&#039; );&lt;br /&gt;
class plgContentExample extends JPlugin {&lt;br /&gt;
	/**&lt;br /&gt;
	 * Load the language file on instantiation.&lt;br /&gt;
	 * Note this is only available in Joomla 3.1 and higher.&lt;br /&gt;
	 * If you want to support 3.0 series you must override the constructor&lt;br /&gt;
	 *&lt;br /&gt;
	 * @var boolean&lt;br /&gt;
	 * @since 3.1&lt;br /&gt;
	 */&lt;br /&gt;
	protected $autoloadLanguage = true;&lt;br /&gt;
	function onContentPrepareForm($form, $data) {&lt;br /&gt;
		$app = JFactory::getApplication();&lt;br /&gt;
		$option = $app-&amp;gt;input-&amp;gt;get(&#039;option&#039;);&lt;br /&gt;
		switch($option) {&lt;br /&gt;
			case &#039;com_contact&#039;:&lt;br /&gt;
				if ($app-&amp;gt;isAdmin()) {&lt;br /&gt;
					JForm::addFormPath(__DIR__ . &#039;/forms&#039;);&lt;br /&gt;
					$form-&amp;gt;loadFile(&#039;contact&#039;, false);&lt;br /&gt;
				}&lt;br /&gt;
				return true;&lt;br /&gt;
		}&lt;br /&gt;
		return true;&lt;br /&gt;
	}&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Enabling Front End Editing of Custom Fields===&lt;br /&gt;
&lt;br /&gt;
Enabling Frontend editing for your new custom fields is pretty easy.&lt;br /&gt;
To add the fields to the frontend content edit form, simply duplicate this block of code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
case &#039;com_contact&#039;:&lt;br /&gt;
	if ($app-&amp;gt;isAdmin()) {&lt;br /&gt;
		JForm::addFormPath(__DIR__ . &#039;/forms&#039;);&lt;br /&gt;
		$form-&amp;gt;loadFile(&#039;contact&#039;, false);&lt;br /&gt;
	}&lt;br /&gt;
	return true;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Duplicate that immediately below the existing instance of it, and change &#039;isAdmin&#039; to &#039;isSite&#039;.&lt;br /&gt;
&lt;br /&gt;
Once you&#039;ve got that done, create a template override for the content form edit.php file. If you&#039;re creating a set of custom fields for com_content, you would copy /components/com_contact/views/form/tmpl/edit.php to /templates/your-template-name/html/com_contact/form/edit.php&lt;br /&gt;
&lt;br /&gt;
Inside your layout override, add your new fields in the form where you want them to appear (e.g., below the title, below the description), making sure that the field names match the XML file from your plugin (you&#039;ll create this next).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
&amp;lt;!-- this part can be added anywhere in the file - preferrable towards the beginning, but definitely before the next part --&amp;gt;&lt;br /&gt;
&amp;lt;?php if ($this-&amp;gt;item-&amp;gt;id) : ?&amp;gt;  &amp;lt;!-- checking if this is an existing item or not --&amp;gt;&lt;br /&gt;
  &amp;lt;?php $attribs = json_decode($this-&amp;gt;item-&amp;gt;attribs); ?&amp;gt; &amp;lt;!-- if it is an existing item, get the attribs part of the existing record (attribs is where we save custom fields). You only need this line once. --&amp;gt;&lt;br /&gt;
  &amp;lt;?php echo $this-&amp;gt;form-&amp;gt;setValue(&#039;field_name&#039;, &#039;attribs&#039;, $attribs-&amp;gt;field_name); ?&amp;gt; &amp;lt;!-- set the value of the custom field to what is already saved. Duplicate for the number of fields you need, changing the field_name as needed. --&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&amp;lt;!-- this part needs added to the file right where you want to display it. So, if you want it to show right after the description field, find the description field and place this right after it. Duplicate for the number of fields you need, changing the field_name as needed.--&amp;gt;&lt;br /&gt;
&amp;lt;?php echo $this-&amp;gt;form-&amp;gt;renderField(&#039;field_name&#039;, &#039;attribs&#039;); ?&amp;gt; &amp;lt;!-- now we display the field. If we are editing an existing item, the previously saved data will be populated already --&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With that done, your fields will now appear and be stored via frontend editing.&lt;br /&gt;
&lt;br /&gt;
The additional fields are loaded from the file forms/contact.xml in the plugin directory. It&#039;s important that these fields are in a fields element with the name property set to &amp;quot;params&amp;quot;. If you don&#039;t set this property name, the fields will appear in the admin site but the values will not be saved.&lt;br /&gt;
&lt;br /&gt;
In this case we are adding a field for a label to describe the email field in the public website and a second field for the value of the email address.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
&amp;lt;form&amp;gt;&lt;br /&gt;
	&amp;lt;fields name=&amp;quot;params&amp;quot; &amp;gt;&lt;br /&gt;
		&amp;lt;fieldset name=&amp;quot;params&amp;quot; &amp;gt;&lt;br /&gt;
			&amp;lt;field&lt;br /&gt;
				name=&amp;quot;contact_emaillabel2&amp;quot;&lt;br /&gt;
				type=&amp;quot;text&amp;quot;&lt;br /&gt;
				label=&amp;quot;PLG_CONTENT_EXAMPLE_CONTACT_EMAILLABEL2&amp;quot;&lt;br /&gt;
				/&amp;gt;&lt;br /&gt;
			&amp;lt;field&lt;br /&gt;
				name=&amp;quot;contact_email2&amp;quot;&lt;br /&gt;
				type=&amp;quot;text&amp;quot;&lt;br /&gt;
				label=&amp;quot;PLG_CONTENT_EXAMPLE_CONTACT_EMAIL2&amp;quot;&lt;br /&gt;
				filter=&amp;quot;email&amp;quot;&lt;br /&gt;
			/&amp;gt;&lt;br /&gt;
		&amp;lt;/fieldset&amp;gt;&lt;br /&gt;
	&amp;lt;/fields&amp;gt;&lt;br /&gt;
&amp;lt;/form&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finally we need a language file so that the parameters are presented nicely in the admin site and are translatable into different languages. This file needs to be called something like &amp;lt;tt&amp;gt;en-GB.plg_content_example.ini&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source&amp;gt;&lt;br /&gt;
COM_CONTACT_PARAMS_FIELDSET_LABEL=&amp;quot;Additional Information&amp;quot;&lt;br /&gt;
PLG_CONTENT_EXAMPLE_CONTACT_EMAIL2=&amp;quot;Additional email address&amp;quot;&lt;br /&gt;
PLG_CONTENT_EXAMPLE_CONTACT_EMAILLABEL2=&amp;quot;Additional email label&amp;quot;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
That&#039;s it for adding the field to com_contact. If you install this plugin, you&#039;ll have an additional tab in the contact editing form called &amp;quot;Additional Information&amp;quot; with the new fields included. If you fill in the new label and email address fields for a contact, you&#039;ll see that com_contact will store and retrieve the information for you.&lt;br /&gt;
&lt;br /&gt;
The same plugin can be used to add more fields to different components; just add the relevant code into the onContentPrepareForm function and create the appropriate XML form files.&lt;br /&gt;
&lt;br /&gt;
==Displaying the Custom Field==&lt;br /&gt;
To display the custom field you need to create a layout override for the relevant component in your template. For more details on creating templates see [[S:MyLanguage/Creating a basic Joomla! template|Creating a basic Joomla! template]]. For details on layout overrides, see [[S:MyLanguage/Understanding Output Overrides|Understanding Output Overrides]].&lt;br /&gt;
&lt;br /&gt;
Copy the file &amp;lt;tt&amp;gt;&amp;lt;Joomla&amp;gt;/components/com_contact/views/contact/tmpl/default.php&amp;lt;/tt&amp;gt; to &amp;lt;tt&amp;gt;&amp;lt;template&amp;gt;/html/com_contact/contact/default.php&amp;lt;/tt&amp;gt;, creating the folders in your template as necessary. We&#039;re going to edit this file to include the additional information. The com_contact component will automatically load the additional fields for us and load it into a variable called $this-&amp;gt;params. All we need to do is check that the data is set and, if so, display it.&lt;br /&gt;
&lt;br /&gt;
To display the field, find the location in &amp;lt;tt&amp;gt;&amp;lt;template&amp;gt;/html/com_contact/contact/default.php&amp;lt;/tt&amp;gt; that corresponds to where you&#039;d like the additional email address to be displayed and add the following code:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?php if ($this-&amp;gt;params-&amp;gt;get(&#039;contact_emaillabel2&#039;, false)) : ?&amp;gt;&lt;br /&gt;
	&amp;lt;div&amp;gt;&lt;br /&gt;
		&amp;lt;span class=&amp;quot;contact-additionalemail&amp;quot;&amp;gt;&amp;lt;?php echo $this-&amp;gt;params-&amp;gt;get(&#039;contact_emaillabel2&#039;);?&amp;gt;:&amp;amp;emsp;&amp;lt;a href=&amp;quot;mailto:&amp;lt;?php echo $this-&amp;gt;params-&amp;gt;get(&#039;contact_email2&#039;); ?&amp;gt;&amp;quot;&amp;gt;&amp;lt;?php echo $this-&amp;gt;params-&amp;gt;get(&#039;contact_email2&#039;); ?&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
	&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;?php endif; ?&amp;gt;&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you add this code and install your template, you will now have the custom field displaying in your public Website.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Plugin Development]]&lt;br /&gt;
[[Category:Template Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_custom_fields_to_core_components_using_a_plugin/1/de&amp;diff=245386</id>
		<title>Translations:Adding custom fields to core components using a plugin/1/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_custom_fields_to_core_components_using_a_plugin/1/de&amp;diff=245386"/>
		<updated>2015-10-24T17:39:36Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Hast Du Dir je gewünscht, es gäbe ein extra Telefonnummern-Feld in com_contact oder ein Extrafeld für Artikel in com-content? Joomla bietet einen einfachen Weg, neue Felder...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hast Du Dir je gewünscht, es gäbe ein extra Telefonnummern-Feld in com_contact oder ein Extrafeld für Artikel in com-content? Joomla bietet einen einfachen Weg, neue Felder in solchen Komponenten zu integrieren. Alles was nötig ist, ist ein einfaches Content-Plugin und ein Layout-Override für Dein Template.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Content/de&amp;diff=245163</id>
		<title>Content/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Content/de&amp;diff=245163"/>
		<updated>2015-10-24T13:53:23Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Für detaillierte Hintergrundinformation lesen Sie bitte Understanding categories and articles.  Für Anweisungen wie de...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Eine der Haupteigenschaften von Joomla! (und eine der ersten, die entwickelt wurden) ist die Möglichkeit, den Seiteninhalt zu verwalten. Dies [[S:MyLanguage/Content Management System|Content Management System]]  kann wie folgt zusammengefasst werden:&lt;br /&gt;
&lt;br /&gt;
* The smallest units of information are [[S:MyLanguage/Article|Articles]].&lt;br /&gt;
* Articles can be organised using [[S:MyLanguage/Category|Categories]], which can form trees. (An article or category can only be in one category at a time.)&lt;br /&gt;
* You can create pages on your site to show articles based on their properties. For example, you can create a page showing all articles in a certain category, or the oldest 10 articles from all categories.&lt;br /&gt;
* You can control exactly which users can see which articles. For example, you may choose to hide all articles in a certain category from users that have not been approved by an administrator.&lt;br /&gt;
&lt;br /&gt;
Für detaillierte Hintergrundinformation lesen Sie bitte [[S:MyLanguage/Understanding categories and articles|Understanding categories and articles]]. &lt;br /&gt;
Für Anweisungen wie der Inhalt verwaltet wird lesen Sie bitte [[S:MyLanguage/Article Management|Article Management]].&lt;br /&gt;
&lt;br /&gt;
Joomla! comes with a variety of core extensions to make use of and manipulate content. The site part of the content [[S:MyLanguage/component|component]] (com_content) allows you to create pages that list or display content, or allow the user to add or edit content. The various content [[S:MyLanguage/Module|modules]], such as &amp;quot;Latest News&amp;quot;, &amp;quot;Most Read Content&amp;quot;  and &amp;quot;Newsflash&amp;quot;, allow you to display or list content as a side feature on some or all pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also:&#039;&#039;&#039; [[S:MyLanguage/Article|Article]], [[S:MyLanguage/Category|Category]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Landing Pages]]&lt;br /&gt;
[[Category:Explanations]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Content/3/de&amp;diff=245162</id>
		<title>Translations:Content/3/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Content/3/de&amp;diff=245162"/>
		<updated>2015-10-24T13:53:23Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Für detaillierte Hintergrundinformation lesen Sie bitte Understanding categories and articles.  Für Anweisungen wie de...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Für detaillierte Hintergrundinformation lesen Sie bitte [[S:MyLanguage/Understanding categories and articles|Understanding categories and articles]]. &lt;br /&gt;
Für Anweisungen wie der Inhalt verwaltet wird lesen Sie bitte [[S:MyLanguage/Article Management|Article Management]].&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Content/de&amp;diff=245153</id>
		<title>Content/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Content/de&amp;diff=245153"/>
		<updated>2015-10-24T13:50:56Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Eine der Haupteigenschaften von Joomla! (und eine der ersten, die entwickelt wurden) ist die Möglichkeit, den Seiteninhalt zu verwalten. Dies S:MyLanguage/Content Managemen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Eine der Haupteigenschaften von Joomla! (und eine der ersten, die entwickelt wurden) ist die Möglichkeit, den Seiteninhalt zu verwalten. Dies [[S:MyLanguage/Content Management System|Content Management System]]  kann wie folgt zusammengefasst werden:&lt;br /&gt;
&lt;br /&gt;
* The smallest units of information are [[S:MyLanguage/Article|Articles]].&lt;br /&gt;
* Articles can be organised using [[S:MyLanguage/Category|Categories]], which can form trees. (An article or category can only be in one category at a time.)&lt;br /&gt;
* You can create pages on your site to show articles based on their properties. For example, you can create a page showing all articles in a certain category, or the oldest 10 articles from all categories.&lt;br /&gt;
* You can control exactly which users can see which articles. For example, you may choose to hide all articles in a certain category from users that have not been approved by an administrator.&lt;br /&gt;
&lt;br /&gt;
For more detailed background information, read [[S:MyLanguage/Understanding categories and articles|Understanding categories and articles]]. For instructions on how to manage content, see [[S:MyLanguage/Article Management|Article Management]].&lt;br /&gt;
&lt;br /&gt;
Joomla! comes with a variety of core extensions to make use of and manipulate content. The site part of the content [[S:MyLanguage/component|component]] (com_content) allows you to create pages that list or display content, or allow the user to add or edit content. The various content [[S:MyLanguage/Module|modules]], such as &amp;quot;Latest News&amp;quot;, &amp;quot;Most Read Content&amp;quot;  and &amp;quot;Newsflash&amp;quot;, allow you to display or list content as a side feature on some or all pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also:&#039;&#039;&#039; [[S:MyLanguage/Article|Article]], [[S:MyLanguage/Category|Category]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Landing Pages]]&lt;br /&gt;
[[Category:Explanations]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Content/1/de&amp;diff=245152</id>
		<title>Translations:Content/1/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Content/1/de&amp;diff=245152"/>
		<updated>2015-10-24T13:50:55Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Eine der Haupteigenschaften von Joomla! (und eine der ersten, die entwickelt wurden) ist die Möglichkeit, den Seiteninhalt zu verwalten. Dies S:MyLanguage/Content Managemen...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Eine der Haupteigenschaften von Joomla! (und eine der ersten, die entwickelt wurden) ist die Möglichkeit, den Seiteninhalt zu verwalten. Dies [[S:MyLanguage/Content Management System|Content Management System]]  kann wie folgt zusammengefasst werden:&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Content/de&amp;diff=245144</id>
		<title>Content/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Content/de&amp;diff=245144"/>
		<updated>2015-10-24T13:39:58Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Inhalt&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
One of the main features of Joomla! (and one of the first to be developed) is its ability to manage your site&#039;s content. This [[S:MyLanguage/Content Management System|Content Management System]] can be summarised as follows:&lt;br /&gt;
&lt;br /&gt;
* The smallest units of information are [[S:MyLanguage/Article|Articles]].&lt;br /&gt;
* Articles can be organised using [[S:MyLanguage/Category|Categories]], which can form trees. (An article or category can only be in one category at a time.)&lt;br /&gt;
* You can create pages on your site to show articles based on their properties. For example, you can create a page showing all articles in a certain category, or the oldest 10 articles from all categories.&lt;br /&gt;
* You can control exactly which users can see which articles. For example, you may choose to hide all articles in a certain category from users that have not been approved by an administrator.&lt;br /&gt;
&lt;br /&gt;
For more detailed background information, read [[S:MyLanguage/Understanding categories and articles|Understanding categories and articles]]. For instructions on how to manage content, see [[S:MyLanguage/Article Management|Article Management]].&lt;br /&gt;
&lt;br /&gt;
Joomla! comes with a variety of core extensions to make use of and manipulate content. The site part of the content [[S:MyLanguage/component|component]] (com_content) allows you to create pages that list or display content, or allow the user to add or edit content. The various content [[S:MyLanguage/Module|modules]], such as &amp;quot;Latest News&amp;quot;, &amp;quot;Most Read Content&amp;quot;  and &amp;quot;Newsflash&amp;quot;, allow you to display or list content as a side feature on some or all pages.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;See also:&#039;&#039;&#039; [[S:MyLanguage/Article|Article]], [[S:MyLanguage/Category|Category]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Landing Pages]]&lt;br /&gt;
[[Category:Explanations]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Content/Page_display_title/de&amp;diff=245143</id>
		<title>Translations:Content/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Content/Page_display_title/de&amp;diff=245143"/>
		<updated>2015-10-24T13:39:58Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Inhalt&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Inhalt&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245132</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245132"/>
		<updated>2015-10-24T13:35:00Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Kategorie:Tutorials Kategorie:Artikel-Verwaltung Kategorie:Anfänger&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&#039;&#039;&#039;Ausrichtung&#039;&#039;&#039;: Bildausrichtung festlegen. Standartmäßig ist es auf &#039;&#039;&#039;Nicht definiert&#039;&#039;&#039; gesetzt.&lt;br /&gt;
#*&#039;&#039;&#039;Bidbeschriftung&#039;&#039;&#039;: Wird unter dem Bild als Bild Titel angezeigt.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;br /&gt;
Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&lt;br /&gt;
#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, welchen Browser und welches Betriebssystem Du verwendest.&lt;br /&gt;
#Die ausgewählten Datei(en) erscheinen im unteren Teil des &amp;quot;Bild Einfügen-Fensters&amp;quot;. Klicken Sie auf &amp;quot;Hochladen starten&amp;quot;, um mit dem Hochladen der Datei(en) zu beginnen.&lt;br /&gt;
#*Wenn die Datei hochgeladen ist erscheint eine grüne Nachricht zur Bestätigung oben im Fenster.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Kategorie:Tutorials]]&lt;br /&gt;
[[Kategorie:Artikel-Verwaltung]]&lt;br /&gt;
[[Kategorie:Anfänger]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/26/de&amp;diff=245131</id>
		<title>Translations:Adding an image to an article/26/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/26/de&amp;diff=245131"/>
		<updated>2015-10-24T13:35:00Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Kategorie:Tutorials Kategorie:Artikel-Verwaltung Kategorie:Anfänger&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Kategorie:Tutorials]]&lt;br /&gt;
[[Kategorie:Artikel-Verwaltung]]&lt;br /&gt;
[[Kategorie:Anfänger]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245122</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245122"/>
		<updated>2015-10-24T13:32:56Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*Wenn die Datei hochgeladen ist erscheint eine grüne Nachricht zur Bestätigung oben im Fenster.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&#039;&#039;&#039;Ausrichtung&#039;&#039;&#039;: Bildausrichtung festlegen. Standartmäßig ist es auf &#039;&#039;&#039;Nicht definiert&#039;&#039;&#039; gesetzt.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;br /&gt;
Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&lt;br /&gt;
#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, welchen Browser und welches Betriebssystem Du verwendest.&lt;br /&gt;
#Die ausgewählten Datei(en) erscheinen im unteren Teil des &amp;quot;Bild Einfügen-Fensters&amp;quot;. Klicken Sie auf &amp;quot;Hochladen starten&amp;quot;, um mit dem Hochladen der Datei(en) zu beginnen.&lt;br /&gt;
#*Wenn die Datei hochgeladen ist erscheint eine grüne Nachricht zur Bestätigung oben im Fenster.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/24/de&amp;diff=245121</id>
		<title>Translations:Adding an image to an article/24/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/24/de&amp;diff=245121"/>
		<updated>2015-10-24T13:32:55Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*Wenn die Datei hochgeladen ist erscheint eine grüne Nachricht zur Bestätigung oben im Fenster.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*Wenn die Datei hochgeladen ist erscheint eine grüne Nachricht zur Bestätigung oben im Fenster.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245114</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245114"/>
		<updated>2015-10-24T13:31:01Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#Die ausgewählten Datei(en) erscheinen im unteren Teil des &amp;quot;Bild Einfügen-Fensters&amp;quot;. Klicken Sie auf &amp;quot;Hochladen starten&amp;quot;, um mit dem Hochladen der Datei(en) zu beginnen.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&#039;&#039;&#039;Ausrichtung&#039;&#039;&#039;: Bildausrichtung festlegen. Standartmäßig ist es auf &#039;&#039;&#039;Nicht definiert&#039;&#039;&#039; gesetzt.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;br /&gt;
Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&lt;br /&gt;
#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, welchen Browser und welches Betriebssystem Du verwendest.&lt;br /&gt;
#Die ausgewählten Datei(en) erscheinen im unteren Teil des &amp;quot;Bild Einfügen-Fensters&amp;quot;. Klicken Sie auf &amp;quot;Hochladen starten&amp;quot;, um mit dem Hochladen der Datei(en) zu beginnen.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/23/de&amp;diff=245113</id>
		<title>Translations:Adding an image to an article/23/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/23/de&amp;diff=245113"/>
		<updated>2015-10-24T13:31:01Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#Die ausgewählten Datei(en) erscheinen im unteren Teil des &amp;quot;Bild Einfügen-Fensters&amp;quot;. Klicken Sie auf &amp;quot;Hochladen starten&amp;quot;, um mit dem Hochladen der Datei(en) zu beginnen.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Die ausgewählten Datei(en) erscheinen im unteren Teil des &amp;quot;Bild Einfügen-Fensters&amp;quot;. Klicken Sie auf &amp;quot;Hochladen starten&amp;quot;, um mit dem Hochladen der Datei(en) zu beginnen.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245106</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245106"/>
		<updated>2015-10-24T13:29:02Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, w...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&#039;&#039;&#039;Ausrichtung&#039;&#039;&#039;: Bildausrichtung festlegen. Standartmäßig ist es auf &#039;&#039;&#039;Nicht definiert&#039;&#039;&#039; gesetzt.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;br /&gt;
Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&lt;br /&gt;
#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, welchen Browser und welches Betriebssystem Du verwendest.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/20/de&amp;diff=245105</id>
		<title>Translations:Adding an image to an article/20/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/20/de&amp;diff=245105"/>
		<updated>2015-10-24T13:29:02Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, w...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Wähle das Bild, dass Du hochladen willst. Klicke auf &amp;quot;Öffnen&amp;quot; im Datei-Browser um die Auswahl zu bestätigen. Hinweis: Stil und Layout des Datei-Browsers hängt davon ab, welchen Browser und welches Betriebssystem Du verwendest.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245097</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245097"/>
		<updated>2015-10-24T13:26:47Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;br /&gt;
Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/19/de&amp;diff=245096</id>
		<title>Translations:Adding an image to an article/19/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/19/de&amp;diff=245096"/>
		<updated>2015-10-24T13:26:46Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Klicke auf den &amp;quot;Durchsuchen&amp;quot;-Button um den Datei-Browser zu öffnen.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245085</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245085"/>
		<updated>2015-10-24T13:23:00Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/18/de&amp;diff=245084</id>
		<title>Translations:Adding an image to an article/18/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/18/de&amp;diff=245084"/>
		<updated>2015-10-24T13:23:00Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Du kannst auch Bilder einfügen, indem Du dden &amp;quot;Upload-Bereich&amp;quot; im &amp;quot;Bild-Einfügefenster&amp;quot; benutzt&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245082</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245082"/>
		<updated>2015-10-24T13:21:27Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/17/de&amp;diff=245081</id>
		<title>Translations:Adding an image to an article/17/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/17/de&amp;diff=245081"/>
		<updated>2015-10-24T13:21:26Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Bilder einfügen mit dem &amp;quot;Bild-Einfügefenster&amp;quot; ==&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245078</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245078"/>
		<updated>2015-10-24T13:20:34Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*Klicke auf den &amp;#039;&amp;#039;Abbrechen&amp;#039;&amp;#039; Button um im Bildeinfügefenster zu bleiben.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/16/de&amp;diff=245077</id>
		<title>Translations:Adding an image to an article/16/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/16/de&amp;diff=245077"/>
		<updated>2015-10-24T13:20:33Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*Klicke auf den &amp;#039;&amp;#039;Abbrechen&amp;#039;&amp;#039; Button um im Bildeinfügefenster zu bleiben.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*Klicke auf den &#039;&#039;Abbrechen&#039;&#039; Button um im Bildeinfügefenster zu bleiben.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245075</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245075"/>
		<updated>2015-10-24T13:19:18Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Setze den Cursor an die gewünschte Stelle, an der Du das Bild anzeigen lassen möchtest und klicke auf den Bild Editor Button am unteren Rand des Bildschirms&lt;br /&gt;
#Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wähle ein Bild und klicke auf den Einfüge-Button.&lt;br /&gt;
#*Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/15/de&amp;diff=245074</id>
		<title>Translations:Adding an image to an article/15/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/15/de&amp;diff=245074"/>
		<updated>2015-10-24T13:19:18Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*&amp;quot;Caption Klasse&amp;quot;: Ordnet dem Beschreibungstext eine Klasse zu. Klick den &amp;quot;Einfügen&amp;quot;-Button um das Bild einzufügen. Das &amp;quot;Bild-Einfügefenster wird geschlossen und das Bild wird im Editor angezeigt.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245041</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245041"/>
		<updated>2015-10-24T13:07:51Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/14/de&amp;diff=245040</id>
		<title>Translations:Adding an image to an article/14/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/14/de&amp;diff=245040"/>
		<updated>2015-10-24T13:07:51Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*&amp;quot;Bildbeschriftung&amp;quot;: Ermöglicht eine Beschreibung, die unter dem Bild angezeigt wird.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245021</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245021"/>
		<updated>2015-10-24T13:04:57Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn Du im Front-end eingeloggt bist, Du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/13/de&amp;diff=245020</id>
		<title>Translations:Adding an image to an article/13/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/13/de&amp;diff=245020"/>
		<updated>2015-10-24T13:04:57Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*&amp;quot;Ausrichtung&amp;quot;:  Bestimmt die Bildausrichtung. Standardmäßig ist die Ausrichtung &amp;quot;Nicht definiert&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245011</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245011"/>
		<updated>2015-10-24T13:03:18Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn du im Front-end eingeloggt bist, du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/12/de&amp;diff=245010</id>
		<title>Translations:Adding an image to an article/12/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/12/de&amp;diff=245010"/>
		<updated>2015-10-24T13:03:18Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*&amp;quot;Bildtitel&amp;quot;: Wird als möglicher Beschreibungstext verwendet und als &amp;quot;Title-Tag&amp;quot; im Quelltext ausgegeben.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245007</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=245007"/>
		<updated>2015-10-24T13:00:51Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn du im Front-end eingeloggt bist, du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/11/de&amp;diff=245006</id>
		<title>Translations:Adding an image to an article/11/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/11/de&amp;diff=245006"/>
		<updated>2015-10-24T13:00:50Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*&amp;quot;Beschreibung&amp;quot;: Dies wird als &amp;quot;alt&amp;quot;-Text des Bildes dargestellt, ein wichtiges Merkmal für die Übereinstimmung mit den Web-Standards.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244997</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244997"/>
		<updated>2015-10-24T12:55:12Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Wähle die gewünschten Bildeinstellungen:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn du im Front-end eingeloggt bist, du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
Wähle die gewünschten Bildeinstellungen:&lt;br /&gt;
#*&#039;&#039;&#039;Image Description&#039;&#039;&#039;: This becomes the &#039;&#039;&#039;alt&#039;&#039;&#039; attribute for the image, an important feature for accessibility and compliance with web standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/10/de&amp;diff=244996</id>
		<title>Translations:Adding an image to an article/10/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/10/de&amp;diff=244996"/>
		<updated>2015-10-24T12:55:12Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Wähle die gewünschten Bildeinstellungen:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wähle die gewünschten Bildeinstellungen:&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244991</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244991"/>
		<updated>2015-10-24T12:51:55Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Klicke den &#039;&#039;Neuer Beitrag&#039;&#039; Button im Kontrollzentrum&lt;br /&gt;
#* Wenn du im Front-end eingeloggt bist, du die entsprechenden Rechte hast und den gewünschten zu bearbeitenden Artikel siehst: Klick den &#039;&#039;Bearbeiten&#039;&#039; Button. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;br /&gt;
#Set the image properties as required:&lt;br /&gt;
#*&#039;&#039;&#039;Image Description&#039;&#039;&#039;: This becomes the &#039;&#039;&#039;alt&#039;&#039;&#039; attribute for the image, an important feature for accessibility and compliance with web standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/9/de&amp;diff=244990</id>
		<title>Translations:Adding an image to an article/9/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/9/de&amp;diff=244990"/>
		<updated>2015-10-24T12:51:55Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#*Verwende das Dropdown-Feld &amp;quot;Verzeichnis&amp;quot;, um einen Bildordner auszuwählen. Um auf die nächst höhere Ebene zu wechseln, klicke den Button &amp;quot;Hoch&amp;quot;.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244977</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244977"/>
		<updated>2015-10-24T12:42:23Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Clicking the &#039;&#039;Add New Article&#039;&#039; button in the Control Panel.&lt;br /&gt;
Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der Symbolleiste. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;br /&gt;
#*Use the drop down &#039;&#039;Directory&#039;&#039; field to quickly select a directory and click the &#039;&#039;Up&#039;&#039; button to go up a directory level.&lt;br /&gt;
#Set the image properties as required:&lt;br /&gt;
#*&#039;&#039;&#039;Image Description&#039;&#039;&#039;: This becomes the &#039;&#039;&#039;alt&#039;&#039;&#039; attribute for the image, an important feature for accessibility and compliance with web standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/8/de&amp;diff=244976</id>
		<title>Translations:Adding an image to an article/8/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/8/de&amp;diff=244976"/>
		<updated>2015-10-24T12:42:22Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Du kannst auch das Verzeichnis wechseln, indem Du auf die Ordnersymbole klickst.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244973</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244973"/>
		<updated>2015-10-24T12:39:41Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Für die Bearbeitung von Artikeln gibt es folgende Möglichkeiten:&lt;br /&gt;
#* Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Clicking the &#039;&#039;Add New Article&#039;&#039; button in the Control Panel.&lt;br /&gt;
Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der Symbolleiste. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;br /&gt;
#*You may also move directory by clicking on the folder icons.&lt;br /&gt;
#*Use the drop down &#039;&#039;Directory&#039;&#039; field to quickly select a directory and click the &#039;&#039;Up&#039;&#039; button to go up a directory level.&lt;br /&gt;
#Set the image properties as required:&lt;br /&gt;
#*&#039;&#039;&#039;Image Description&#039;&#039;&#039;: This becomes the &#039;&#039;&#039;alt&#039;&#039;&#039; attribute for the image, an important feature for accessibility and compliance with web standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/7/de&amp;diff=244972</id>
		<title>Translations:Adding an image to an article/7/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/7/de&amp;diff=244972"/>
		<updated>2015-10-24T12:39:41Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Das Bild-Einfügefenster öffnet sich über dem Artikel-Bearbeitungsfenster. Wählen Sie ein Bild und klicken Sie auf den Einfüge-Button.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244965</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244965"/>
		<updated>2015-10-24T12:36:49Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Den Artikel zur Bearbeitung wie folgt öffnen:&lt;br /&gt;
Klicke &#039;&#039;&#039;Inhalt {{rarr}} Beiträge&#039;&#039;&#039; im Menü und gehe zum &#039;&#039;Beitragsmanager&#039;&#039;, wähle den gewünschten Artikel aus und klicke auf &#039;&#039;Bearbeiten&#039;&#039; in der Symbolleiste.&lt;br /&gt;
#* Clicking the &#039;&#039;Add New Article&#039;&#039; button in the Control Panel.&lt;br /&gt;
Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der Symbolleiste. &lt;br /&gt;
#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;br /&gt;
#The Insert Image screen will open over the top of the Edit Article screen. Choose an image and click on the &#039;&#039;Insert&#039;&#039; button.&lt;br /&gt;
#*You may also move directory by clicking on the folder icons.&lt;br /&gt;
#*Use the drop down &#039;&#039;Directory&#039;&#039; field to quickly select a directory and click the &#039;&#039;Up&#039;&#039; button to go up a directory level.&lt;br /&gt;
#Set the image properties as required:&lt;br /&gt;
#*&#039;&#039;&#039;Image Description&#039;&#039;&#039;: This becomes the &#039;&#039;&#039;alt&#039;&#039;&#039; attribute for the image, an important feature for accessibility and compliance with web standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/6/de&amp;diff=244964</id>
		<title>Translations:Adding an image to an article/6/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/6/de&amp;diff=244964"/>
		<updated>2015-10-24T12:36:49Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Gehen Sie mit dem Cursor auf die Stelle, wo Sie Ihr Bild im Text einsetzen wollen und klicken Sie auf die &amp;quot;Bild-bearbeiten&amp;quot; Schaltfläche am unteren Rand des Bildschirms.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244961</id>
		<title>Adding an image to an article/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Adding_an_image_to_an_article/de&amp;diff=244961"/>
		<updated>2015-10-24T12:34:22Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
Bilder werden in einem Artikel mit Hilfe des &#039;&#039;Bild&#039;&#039; Button unterhalb des Editorfensters im Beitrag bearbeiten Fenster eingefügt. Beachte: Es ist möglich ein Bild auch mit dem Editor einzufügen. Mit dieser Funktion lassen sich jedenfalls auf einfache Weise Bilder einfügen, die im &#039;&#039;Bilder&#039;&#039; Verzeichnis deiner Joomla Installation gespeichert sind.&lt;br /&gt;
&lt;br /&gt;
#Den Artikel zur Bearbeitung wie folgt öffnen:&lt;br /&gt;
#* Clicking the &#039;&#039;&#039;Content {{rarr}} Article Manager&#039;&#039;&#039; menu item to go to the &#039;&#039;Article Manager&#039;&#039;, select the Article and click on &#039;&#039;Edit&#039;&#039; in the toolbar button.&lt;br /&gt;
#* Clicking the &#039;&#039;Add New Article&#039;&#039; button in the Control Panel.&lt;br /&gt;
Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der Symbolleiste. &lt;br /&gt;
#Choose where you would like your image placed in the flow of the text by moving the cursor and click the Image editor button at the bottom of the screen.&lt;br /&gt;
#The Insert Image screen will open over the top of the Edit Article screen. Choose an image and click on the &#039;&#039;Insert&#039;&#039; button.&lt;br /&gt;
#*You may also move directory by clicking on the folder icons.&lt;br /&gt;
#*Use the drop down &#039;&#039;Directory&#039;&#039; field to quickly select a directory and click the &#039;&#039;Up&#039;&#039; button to go up a directory level.&lt;br /&gt;
#Set the image properties as required:&lt;br /&gt;
#*&#039;&#039;&#039;Image Description&#039;&#039;&#039;: This becomes the &#039;&#039;&#039;alt&#039;&#039;&#039; attribute for the image, an important feature for accessibility and compliance with web standards.&lt;br /&gt;
#*&#039;&#039;&#039;Image Title&#039;&#039;&#039;: Used for the optional caption and also becomes the &#039;&#039;&#039;title&#039;&#039;&#039; attribute in HTML.&lt;br /&gt;
#*&#039;&#039;&#039;Image Float&#039;&#039;&#039;: Sets the image alignment. By default, the align attribute is &#039;&#039;&#039;Not Set&#039;&#039;&#039;.&lt;br /&gt;
#*&#039;&#039;&#039;Caption&#039;&#039;&#039;: Enables the caption which displays the Image Title below the image.&lt;br /&gt;
#*&#039;&#039;&#039;Caption Class&#039;&#039;&#039;: Applies the entered class to the &#039;&#039;figcaption&#039;&#039; element.&lt;br /&gt;
#Click the &#039;&#039;Insert&#039;&#039; button to insert the image. The Insert Image screen will close and the image will be displayed in the editor.&lt;br /&gt;
#*Click the &#039;&#039;Cancel&#039;&#039; button to leave the Insert Image screen.&lt;br /&gt;
&lt;br /&gt;
== Uploading images using the Insert Image screen ==&lt;br /&gt;
&lt;br /&gt;
You may also upload new images using the Upload section of the Insert Image screen.&lt;br /&gt;
#Click the Browse button to open a file browser.&lt;br /&gt;
#Select the image files you wish to upload. Click Open in the file browser to confirm the selection. Note: The file browser style and layout depends on the browser and operating system you are using.&lt;br /&gt;
#The selected file(s) appear at the bottom of the Insert Image screen. Click &#039;&#039;Start Upload&#039;&#039; to begin uploading files.&lt;br /&gt;
#*When the upload is complete a green notice will appear at the top of the screen.&lt;br /&gt;
#You may now select and insert the uploaded image as before.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Article Management]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/5/de&amp;diff=244960</id>
		<title>Translations:Adding an image to an article/5/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Adding_an_image_to_an_article/5/de&amp;diff=244960"/>
		<updated>2015-10-24T12:34:22Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Wenn Sie im Front-End eingeloggt sind, haben SIe entsprechende Berechtigungen und sehen den Artikel, den Sie bearbeiten wollen. Klicken SIe auf den &amp;quot;Bearbeiten- Button&amp;quot; in der Symbolleiste.&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Category:Installation_FAQ/de&amp;diff=244950</id>
		<title>Category:Installation FAQ/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Category:Installation_FAQ/de&amp;diff=244950"/>
		<updated>2015-10-24T12:28:19Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Kategorie: Installations-FAQ&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Pages of FAQs on Joomla! Installation&lt;br /&gt;
&lt;br /&gt;
[[Category:FAQ]]&lt;br /&gt;
[[Category:Installation]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Installation_FAQ/Page_display_title/de&amp;diff=244949</id>
		<title>Translations:Category:Installation FAQ/Page display title/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Installation_FAQ/Page_display_title/de&amp;diff=244949"/>
		<updated>2015-10-24T12:28:19Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;Kategorie: Installations-FAQ&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Kategorie: Installations-FAQ&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Category:Category_Management/de&amp;diff=244936</id>
		<title>Category:Category Management/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Category:Category_Management/de&amp;diff=244936"/>
		<updated>2015-10-24T11:52:10Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;{{SEITENNAME}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;{{:Category/de}}&lt;br /&gt;
[[Kategorie:Joomla! Website Management|{{SEITENNAME}}]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Category_Management/2/de&amp;diff=244935</id>
		<title>Translations:Category:Category Management/2/de</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:Category:Category_Management/2/de&amp;diff=244935"/>
		<updated>2015-10-24T11:52:10Z</updated>

		<summary type="html">&lt;p&gt;Ceus1984: Created page with &amp;quot;{{SEITENNAME}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Kategorie:Joomla! Website Management|{{SEITENNAME}}]]&lt;/div&gt;</summary>
		<author><name>Ceus1984</name></author>
	</entry>
</feed>