0

I am using Magento ce-1.9.2.1 in my site.

It is mainly in nb_NO(Norwegian) language, even in admin panel.

Now I want to add a custom translation file in app/design/adminhtml/default/default/locale/nb_NO - by name Package_Module.csv but with a custom module.

I can't figure out the settings for this in my module's config.xml and the path related stuff.

Please help anyone.

Vicky Dev
  • 1,992
  • 9
  • 29
  • 51

1 Answers1

3

follow this tutorial.add your translation file app/locale/en_US/ here. you can add this for frontend

<frontend>
        <translate>
            <modules>
                <translations>
                    <files>
                        <default>Translations.csv</default>
                    </files>
                </translations>
            </modules>
        </translate>
    </frontend>

for admin panel

 <adminhtml>
        <translate>
            <modules>
                <translations>
                    <files>
                        <default>Translations.csv</default>
                    </files>
                </translations>
            </modules>
        </translate>
    </adminhtml>
Qaisar Satti
  • 32,469
  • 18
  • 85
  • 137