Set Falang default language for joomla - joomla

I have my site in English & Spanish. I am using Falang Extension in Joomla and need to make Spanish language default. So that when a user visit the site he/she will see the Spanish language.
Is there anything I can do to make this possible?

You can install additional languages and choose your default from the Joomla Administrators Language Manager. Details at the Extensions Help. If your language isn't available from joomla.org directly, or you need additional language support, check the JED Language Support.

The problem may be due to Language Filter plugin configuration.
You have to open:
Extensions -> Plugin Manager -> System - Language Filter
And set:
Language Selection for new Visitors: Site Language
Hope this helps

Related

New Language Files

I am user of Joomla 2.5 cms and I try to built a double-language site.
Yesterday I installed this one module to my site
http://extensions.joomla.org/extensions/access-a-security/site-access/authentication-management/6660
but this don't support 2 languages, only one.
The help I need is some information on how I can add new files for this module with new labels of course at my excisting language packages.
if it doesn't support 2 languages, you have some problems
anyway you can ask your developer to help you.
or you can check the source and change the needed words to your desire language, then you can change the module name and install it separately
it is important to see if you have the right to change that extension.
and you can write your own of course :)

Setup language pack for Magento

I am using Magento to create own shop. I have created all functionality in English. Now I want to install Russian language pack. I want to setup configs for language pack. Who can help me?
You can get a language pack here http://www.magentocommerce.com/magento-connect/et-russian-language-pack-russkij-perevod-ver-1-8-h-i-bolee-rannih.html
and set it up like this http://inchoo.net/ecommerce/magento/adding-a-new-language-in-magento/

Why aren't my Joomla 3 articles translating to my new language?

On the last version of Joomla 3, each link, module, and article could be associated with a language.
I installed a new language from AdminCP (Joomla 3 has an integrated install language on administrator). Now when I create an article, I continue to see only English options for language, and not the new language I just installed
What is missing? Is it necessary to install a component?
I think Joomla 3 don't need a component like joomfish, because the content can be multi-language as a native feature.
You need to add the language you installed as a content language in the language manager.

How do I create a custom locale in Magento?

The locale I need is not included in the standard Magento language extensions, so I need to create my own.
It will be es-us - Spanish language for the US.
I found this article: http://kb.magenting.com/content/14/50/en/translate-magento-interface-magento-localization-tips.html
It says:
"If there are no localization package for your locale you can create it by simply copying localization directory from English or any other translation."
Can someone walk me through how I get from that quote to having Spanish (USA) in the locale drop-down?
Thank you so much for your help!
I came upon this answer whilst investigating Mage_Core_Model_Locale_Config and I was able to come up with a solution that didn't require any code changes at all.
Mage_Core_Model_Locale_Config does indeed contain a hardcoded list of locales, but the getAllowedLocales() method combines this with the output of
Mage::getConfig()->getNode(Mage_Core_Model_Locale::XML_PATH_ALLOW_CODES);
in 1.4.2 the value of Mage_Core_Model_Locale::XML_PATH_ALLOW_CODES is
'global/locale/allow/codes'
So all you need to do is add the following xml to your app/etc/local.xml within your 'global' tags:
<locale>
<allow>
<codes>
<en_IE/>
</codes>
</allow>
</locale>
And the English(Ireland) locale will appear in your locale dropdown. The only limitation is that the locale code must be one of the ones defined in the Zend Framework documentation here:
http://framework.zend.com/manual/1.12/en/zend.locale.appendix.html
'es_US' is one of these supported codes. I hope that helps someone.
_Pez
Unfortunately, it looks as if the locale names are hardcoded in Mage_Core_Model_Locale_Config. Not only that, but language codes are installed in the database during install.
What I would recommend doing instead of rewriting that class to define your own custom language is to "piggyback" on another locale and use their code for your custom language pack. For example, in app/locale, you could place the folder gl_ES, copy over a Spanish language pack, and make the modifications you need for that language. Then for your store's locale in the dropdown (System > Configuration > General > Locale) you can choose Galician (Galician)
The custom solution that you're requesting I think would involve rewriting Mage_Core_Model_Locale_Config to add your new locale to the $_allowedLocales variable. I thought you may need to add the language to the core_language table but it looks as if that table's been deprecated.

How to implement "CodeIgniter 2.0" code completion capabilities with Notepad++ ?

How could I make Notepad++ have an intellisense for CodeIgniter 2.0 so that if I press Ctrl + SpaceBar on the keyboard code suggestions would be shown?
Here are the steps:
Use a User Defined Language derived from the PHP language given that Code Igniter is a PHP Framework.
If you want more advanced features and feel comfortable at coding, External Lexer is the way to go. It's a kind of specific Plugin mimicking built-in languages features. Install it.
Autocompletion is language based and has distinct API files for each language.
Notepad++ offers two types of auto completion:
Function Completion (providing a hint based on a list of well known keywords)
Word Completion (providing hint on words retrieved from the current file)
To trigger them, you must respectively select:
Edit->Auto-Completion->Function Completion
Edit->Auto-Completion->Word Completion
Notepad++ development community is a vibrant one, hopefully you find relevant indepth materials on the web.
Here is a link that should explain everything you need to know to make your own user defined language wiki
And Here is a list of user defined languages repository of user created languages

Resources