Uzbek перевод

ПроектРелизКонтекстСтатусОтправил(а)СодержитЛимит
Исходный текстПереводы
Term image
The image associated with a taxonomy term.
Link this image to its term page
Default
Олдиндан белгиланган
ImageCache preset
<h3>Introduction</h3>разрыв строки
<p>The taxonomy_image module allows site administrators to associate images with category terms. Once defined, this association allows Drupal sites to display images with site content. For example, the taxonomy_image module might be used to display a penguin with content about Linux, and a cheeseburger with content about junk food.</p>разрыв строки
<p>The module allows both a one-to-one term-to-image relationship, and a many-to-one terms-to-image relationship.</p>разрыв строки
<p>The taxonomy_image module requires that the taxonomy module also be enabled. The Categories module is not currently supported.</p>разрыв строки
<h3>Configuration</h3>разрыв строки
<h4>Uploading images</h4>разрыв строки
<p>With the taxonomy_image module enabled, images can be uploaded and associated with category terms at "Administer >> Content management >> Taxonomy". On that page you will find links to tables containing all your vocabularies and terms. Next to each term is a link titled "edit term" which you can click to upload an image for that term. After clicking that link, you will be you will find the image management section at the bottom of that page. Using the "browse" button you can select your image then click "Save".разрыв строки
<p>Continue this process to upload appropriate images for your category terms. Note that by default images will be displayed at the size they were uploaded. Alternatively, you can go to "Administer >> Site configuration >> Taxonomy_image" to set the display height and/or width of all taxonomy images.</p>разрыв строки
<h4>Permissions</h4>разрыв строки
<p>For your users to be able to view the images you have uploaded, you will need to give them the necessary permissions. Only users with the "access taxonomy images" permission will see images. If you wish to give your users the ability to disable the images, also give them the "can disable taxonomy images" permission. A third permission, "administer taxonomy images", controls which users are allowed to configure taxonomy images.</p>разрыв строки
<h4>Recursive image display</h4>разрыв строки
<p>Taxonomy is a very powerful tool. One of its features is providing the ability to create hierarchical vocabularies, with which you can build a tree of terms. It is possible that an entire tree of terms, or even just a branch of terms, are all about a similar subject and should all be associated with the same image. By going to "Administer >> Site configuration >> Taxonomy_image", you can enable "Recursive image display". With this option enabled, you only need to configure an image for the parent term, and all children will automatically inheret the same image (unless they are manually configured to display an alternate image).</p>разрыв строки
<h3>Displaying images</h3>разрыв строки
<p>To actually display images, you will have to make a call to taxonomy_image_display(). [There are some included add-on modules that will do this for you.] When calling this function, you will need to pass in the taxonomy term for which an image should be displayed. For example, from your theme's "_node" function you might do the following:разрыв строки
<pre>разрыв строки
foreach (taxonomy_node_get_terms($node->nid) as $term) {разрыв строки
if ($image = taxonomy_image_display($term->tid)) {разрыв строки
$output .= \"$image\";разрыв строки
}разрыв строки
</pre>разрыв строки
<p>Taxonomy_image_display uses "theme('image',..." so you may override the display in your theme layer.</p>разрыв строки
Use external image
Enter a path to an external image. Note this image will be copied to this site.
or:
The URL (@url) you entered does not appear to be valid.