Uzbek перевод

ПроектКонтекстСтатусОтправил(а)СодержитЛимит
Исходный текстПереводы
Exclude search in attachments
!Instructionsразрыв строки
<p>When formatting an email message with a given <code>$module</code> and <code>$key</code>, <a href="https://www.drupal.org/project/htmlmail">HTML Mail</a> will use the first template file it finds from the following list:</p>разрыв строки
<ol style="list-style-type: decimal;">разрыв строки
<li><code>htmlmail--$module--$key.tpl.php</code></li>разрыв строки
<li><code>htmlmail--$module.tpl.php</code></li>разрыв строки
<li><code>htmlmail.tpl.php</code></li>разрыв строки
</ol>разрыв строки
<p>For each filename, <a href="https://www.drupal.org/project/htmlmail">HTML Mail</a> looks first in the chosen <em>Email theme</em> directory, then in its own module directory, before proceeding to the next filename.</p>разрыв строки
<p>For example, if <code>example_module</code> sends mail with:</p>разрыв строки
<pre>разрыв строки
<code>drupal_mail("example_module", "outgoing_message" ...)разрыв строки
</code>разрыв строки
</pre>разрыв строки
<p>the possible template file names would be:</p>разрыв строки
<ol style="list-style-type: decimal;">разрыв строки
<li><code>htmlmail--example_module--outgoing_message.tpl.php</code></li>разрыв строки
<li><code>htmlmail--example_module.tpl.php</code></li>разрыв строки
<li><code>htmlmail.tpl.php</code></li>разрыв строки
</ol>разрыв строки
<p>Template files are cached, so remember to clear the cache by visiting <u>admin/config/development/performance</u> after changing any <code>.tpl.php</code> files.</p>разрыв строки
<p>The following variables available in this template:</p>разрыв строки
<dl>разрыв строки
<dt><strong><code>$body</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The message body text.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$module</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The first argument to <a href="https://api.drupal.org/api/drupal/includes--mail.inc/function/drupal_mail/7"><code>drupal_mail()</code></a>, which is, by convention, the machine-readable name of the sending module.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$key</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The second argument to <a href="https://api.drupal.org/api/drupal/includes--mail.inc/function/drupal_mail/7"><code>drupal_mail()</code></a>, which should give some indication of why this email is being sent.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$message_id</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The email message id, which should be equal to <code>"{$module}_{$key}"</code>.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$headers</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>An array of email <code>(name =&gt; value)</code> pairs.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$from</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The configured sender address.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$to</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The recipient email address.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$subject</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The message subject line.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$body</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The formatted message body.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$language</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The language code for this message.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$params</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>Any module-specific parameters.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$template_name</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The basename of the active template.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$template_path</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The relative path to the template directory.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$template_url</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The absolute URL to the template directory.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$theme</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The name of the <em>Email theme</em> used to hold template files. If the <a href="https://www.drupal.org/project/echo">Echo</a> module is enabled this theme will also be used to transform the message body into a fully-themed webpage.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$theme_path</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The relative path to the selected <em>Email theme</em> directory.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$theme_url</code></strong></dt>разрыв строки
<dd>разрыв строки
<p>The absolute URL to the selected <em>Email theme</em> directory.</p>разрыв строки
</dd>разрыв строки
<dt><strong><code>$debug</code></strong></dt>разрыв строки
<dd>разрыв строки
<p><code>TRUE</code> to add some useful debugging info to the bottom of the message.</p>разрыв строки
</dd>разрыв строки
</dl>разрыв строки
<p>Other modules may also add or modify theme variables by implementing a <code>MODULENAME_preprocess_htmlmail(&amp;$variables)</code> <a href="https://api.drupal.org/api/drupal/modules--system--theme.api.php/function/hook_preprocess_HOOK/7">hook function</a>.</p>
Provide simple plain/text alternative of the HTML mail.
This may increase the quality of your outgoing emails for the spam filters. If you need image handling and more sophisticated plain text version, check !mailmime.
Select the MailSystemInterface implementation to be tested.
The %toemail function did not return any text. Please report this error to the %mailmime issue queue.
Password entry required
Fields hidden
Account fields hidden
Confirmation message for new users