<?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=NunoLopes</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=NunoLopes"/>
	<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/Special:Contributions/NunoLopes"/>
	<updated>2026-05-18T21:30:21Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392889</id>
		<title>Creating a toolbar for your component</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392889"/>
		<updated>2017-04-09T21:58:23Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: &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;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Note: This applies when using the MVC structure.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
By default the Joomla Toolbar uses a Delete, Edit, New, Publish, Unpublish and Parameters buttons. To use them in your component you must write the following code in the view.html.php of your view file (below your display function).&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
      JToolBarHelper::title(string $title, string $icon);&lt;br /&gt;
      JToolBarHelper::deleteList(string  $msg, string  $task, string  $alt); // Will call the task/function $task in your controller&lt;br /&gt;
      JToolBarHelper::editList(string  $task, string  $alt); // Will call the task/function $task in your controller&lt;br /&gt;
      JToolBarHelper::addNew(string $task, string $alt, boolean  $check); // Will call the task/function $task in your controller&lt;br /&gt;
      JToolBarHelper::publish(string $task, string $alt, boolean $check); // Will call the task/function $task in your controller&lt;br /&gt;
      JToolBarHelper::unpublish(string $task, string $alt, boolean $check); // Will call the task/function $task in your controller&lt;br /&gt;
      JToolBarHelper::preferences(string $component, integer $height, integer $width, string $alt, string $path);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
string   $title  The title.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $msg    Postscript for the &#039;are you sure&#039; message.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $task   An override for the task: &#039;controller.function&#039;.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $alt    An override for the alt text.&amp;lt;/br&amp;gt;&lt;br /&gt;
boolean  $check  True if required to check that a standard list item is checked.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $component  The name of the component, eg, com_content.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
So (i.e.) your code would look like this:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
 class HelloViewHellos extends JView&lt;br /&gt;
 {&lt;br /&gt;
   function display($tpl = null) {&lt;br /&gt;
      JToolBarHelper::title( &#039;Hello Component&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList(&#039;hellos.delete&#039;);&lt;br /&gt;
      JToolBarHelper::editList(&#039;hellos.edit&#039;);&lt;br /&gt;
      JToolBarHelper::addNew(&#039;hellos.add&#039;);&lt;br /&gt;
      JToolBarHelper::publish();&lt;br /&gt;
      JToolBarHelper::unpublish();&lt;br /&gt;
      JToolBarHelper::preferences(&#039;com_hello&#039;, &#039;500&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
An example of creating a custom button in the admin list of records of your component {{JVer|3.x}} could be:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/views/hellos/view.html.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	public function display($tpl = null)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;state		= $this-&amp;gt;get(&#039;State&#039;);&lt;br /&gt;
		$this-&amp;gt;items		= $this-&amp;gt;get(&#039;Items&#039;);&lt;br /&gt;
		$this-&amp;gt;pagination	= $this-&amp;gt;get(&#039;Pagination&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Check for errors.&lt;br /&gt;
		if (count($errors = $this-&amp;gt;get(&#039;Errors&#039;))) {&lt;br /&gt;
			JError::raiseError(500, implode(&amp;quot;\n&amp;quot;, $errors));&lt;br /&gt;
			return false;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;addToolbar();&lt;br /&gt;
        &lt;br /&gt;
        	$this-&amp;gt;sidebar = JHtmlSidebar::render();&lt;br /&gt;
		parent::display($tpl);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	protected function addToolbar()&lt;br /&gt;
	{&lt;br /&gt;
		// assuming you have other toolbar buttons ...&lt;br /&gt;
&lt;br /&gt;
		JToolBarHelper::custom(&#039;hellos.extrahello&#039;, &#039;extrahello.png&#039;, &#039;extrahello_f2.png&#039;, &#039;Extra Hello&#039;, true);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/controllers/hellos.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello()&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// Get the input&lt;br /&gt;
		$input = JFactory::getApplication()-&amp;gt;input;&lt;br /&gt;
		$pks = $input-&amp;gt;post-&amp;gt;get(&#039;cid&#039;, array(), &#039;array&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Sanitize the input&lt;br /&gt;
		JArrayHelper::toInteger($pks);&lt;br /&gt;
&lt;br /&gt;
		// Get the model&lt;br /&gt;
		$model = $this-&amp;gt;getModel();&lt;br /&gt;
&lt;br /&gt;
		$return = $model-&amp;gt;extrahello($pks);&lt;br /&gt;
&lt;br /&gt;
		// Redirect to the list screen.&lt;br /&gt;
		$this-&amp;gt;setRedirect(JRoute::_(&#039;index.php?option=com_hello&amp;amp;view=hellos&#039;, false));&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/models/hello.php&amp;lt;/tt&amp;gt;	&amp;lt;translate&amp;gt;&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
(note: the singular model)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello($pks)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// perform whatever you want on each item checked in the list&lt;br /&gt;
&lt;br /&gt;
		return true;&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
Helpful explanation of JToolBarHelper/custom here&amp;lt;/translate&amp;gt; - http://docs.joomla.org/JToolBarHelper/custom&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
[[Category:Component Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392888</id>
		<title>Creating a toolbar for your component</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392888"/>
		<updated>2017-04-09T21:56:34Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: &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;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Note: This applies when using the MVC structure.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
By default the Joomla Toolbar uses a Delete, Edit, New, Publish, Unpublish and Parameters buttons. To use them in your component you must write the following code in the view.html.php of your view file (below your display function).&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
      JToolBarHelper::title(string $title, string $icon);&lt;br /&gt;
      JToolBarHelper::deleteList(string  $msg, string  $task, string  $alt); // Will call the task/function &amp;quot;remove&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::editList(string  $task, string  $alt); // Will call the task/function &amp;quot;edit&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::addNew(string $task, string $alt, boolean  $check); // Will call the task/function &amp;quot;add&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::publish(string $task, string $alt, boolean $check); // Will call the task/function &amp;quot;publish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::unpublish(string $task, string $alt, boolean $check); // Will call the task/function &amp;quot;unpublish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::preferences(string $component, integer $height, integer $width, string $alt, string $path);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
string   $title  The title.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $msg    Postscript for the &#039;are you sure&#039; message.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $task   An override for the task.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $alt    An override for the alt text.&amp;lt;/br&amp;gt;&lt;br /&gt;
boolean  $check  True if required to check that a standard list item is checked.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $component  The name of the component, eg, com_content.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
So (i.e.) your code would look like this:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
 class HelloViewHellos extends JView&lt;br /&gt;
 {&lt;br /&gt;
   function display($tpl = null) {&lt;br /&gt;
      JToolBarHelper::title( &#039;Hello Component&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList(&#039;hellos.delete&#039;);&lt;br /&gt;
      JToolBarHelper::editList(&#039;hellos.edit&#039;);&lt;br /&gt;
      JToolBarHelper::addNew(&#039;hellos.add&#039;);&lt;br /&gt;
      JToolBarHelper::publish();&lt;br /&gt;
      JToolBarHelper::unpublish();&lt;br /&gt;
      JToolBarHelper::preferences(&#039;com_hello&#039;, &#039;500&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
An example of creating a custom button in the admin list of records of your component {{JVer|3.x}} could be:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/views/hellos/view.html.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	public function display($tpl = null)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;state		= $this-&amp;gt;get(&#039;State&#039;);&lt;br /&gt;
		$this-&amp;gt;items		= $this-&amp;gt;get(&#039;Items&#039;);&lt;br /&gt;
		$this-&amp;gt;pagination	= $this-&amp;gt;get(&#039;Pagination&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Check for errors.&lt;br /&gt;
		if (count($errors = $this-&amp;gt;get(&#039;Errors&#039;))) {&lt;br /&gt;
			JError::raiseError(500, implode(&amp;quot;\n&amp;quot;, $errors));&lt;br /&gt;
			return false;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;addToolbar();&lt;br /&gt;
        &lt;br /&gt;
        	$this-&amp;gt;sidebar = JHtmlSidebar::render();&lt;br /&gt;
		parent::display($tpl);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	protected function addToolbar()&lt;br /&gt;
	{&lt;br /&gt;
		// assuming you have other toolbar buttons ...&lt;br /&gt;
&lt;br /&gt;
		JToolBarHelper::custom(&#039;hellos.extrahello&#039;, &#039;extrahello.png&#039;, &#039;extrahello_f2.png&#039;, &#039;Extra Hello&#039;, true);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/controllers/hellos.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello()&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// Get the input&lt;br /&gt;
		$input = JFactory::getApplication()-&amp;gt;input;&lt;br /&gt;
		$pks = $input-&amp;gt;post-&amp;gt;get(&#039;cid&#039;, array(), &#039;array&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Sanitize the input&lt;br /&gt;
		JArrayHelper::toInteger($pks);&lt;br /&gt;
&lt;br /&gt;
		// Get the model&lt;br /&gt;
		$model = $this-&amp;gt;getModel();&lt;br /&gt;
&lt;br /&gt;
		$return = $model-&amp;gt;extrahello($pks);&lt;br /&gt;
&lt;br /&gt;
		// Redirect to the list screen.&lt;br /&gt;
		$this-&amp;gt;setRedirect(JRoute::_(&#039;index.php?option=com_hello&amp;amp;view=hellos&#039;, false));&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/models/hello.php&amp;lt;/tt&amp;gt;	&amp;lt;translate&amp;gt;&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
(note: the singular model)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello($pks)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// perform whatever you want on each item checked in the list&lt;br /&gt;
&lt;br /&gt;
		return true;&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
Helpful explanation of JToolBarHelper/custom here&amp;lt;/translate&amp;gt; - http://docs.joomla.org/JToolBarHelper/custom&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
[[Category:Component Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392887</id>
		<title>Creating a toolbar for your component</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392887"/>
		<updated>2017-04-09T21:56:09Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: &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;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Note: This applies when using the MVC structure.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
By default the Joomla Toolbar uses a Delete, Edit, New, Publish, Unpublish and Parameters buttons. To use them in your component you must write the following code in the view.html.php of your view file (below your display function). Note that each functions will create a different type of button, but what they do must be in the first argument, the second is to declare the title of the button Ex:&amp;quot;addNew(&#039;controller.function&#039;,&#039;Title&#039;)&amp;quot;.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
      JToolBarHelper::title(string $title, string $icon);&lt;br /&gt;
      JToolBarHelper::deleteList(string  $msg, string  $task, string  $alt); // Will call the task/function &amp;quot;remove&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::editList(string  $task, string  $alt); // Will call the task/function &amp;quot;edit&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::addNew(string $task, string $alt, boolean  $check); // Will call the task/function &amp;quot;add&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::publish(string $task, string $alt, boolean $check); // Will call the task/function &amp;quot;publish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::unpublish(string $task, string $alt, boolean $check); // Will call the task/function &amp;quot;unpublish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::preferences(string $component, integer $height, integer $width, string $alt, string $path);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
string   $title  The title.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $msg    Postscript for the &#039;are you sure&#039; message.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $task   An override for the task.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $alt    An override for the alt text.&amp;lt;/br&amp;gt;&lt;br /&gt;
boolean  $check  True if required to check that a standard list item is checked.&amp;lt;/br&amp;gt;&lt;br /&gt;
string   $component  The name of the component, eg, com_content.&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
So (i.e.) your code would look like this:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
 class HelloViewHellos extends JView&lt;br /&gt;
 {&lt;br /&gt;
   function display($tpl = null) {&lt;br /&gt;
      JToolBarHelper::title( &#039;Hello Component&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList(&#039;hellos.delete&#039;);&lt;br /&gt;
      JToolBarHelper::editList(&#039;hellos.edit&#039;);&lt;br /&gt;
      JToolBarHelper::addNew(&#039;hellos.add&#039;);&lt;br /&gt;
      JToolBarHelper::publish();&lt;br /&gt;
      JToolBarHelper::unpublish();&lt;br /&gt;
      JToolBarHelper::preferences(&#039;com_hello&#039;, &#039;500&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
An example of creating a custom button in the admin list of records of your component {{JVer|3.x}} could be:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/views/hellos/view.html.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	public function display($tpl = null)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;state		= $this-&amp;gt;get(&#039;State&#039;);&lt;br /&gt;
		$this-&amp;gt;items		= $this-&amp;gt;get(&#039;Items&#039;);&lt;br /&gt;
		$this-&amp;gt;pagination	= $this-&amp;gt;get(&#039;Pagination&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Check for errors.&lt;br /&gt;
		if (count($errors = $this-&amp;gt;get(&#039;Errors&#039;))) {&lt;br /&gt;
			JError::raiseError(500, implode(&amp;quot;\n&amp;quot;, $errors));&lt;br /&gt;
			return false;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;addToolbar();&lt;br /&gt;
        &lt;br /&gt;
        	$this-&amp;gt;sidebar = JHtmlSidebar::render();&lt;br /&gt;
		parent::display($tpl);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	protected function addToolbar()&lt;br /&gt;
	{&lt;br /&gt;
		// assuming you have other toolbar buttons ...&lt;br /&gt;
&lt;br /&gt;
		JToolBarHelper::custom(&#039;hellos.extrahello&#039;, &#039;extrahello.png&#039;, &#039;extrahello_f2.png&#039;, &#039;Extra Hello&#039;, true);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/controllers/hellos.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello()&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// Get the input&lt;br /&gt;
		$input = JFactory::getApplication()-&amp;gt;input;&lt;br /&gt;
		$pks = $input-&amp;gt;post-&amp;gt;get(&#039;cid&#039;, array(), &#039;array&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Sanitize the input&lt;br /&gt;
		JArrayHelper::toInteger($pks);&lt;br /&gt;
&lt;br /&gt;
		// Get the model&lt;br /&gt;
		$model = $this-&amp;gt;getModel();&lt;br /&gt;
&lt;br /&gt;
		$return = $model-&amp;gt;extrahello($pks);&lt;br /&gt;
&lt;br /&gt;
		// Redirect to the list screen.&lt;br /&gt;
		$this-&amp;gt;setRedirect(JRoute::_(&#039;index.php?option=com_hello&amp;amp;view=hellos&#039;, false));&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/models/hello.php&amp;lt;/tt&amp;gt;	&amp;lt;translate&amp;gt;&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
(note: the singular model)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello($pks)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// perform whatever you want on each item checked in the list&lt;br /&gt;
&lt;br /&gt;
		return true;&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
Helpful explanation of JToolBarHelper/custom here&amp;lt;/translate&amp;gt; - http://docs.joomla.org/JToolBarHelper/custom&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
[[Category:Component Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392886</id>
		<title>Creating a toolbar for your component</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392886"/>
		<updated>2017-04-09T21:47:55Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: &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;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Note: This applies when using the MVC structure.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
By default the Joomla Toolbar uses a Delete, Edit, New, Publish, Unpublish and Parameters buttons. To use them in your component you must write the following code in the view.html.php of your view file (below your display function). Note that each functions will create a different type of button, but what they do must be in the first argument, the second is to declare the title of the button Ex:&amp;quot;addNew(&#039;controller.function&#039;,&#039;Title&#039;)&amp;quot;.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
      JToolBarHelper::title( &#039;your_component_view_page_title&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList(); // Will call the task/function &amp;quot;remove&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::editList(); // Will call the task/function &amp;quot;edit&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::addNew(string $task, string $alt, boolean  $check); // Will call the task/function &amp;quot;add&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::publish(); // Will call the task/function &amp;quot;publish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::unpublish(); // Will call the task/function &amp;quot;unpublish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::preferences(&#039;your_component_xml_file&#039;, &#039;height&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
string   $task   An override for the task.&lt;br /&gt;
string   $alt    An override for the alt text.&lt;br /&gt;
boolean  $check  True if required to check that a standard list item is checked.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
So (i.e.) your code would look like this:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
 class HelloViewHellos extends JView&lt;br /&gt;
 {&lt;br /&gt;
   function display($tpl = null) {&lt;br /&gt;
      JToolBarHelper::title( &#039;Hello Component&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList(&#039;hellos.delete&#039;);&lt;br /&gt;
      JToolBarHelper::editList(&#039;hellos.edit&#039;);&lt;br /&gt;
      JToolBarHelper::addNew(&#039;hellos.add&#039;);&lt;br /&gt;
      JToolBarHelper::publish(&#039;);&lt;br /&gt;
      JToolBarHelper::unpublish();&lt;br /&gt;
      JToolBarHelper::preferences(&#039;com_hello&#039;, &#039;500&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
An example of creating a custom button in the admin list of records of your component {{JVer|3.x}} could be:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/views/hellos/view.html.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	public function display($tpl = null)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;state		= $this-&amp;gt;get(&#039;State&#039;);&lt;br /&gt;
		$this-&amp;gt;items		= $this-&amp;gt;get(&#039;Items&#039;);&lt;br /&gt;
		$this-&amp;gt;pagination	= $this-&amp;gt;get(&#039;Pagination&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Check for errors.&lt;br /&gt;
		if (count($errors = $this-&amp;gt;get(&#039;Errors&#039;))) {&lt;br /&gt;
			JError::raiseError(500, implode(&amp;quot;\n&amp;quot;, $errors));&lt;br /&gt;
			return false;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;addToolbar();&lt;br /&gt;
        &lt;br /&gt;
        	$this-&amp;gt;sidebar = JHtmlSidebar::render();&lt;br /&gt;
		parent::display($tpl);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	protected function addToolbar()&lt;br /&gt;
	{&lt;br /&gt;
		// assuming you have other toolbar buttons ...&lt;br /&gt;
&lt;br /&gt;
		JToolBarHelper::custom(&#039;hellos.extrahello&#039;, &#039;extrahello.png&#039;, &#039;extrahello_f2.png&#039;, &#039;Extra Hello&#039;, true);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/controllers/hellos.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello()&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// Get the input&lt;br /&gt;
		$input = JFactory::getApplication()-&amp;gt;input;&lt;br /&gt;
		$pks = $input-&amp;gt;post-&amp;gt;get(&#039;cid&#039;, array(), &#039;array&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Sanitize the input&lt;br /&gt;
		JArrayHelper::toInteger($pks);&lt;br /&gt;
&lt;br /&gt;
		// Get the model&lt;br /&gt;
		$model = $this-&amp;gt;getModel();&lt;br /&gt;
&lt;br /&gt;
		$return = $model-&amp;gt;extrahello($pks);&lt;br /&gt;
&lt;br /&gt;
		// Redirect to the list screen.&lt;br /&gt;
		$this-&amp;gt;setRedirect(JRoute::_(&#039;index.php?option=com_hello&amp;amp;view=hellos&#039;, false));&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/models/hello.php&amp;lt;/tt&amp;gt;	&amp;lt;translate&amp;gt;&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
(note: the singular model)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello($pks)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// perform whatever you want on each item checked in the list&lt;br /&gt;
&lt;br /&gt;
		return true;&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
Helpful explanation of JToolBarHelper/custom here&amp;lt;/translate&amp;gt; - http://docs.joomla.org/JToolBarHelper/custom&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
[[Category:Component Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392858</id>
		<title>Creating a toolbar for your component</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Creating_a_toolbar_for_your_component&amp;diff=392858"/>
		<updated>2017-04-09T18:23:51Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Some functions were deprecated&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;
&amp;lt;noinclude&amp;gt;{{Joomla version|version=3.x}}&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:1--&amp;gt;&lt;br /&gt;
Note: This applies when using the MVC structure.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:2--&amp;gt;&lt;br /&gt;
By default the Joomla Toolbar uses a Delete, Edit, New, Publish, Unpublish and Parameters buttons. To use them in your component you must write the following code in the view.html.php of your view file (below your display function). Note that this functions will create a different type of button, but what they do must be in the arguments Ex:&amp;quot;controller.function&amp;quot;.&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
      JToolBarHelper::title( &#039;your_component_view_page_title&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList(string); // Will call the task/function &amp;quot;remove&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::editList(string); // Will call the task/function &amp;quot;edit&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::addNew(string); // Will call the task/function &amp;quot;add&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::publishList(); // Will call the task/function &amp;quot;publish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::unpublishList(); // Will call the task/function &amp;quot;unpublish&amp;quot; in your controller&lt;br /&gt;
      JToolBarHelper::preferences(&#039;your_component_xml_file&#039;, &#039;height&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:3--&amp;gt;&lt;br /&gt;
So (i.e.) your code would look like this:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
 class HelloViewHellos extends JView&lt;br /&gt;
 {&lt;br /&gt;
   function display($tpl = null) {&lt;br /&gt;
      JToolBarHelper::title( &#039;Hello Component&#039;, &#039;generic.png&#039; );&lt;br /&gt;
      JToolBarHelper::deleteList();&lt;br /&gt;
      JToolBarHelper::editListX();&lt;br /&gt;
      JToolBarHelper::addNewX();&lt;br /&gt;
      JToolBarHelper::publishList();&lt;br /&gt;
      JToolBarHelper::unpublishList();&lt;br /&gt;
      JToolBarHelper::preferences(&#039;com_hello&#039;, &#039;500&#039;);&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:4--&amp;gt;&lt;br /&gt;
An example of creating a custom button in the admin list of records of your component {{JVer|3.x}} could be:&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/views/hellos/view.html.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
	public function display($tpl = null)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;state		= $this-&amp;gt;get(&#039;State&#039;);&lt;br /&gt;
		$this-&amp;gt;items		= $this-&amp;gt;get(&#039;Items&#039;);&lt;br /&gt;
		$this-&amp;gt;pagination	= $this-&amp;gt;get(&#039;Pagination&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Check for errors.&lt;br /&gt;
		if (count($errors = $this-&amp;gt;get(&#039;Errors&#039;))) {&lt;br /&gt;
			JError::raiseError(500, implode(&amp;quot;\n&amp;quot;, $errors));&lt;br /&gt;
			return false;&lt;br /&gt;
		}&lt;br /&gt;
&lt;br /&gt;
		$this-&amp;gt;addToolbar();&lt;br /&gt;
        &lt;br /&gt;
        	$this-&amp;gt;sidebar = JHtmlSidebar::render();&lt;br /&gt;
		parent::display($tpl);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
	protected function addToolbar()&lt;br /&gt;
	{&lt;br /&gt;
		// assuming you have other toolbar buttons ...&lt;br /&gt;
&lt;br /&gt;
		JToolBarHelper::custom(&#039;hellos.extrahello&#039;, &#039;extrahello.png&#039;, &#039;extrahello_f2.png&#039;, &#039;Extra Hello&#039;, true);&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/controllers/hellos.php&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello()&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// Get the input&lt;br /&gt;
		$input = JFactory::getApplication()-&amp;gt;input;&lt;br /&gt;
		$pks = $input-&amp;gt;post-&amp;gt;get(&#039;cid&#039;, array(), &#039;array&#039;);&lt;br /&gt;
&lt;br /&gt;
		// Sanitize the input&lt;br /&gt;
		JArrayHelper::toInteger($pks);&lt;br /&gt;
&lt;br /&gt;
		// Get the model&lt;br /&gt;
		$model = $this-&amp;gt;getModel();&lt;br /&gt;
&lt;br /&gt;
		$return = $model-&amp;gt;extrahello($pks);&lt;br /&gt;
&lt;br /&gt;
		// Redirect to the list screen.&lt;br /&gt;
		$this-&amp;gt;setRedirect(JRoute::_(&#039;index.php?option=com_hello&amp;amp;view=hellos&#039;, false));&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;administrator/models/hello.php&amp;lt;/tt&amp;gt;	&amp;lt;translate&amp;gt;&amp;lt;!--T:5--&amp;gt;&lt;br /&gt;
(note: the singular model)&amp;lt;/translate&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;php&amp;quot;&amp;gt;&lt;br /&gt;
    public function extrahello($pks)&lt;br /&gt;
	{&lt;br /&gt;
&lt;br /&gt;
		// perform whatever you want on each item checked in the list&lt;br /&gt;
&lt;br /&gt;
		return true;&lt;br /&gt;
&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;translate&amp;gt;&amp;lt;!--T:6--&amp;gt;&lt;br /&gt;
Helpful explanation of JToolBarHelper/custom here&amp;lt;/translate&amp;gt; - http://docs.joomla.org/JToolBarHelper/custom&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;translate&amp;gt;&lt;br /&gt;
&amp;lt;!--T:7--&amp;gt;&lt;br /&gt;
[[Category:Component Development]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
&amp;lt;/translate&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392669</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392669"/>
		<updated>2017-04-08T23:35:31Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Acima dos títulos das colunas / debaixo da barra de ferramentas na direita, há 2 dropdowns onde se pode carregar: * Ordenar a tabela: (por defeito em ascendente) e * Um nume...&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A vista [[S:MyLanguage/Help36:Users_Access_Levels| Nivel de Acesso]] para este item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
O id do item.&lt;br /&gt;
&lt;br /&gt;
===Filtrar e Organizar===&lt;br /&gt;
====Ordenar com os filtros das colunas====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Acima dos títulos das colunas / debaixo da barra de ferramentas na direita, há 2 dropdowns onde se pode carregar:&lt;br /&gt;
* Ordenar a tabela: (por defeito em ascendente) e&lt;br /&gt;
* Um numero (por defeito a 25) para mostrar. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/27/pt&amp;diff=392668</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/27/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/27/pt&amp;diff=392668"/>
		<updated>2017-04-08T23:35:31Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Acima dos títulos das colunas / debaixo da barra de ferramentas na direita, há 2 dropdowns onde se pode carregar: * Ordenar a tabela: (por defeito em ascendente) e * Um nume...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Acima dos títulos das colunas / debaixo da barra de ferramentas na direita, há 2 dropdowns onde se pode carregar:&lt;br /&gt;
* Ordenar a tabela: (por defeito em ascendente) e&lt;br /&gt;
* Um numero (por defeito a 25) para mostrar.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392667</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392667"/>
		<updated>2017-04-08T23:33:29Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;====Ordenar com os filtros das colunas====&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A vista [[S:MyLanguage/Help36:Users_Access_Levels| Nivel de Acesso]] para este item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
O id do item.&lt;br /&gt;
&lt;br /&gt;
===Filtrar e Organizar===&lt;br /&gt;
====Ordenar com os filtros das colunas====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/25/pt&amp;diff=392666</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/25/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/25/pt&amp;diff=392666"/>
		<updated>2017-04-08T23:33:29Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;====Ordenar com os filtros das colunas====&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;====Ordenar com os filtros das colunas====&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392665</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392665"/>
		<updated>2017-04-08T23:33:13Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Filtrar e Organizar===&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A vista [[S:MyLanguage/Help36:Users_Access_Levels| Nivel de Acesso]] para este item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
O id do item.&lt;br /&gt;
&lt;br /&gt;
===Filtrar e Organizar===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/24/pt&amp;diff=392664</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/24/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/24/pt&amp;diff=392664"/>
		<updated>2017-04-08T23:33:13Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Filtrar e Organizar===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Filtrar e Organizar===&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392663</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392663"/>
		<updated>2017-04-08T23:33:02Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;ID&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; O id do item.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A vista [[S:MyLanguage/Help36:Users_Access_Levels| Nivel de Acesso]] para este item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
O id do item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/23/pt&amp;diff=392662</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/23/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/23/pt&amp;diff=392662"/>
		<updated>2017-04-08T23:33:02Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;ID&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; O id do item.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
O id do item.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392661</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392661"/>
		<updated>2017-04-08T23:32:50Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Access&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; A vista  Nivel de Acesso para este item.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A vista [[S:MyLanguage/Help36:Users_Access_Levels| Nivel de Acesso]] para este item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/22/pt&amp;diff=392660</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/22/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/22/pt&amp;diff=392660"/>
		<updated>2017-04-08T23:32:50Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Access&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; A vista  Nivel de Acesso para este item.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A vista [[S:MyLanguage/Help36:Users_Access_Levels| Nivel de Acesso]] para este item.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392659</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392659"/>
		<updated>2017-04-08T23:32:25Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Associations&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; As linguagens associados para este item. A cor do icon designa o estado da associação. * Cinzento = Já está associado  * Laranja = Ainda não  est...&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/21/pt&amp;diff=392658</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/21/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/21/pt&amp;diff=392658"/>
		<updated>2017-04-08T23:32:25Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Associations&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; As linguagens associados para este item. A cor do icon designa o estado da associação. * Cinzento = Já está associado  * Laranja = Ainda não  est...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
As linguagens associados para este item. A cor do icon designa o estado da associação.&lt;br /&gt;
* Cinzento = Já está associado &lt;br /&gt;
* Laranja = Ainda não  está associado a essa linguagem ainda.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392657</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392657"/>
		<updated>2017-04-08T23:30:58Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Linguagem&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; A linguagem do item.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/20/pt&amp;diff=392656</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/20/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/20/pt&amp;diff=392656"/>
		<updated>2017-04-08T23:30:57Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Linguagem&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; A linguagem do item.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Linguagem&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
A linguagem do item.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392655</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392655"/>
		<updated>2017-04-08T23:30:36Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Titulo&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; Nome de um item.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/19/pt&amp;diff=392654</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/19/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/19/pt&amp;diff=392654"/>
		<updated>2017-04-08T23:30:36Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Titulo&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; Nome de um item.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Titulo&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Nome de um item.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392653</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392653"/>
		<updated>2017-04-08T23:30:19Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Estado&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; Estado de um item, Publicado ou não publicado.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/18/pt&amp;diff=392652</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/18/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/18/pt&amp;diff=392652"/>
		<updated>2017-04-08T23:30:19Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Estado&amp;#039;&amp;#039;&amp;#039;&amp;lt;br /&amp;gt; Estado de um item, Publicado ou não publicado.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Estado&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Estado de um item, Publicado ou não publicado.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392651</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392651"/>
		<updated>2017-04-08T23:28:55Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Ao seleccionar um item, irás ver as seguintes colunas:&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Ao seleccionar um item, irás ver as seguintes colunas:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/17/pt&amp;diff=392650</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/17/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/17/pt&amp;diff=392650"/>
		<updated>2017-04-08T23:28:55Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Ao seleccionar um item, irás ver as seguintes colunas:&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ao seleccionar um item, irás ver as seguintes colunas:&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392649</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392649"/>
		<updated>2017-04-08T23:28:41Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Títulos das Colunas===&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Títulos das Colunas===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/15/pt&amp;diff=392648</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/15/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/15/pt&amp;diff=392648"/>
		<updated>2017-04-08T23:28:41Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Títulos das Colunas===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Títulos das Colunas===&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392647</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392647"/>
		<updated>2017-04-08T23:27:50Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Artigos em Ingles selecionados&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Artigos em Ingles selecionados&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/13/pt&amp;diff=392646</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/13/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/13/pt&amp;diff=392646"/>
		<updated>2017-04-08T23:27:50Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Artigos em Ingles selecionados&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Artigos em Ingles selecionados&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392645</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392645"/>
		<updated>2017-04-08T23:27:21Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Nenhum item foi selecionado.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
Nenhum item foi selecionado. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/11/pt&amp;diff=392644</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/11/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/11/pt&amp;diff=392644"/>
		<updated>2017-04-08T23:27:21Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Nenhum item foi selecionado.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Nenhum item foi selecionado.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392643</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392643"/>
		<updated>2017-04-08T23:27:09Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Capturas de Ecrã===&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Capturas de Ecrã===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/10/pt&amp;diff=392642</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/10/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/10/pt&amp;diff=392642"/>
		<updated>2017-04-08T23:27:09Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Capturas de Ecrã===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Capturas de Ecrã===&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392641</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392641"/>
		<updated>2017-04-08T23:27:01Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação. Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Screenshots===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/8/pt&amp;diff=392640</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/8/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/8/pt&amp;diff=392640"/>
		<updated>2017-04-08T23:27:01Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação. Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Seleciona um &amp;quot;Item Type&amp;quot; e um &amp;quot;Idioma&amp;quot; para ver a associação.&lt;br /&gt;
Ver a secção &amp;quot;Filtros de Coluna&amp;quot; para mais informação sobre esta secção.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392639</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392639"/>
		<updated>2017-04-08T23:18:17Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Clica em &amp;#039;&amp;#039;&amp;#039;Componentes{{rarr}}Multilingual Associations&amp;#039;&amp;#039;&amp;#039;&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Please select an &#039;&#039;Item Type&#039;&#039; and a &#039;&#039;reference language&#039;&#039; to view the associations. See section &#039;&#039;Column Filters&#039;&#039; for more information about selection.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Screenshots===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/6/pt&amp;diff=392638</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/6/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/6/pt&amp;diff=392638"/>
		<updated>2017-04-08T23:18:16Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Clica em &amp;#039;&amp;#039;&amp;#039;Componentes{{rarr}}Multilingual Associations&amp;#039;&amp;#039;&amp;#039;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Clica em &#039;&#039;&#039;Componentes{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392637</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392637"/>
		<updated>2017-04-08T23:18:04Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Podes abrir o gestor de Multilingual Associations na parte administrativa.&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Click &#039;&#039;&#039;Components{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Please select an &#039;&#039;Item Type&#039;&#039; and a &#039;&#039;reference language&#039;&#039; to view the associations. See section &#039;&#039;Column Filters&#039;&#039; for more information about selection.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Screenshots===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/5/pt&amp;diff=392636</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/5/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/5/pt&amp;diff=392636"/>
		<updated>2017-04-08T23:18:04Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Podes abrir o gestor de Multilingual Associations na parte administrativa.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Podes abrir o gestor de Multilingual Associations na parte administrativa.&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392635</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392635"/>
		<updated>2017-04-08T23:17:41Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Como aceder===&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===Como aceder===&lt;br /&gt;
You can open the Multilingual Associations Manager in the backend.&lt;br /&gt;
&lt;br /&gt;
Click &#039;&#039;&#039;Components{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Please select an &#039;&#039;Item Type&#039;&#039; and a &#039;&#039;reference language&#039;&#039; to view the associations. See section &#039;&#039;Column Filters&#039;&#039; for more information about selection.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Screenshots===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/4/pt&amp;diff=392634</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/4/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/4/pt&amp;diff=392634"/>
		<updated>2017-04-08T23:17:41Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;===Como aceder===&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Como aceder===&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392633</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392633"/>
		<updated>2017-04-08T23:17:33Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;==Com ver a View List==&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Com ver a View List==&lt;br /&gt;
===How to access===&lt;br /&gt;
You can open the Multilingual Associations Manager in the backend.&lt;br /&gt;
&lt;br /&gt;
Click &#039;&#039;&#039;Components{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Please select an &#039;&#039;Item Type&#039;&#039; and a &#039;&#039;reference language&#039;&#039; to view the associations. See section &#039;&#039;Column Filters&#039;&#039; for more information about selection.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Screenshots===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/3/pt&amp;diff=392632</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/3/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/3/pt&amp;diff=392632"/>
		<updated>2017-04-08T23:17:33Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;==Com ver a View List==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Com ver a View List==&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392631</id>
		<title>J3.x:Multilingual Associations/ListView/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/ListView/pt&amp;diff=392631"/>
		<updated>2017-04-08T23:16:31Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Vista de Lista&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=list|title=Vista de Lista}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==First you see the list view==&lt;br /&gt;
===How to access===&lt;br /&gt;
You can open the Multilingual Associations Manager in the backend.&lt;br /&gt;
&lt;br /&gt;
Click &#039;&#039;&#039;Components{{rarr}}Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Please select an &#039;&#039;Item Type&#039;&#039; and a &#039;&#039;reference language&#039;&#039; to view the associations. See section &#039;&#039;Column Filters&#039;&#039; for more information about selection.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Screenshots===&lt;br /&gt;
&lt;br /&gt;
No item is selected. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_5-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Articles in English selected&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_6-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
===Column Headers===&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_7-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
By selecting an item, you will see the following columns:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Status of the item, Published or Unpublished.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Title&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The name of the item.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Language&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Item language.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The associated languages for this item. The colour of the icon is standing for the association state.&lt;br /&gt;
* Gray = already associated item and &lt;br /&gt;
* Orange = no associations for that language yet.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Access&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The viewing [[S:MyLanguage/Help36:Users_Access_Levels| Access Level]] for this item. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;ID&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
The Id of this item.&lt;br /&gt;
&lt;br /&gt;
===Filtering and Sorting===&lt;br /&gt;
====Sorting with Column Filters====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_8-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Above the column headers / below the toolbar on the right, there are two drop down input fields: &lt;br /&gt;
* Sort Table by: (preset to Ordering ascending) and &lt;br /&gt;
* A number (preset to 25) to display. &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Sort Table by&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
These column sorting input fields display the current method of sorting applied to the list. Use the drop down field choices and click the column heading name. Alternatively, click on the column heading to sort the list by that column’s value. This will also change the value in the drop field to match with the column header name. The list will then be sorted in order by that column and a sort icon (up or down arrow) will show next to the column name. Click a second time to reverse the sort, which will change the corresponding drop field.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Number&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
If there are more items than you choose in the drop down with the number, you can use the page navigation buttons located at the bottom of the page (Start, Prev, Next, End, and page numbers) to navigate between pages.&lt;br /&gt;
&lt;br /&gt;
====List Filters====&lt;br /&gt;
The List Filters above the column headers / below the toolbar on the left side. These filters are a series of controls that let you limit what items are displayed in the manager screen list. More than one filter may be entered. In this case, only items that meet all of the filter conditions will show on the list.&lt;br /&gt;
&lt;br /&gt;
To start filtering items, you must select an item type (Articles, Contacts, News feeds, etc.) and a Language.&lt;br /&gt;
&lt;br /&gt;
After that, several filters can be applied by clicking the search tools.&lt;br /&gt;
&lt;br /&gt;
====Search Tools====&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_9-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Published Status&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items with the selected published status.&amp;lt;br /&amp;gt;&lt;br /&gt;
* Select Status&amp;lt;br /&amp;gt;Shows items that are Published and Unpublished. Does not show items that are Trashed or Archived.&lt;br /&gt;
* Published&amp;lt;br /&amp;gt;Shows only items that are Published.&lt;br /&gt;
* Unpublished&amp;lt;br /&amp;gt;Shows only items that are Unpublished.&lt;br /&gt;
* Archived&amp;lt;br /&amp;gt;Shows only items that are Archived.&lt;br /&gt;
* Trashed&amp;lt;br /&amp;gt;Shows only items that are Trashed. &lt;br /&gt;
* All &amp;lt;br /&amp;gt;Shows all items regardless of published status.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Category&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items assigned to a specific category. The list box will display the categories defined for your site.&lt;br /&gt;
&lt;br /&gt;
Select Category: &lt;br /&gt;
* Display items assigned to any category.&lt;br /&gt;
* Display items assigned only to this category.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Viewing Access Level&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items that have a specified viewing access level. The list box will display the access levels defined for your site, similar to the example below.&lt;br /&gt;
&lt;br /&gt;
Select Accessː&lt;br /&gt;
* Display items with any viewing access level.&lt;br /&gt;
* Display items only with this viewing access level.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Filter by Max Levels (Category Level)&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Allows you to display only items whose category is at or above the specified level in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
Select Max Levels:&lt;br /&gt;
* Display all items regardless of level of their assigned category&lt;br /&gt;
* 1: Only display items whose category is at the top level in the category hierarchy &lt;br /&gt;
* 2-10: Only display items whose category is in the top 2-10 levels in the category hierarchy.&lt;br /&gt;
&lt;br /&gt;
====Search text field====&lt;br /&gt;
Use the text field to filter by partial title, enter part of the title and click Search.&lt;br /&gt;
&lt;br /&gt;
===Toolbar===&lt;br /&gt;
At the top of the site you will see the toolbar, it has two states.&lt;br /&gt;
&lt;br /&gt;
* At least one item is in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_10-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
* No match - No item in the list &amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete All Associations&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations in the database for all items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Delete Orphans&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Deletes all associations for orphan items, for example for items that are associated to deleted items.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Options&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Options icon in the toolbar so that you can manage the ACL for this component.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Help&#039;&#039;&#039;&amp;lt;br /&amp;gt;&lt;br /&gt;
Clicking on the Help icon in the tool bar to see the related help page.&lt;br /&gt;
&lt;br /&gt;
===Check in Items===&lt;br /&gt;
If you see an item, that is checked out, you can not manage it within the Multilingual Associations Manager. You have to check it in in its original manager. For exampleː For an article, you can checkin in the [[S:MyLanguage/Help36:Content_Article_Manager#Details|Article manager]]. &lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_ListView_11a-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/No_Multilingual_Associations̞|Prev: No Multilingual Associations̞|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/SidebySide|Next: Side by Side|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/1/pt&amp;diff=392630</id>
		<title>Translations:J3.x:Multilingual Associations/ListView/1/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/ListView/1/pt&amp;diff=392630"/>
		<updated>2017-04-08T23:16:31Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Vista de Lista&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vista de Lista&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/pt&amp;diff=392629</id>
		<title>J3.x:Multilingual Associations/No Multilingual Associations̞/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/pt&amp;diff=392629"/>
		<updated>2017-04-08T23:11:34Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Sem Associações Multilingues/Multi-Idioma&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=language|title=Sem Associações Multilingues/Multi-Idioma}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Como aceder==&lt;br /&gt;
Podes abrir o gestor de Associações Multilingues/Multi-Idioma na parte de administração. &amp;lt;br /&amp;gt;&lt;br /&gt;
Clica em &#039;&#039;&#039;Components {{rarr}} Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Se ainda não estiver configurado um  [[S:MyLanguage/J3.x:Setup_a_Multilingual_Site|multilingual site]], irá aparecer uma mensagem a dizer que o componente Multilingual Associations não pode ser usado se o site não estiver configurado para multi-idiomas e/ou se os Items Associations não estão ativados no plugin Filtro de Linguagens.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_1-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Como instalar um site multi-idiomas==&lt;br /&gt;
Pode escolher-se a opção de instalar um site multi-idiomas enquanto se instala o Joomla! Website.&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_2-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Depois da instalação, pode-se encontrar mais informações em como instalar um site multi-idiomas nesta documentação. Por favor navegue até [[S:MyLanguage/J3.x:Setup_a_Multilingual_Site| Tutorial Site Multi-Idiomas]].&lt;br /&gt;
&lt;br /&gt;
==Como deve funcionar==&lt;br /&gt;
Se o site estiver pronto para multi-idiomas, pode-se abrir o Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clicar &#039;&#039;&#039;Componentes {{rarr}} Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Agora poderá ver o gestor do componente Multilingual Associations como mostra a imagem.&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations|Atrás: Introdução|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/ListView|A seguir: List View|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/1/pt&amp;diff=392628</id>
		<title>Translations:J3.x:Multilingual Associations/No Multilingual Associations̞/1/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/1/pt&amp;diff=392628"/>
		<updated>2017-04-08T23:11:34Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;Sem Associações Multilingues/Multi-Idioma&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Sem Associações Multilingues/Multi-Idioma&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/pt&amp;diff=392627</id>
		<title>J3.x:Multilingual Associations/No Multilingual Associations̞/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/pt&amp;diff=392627"/>
		<updated>2017-04-08T23:11:11Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;A seguir: List View&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;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=language|title=No Multilingual Associations}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Como aceder==&lt;br /&gt;
Podes abrir o gestor de Associações Multilingues/Multi-Idioma na parte de administração. &amp;lt;br /&amp;gt;&lt;br /&gt;
Clica em &#039;&#039;&#039;Components {{rarr}} Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Se ainda não estiver configurado um  [[S:MyLanguage/J3.x:Setup_a_Multilingual_Site|multilingual site]], irá aparecer uma mensagem a dizer que o componente Multilingual Associations não pode ser usado se o site não estiver configurado para multi-idiomas e/ou se os Items Associations não estão ativados no plugin Filtro de Linguagens.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_1-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Como instalar um site multi-idiomas==&lt;br /&gt;
Pode escolher-se a opção de instalar um site multi-idiomas enquanto se instala o Joomla! Website.&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_2-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Depois da instalação, pode-se encontrar mais informações em como instalar um site multi-idiomas nesta documentação. Por favor navegue até [[S:MyLanguage/J3.x:Setup_a_Multilingual_Site| Tutorial Site Multi-Idiomas]].&lt;br /&gt;
&lt;br /&gt;
==Como deve funcionar==&lt;br /&gt;
Se o site estiver pronto para multi-idiomas, pode-se abrir o Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clicar &#039;&#039;&#039;Componentes {{rarr}} Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Agora poderá ver o gestor do componente Multilingual Associations como mostra a imagem.&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations|Atrás: Introdução|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/ListView|A seguir: List View|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/19/pt&amp;diff=392626</id>
		<title>Translations:J3.x:Multilingual Associations/No Multilingual Associations̞/19/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=Translations:J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/19/pt&amp;diff=392626"/>
		<updated>2017-04-08T23:11:10Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: Created page with &amp;quot;A seguir: List View&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A seguir: List View&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
	<entry>
		<id>https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/pt&amp;diff=392625</id>
		<title>J3.x:Multilingual Associations/No Multilingual Associations̞/pt</title>
		<link rel="alternate" type="text/html" href="https://docs.sandbox.joomla.org/index.php?title=J3.x:Multilingual_Associations/No_Multilingual_Associations%CC%9E/pt&amp;diff=392625"/>
		<updated>2017-04-08T23:10:44Z</updated>

		<summary type="html">&lt;p&gt;NunoLopes: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;languages /&amp;gt;&amp;lt;/noinclude&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
{{section portal heading|icon=language|title=No Multilingual Associations}}&lt;br /&gt;
{{-}}&lt;br /&gt;
{{J3.x:Multilingual_Associations/TOC/en}}&lt;br /&gt;
&lt;br /&gt;
==Como aceder==&lt;br /&gt;
Podes abrir o gestor de Associações Multilingues/Multi-Idioma na parte de administração. &amp;lt;br /&amp;gt;&lt;br /&gt;
Clica em &#039;&#039;&#039;Components {{rarr}} Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Se ainda não estiver configurado um  [[S:MyLanguage/J3.x:Setup_a_Multilingual_Site|multilingual site]], irá aparecer uma mensagem a dizer que o componente Multilingual Associations não pode ser usado se o site não estiver configurado para multi-idiomas e/ou se os Items Associations não estão ativados no plugin Filtro de Linguagens.&lt;br /&gt;
&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_1-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Como instalar um site multi-idiomas==&lt;br /&gt;
Pode escolher-se a opção de instalar um site multi-idiomas enquanto se instala o Joomla! Website.&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_2-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
Depois da instalação, pode-se encontrar mais informações em como instalar um site multi-idiomas nesta documentação. Por favor navegue até [[S:MyLanguage/J3.x:Setup_a_Multilingual_Site| Tutorial Site Multi-Idiomas]].&lt;br /&gt;
&lt;br /&gt;
==Como deve funcionar==&lt;br /&gt;
Se o site estiver pronto para multi-idiomas, pode-se abrir o Multilingual Associations na parte administrativa.&lt;br /&gt;
&lt;br /&gt;
Clicar &#039;&#039;&#039;Componentes {{rarr}} Multilingual Associations&#039;&#039;&#039;&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_3-en.png|800px]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Agora poderá ver o gestor do componente Multilingual Associations como mostra a imagem.&lt;br /&gt;
[[File:Multilingual_Associations_No_Multilingual_Associations_4-en.png|800px]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;row&amp;quot;&amp;gt; &lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations|Atrás: Introdução|class=expand success}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;large-6 columns&amp;quot;&amp;gt;{{Basic button|S:MyLanguage/J3.x:Multilingual_Associations/ListView|Next: List View|class=expand}}&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Beginners]]&lt;br /&gt;
[[Category:Joomla! 3.x]]&lt;br /&gt;
[[Category:Joomla! 3.7]]&lt;br /&gt;
[[Category:Language Management]]&lt;br /&gt;
[[Category:Languages]]&lt;br /&gt;
[[Category:Joomla! Website Management]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>NunoLopes</name></author>
	</entry>
</feed>