Merhabalar, sitemde hesap oluşturma kısmında (index.php?route=account/register) parola kısmında password yazıyor. Opencart türkçe dil paketini yüklememe rağmen düzelmedi. Sorun sizce nerede ?

Sorunun ekran alıntısı ;



public_html/catalog/language/tr-tr/account/register.php içeriği ;
/* Turkceye Ceviren eka7a - http://e-piksel.com */

// Heading
$_['heading_title'] = 'Hesap Oluştur';

// Text
$_['text_account'] = 'Hesabım';
$_['text_register'] = 'Kayıt Ol';
$_['text_account_already'] = 'Eğer daha önce kayıt olduysanız, lütfen oturum açma sayfasına gidiniz.';
$_['text_your_details'] = 'Üyelik Bilgileri';
$_['text_newsletter'] = 'Bülten Aboneliği';
$_['text_your_password'] = 'Parolanız';
$_['text_agree'] = '%s\'ni okudum ve kabul ediyorum.';

// Entry
$_['entry_customer_group'] = 'Müşteri Grubu';
$_['entry_firstname'] = 'Adınız';
$_['entry_lastname'] = 'Soyadınız';
$_['entry_email'] = 'E-Posta';
$_['entry_telephone'] = 'Telefon';
$_['entry_newsletter'] = 'Bülten Aboneliği';
$_['entry_password'] = 'Parola';
$_['entry_confirm'] = 'Parola(Tekrar)';

// Error
$_['error_exists'] = 'Uyarı: E-Posta adresi ile daha önce kayıt olunmuştur!';
$_['error_firstname'] = 'Ad alanı 1 ile 32 karakter arasında olmalı!';
$_['error_lastname'] = 'Soyad alanı 1 ile 32 karakter arasında olmalı!';
$_['error_email'] = 'Geçerli bir E-Posta adresi yazınız!';
$_['error_telephone'] = 'Telefon alanı 3 ile 32 karakter arasında olmalı!';
$_['error_custom_field'] = '%s gerekli!';
$_['error_password'] = 'Parolanız 4 ile 20 karakter arasında olmalı!';
$_['error_confirm'] = 'Parolanız birbiriyle uyuşmuyor!';
$_['error_agree'] = 'Uyarı: %s kabul etmelisiniz!';


Tema editörü / account / register.twig
{{ header }}


{% if error_warning %}
{{ error_warning }}

{% endif %}
{{ column_left }}
{% if column_left and column_right %}
{% set class = 'col-sm-6' %}
{% elseif column_left or column_right %}
{% set class = 'col-sm-9' %}
{% else %}
{% set class = 'col-sm-12' %}
{% endif %}
{{ content_top }}

{{ heading_title }}


{{ text_account_already }}




{{ text_your_details }}


{% for customer_group in customer_groups %}
{% if customer_group.customer_group_id == customer_group_id %}



{% else %}



{% endif %}
{% endfor %}






{% if error_firstname %}
{{ error_firstname }}

{% endif %}






{% if error_lastname %}
{{ error_lastname }}

{% endif %}






{% if error_email %}
{{ error_email }}

{% endif %}






{% if error_telephone %}
{{ error_telephone }}

{% endif %}


{% for custom_field in custom_fields %}
{% if custom_field.type == 'select' %}




{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'radio' %}



{% for custom_field_value in custom_field.custom_field_value %}
{% if register_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id == register_custom_field[custom_field.custom_field_id] %}

{% else %}

{% endif %}

{% endfor %}

{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'checkbox' %}



{% for custom_field_value in custom_field.custom_field_value %}
{% if register_custom_field[custom_field.custom_field_id] and custom_field_value.custom_field_value_id in register_custom_field[custom_field.custom_field_id] %}

{% else %}

{% endif %}

{% endfor %}

{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'text' %}




{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'textarea' %}




{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'file' %}





{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'date' %}








{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'time' %}








{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% if custom_field.type == 'time' %}








{% if error_custom_field[custom_field.custom_field_id] %}
{{ error_custom_field[custom_field.custom_field_id] }}

{% endif %}


{% endif %}
{% endfor %}


{{ text_your_password }}




{% if error_password %}
{{ error_password }}

{% endif %}






{% if error_confirm %}
{{ error_confirm }}

{% endif %}




{{ text_newsletter }}


{% if newsletter %}


{% else %}


{% endif %}



{{ captcha }}
{% if text_agree %}

{{ text_agree }}
{% if agree %}

{% else %}

{% endif %}
 



{% else %}





{% endif %}

{{ content_bottom }}

{{ column_right }}


<script></script>
<script></script>
<script></script>
{{ footer }}