Google colab automatically change language - google-colaboratory

Every time i open colab cite, it changes language to non english
I checked that:
My google account have english by default
*google.com domain in cookie auto delete whitelist

Go to Chrome -> Settings -> Advanced -> make sure your preferred language (English) is on top of the list.
just like here

You need to change Google Chrome language settings.
Go to Chrome -> Settings -> Advanced -> Language and set it to English.

Related

How to remove English language from Odoo v14

I have an odoo server with a website and other modules installed. I have two languages, English and Spanish, and I was trying to make make English Inactive. But I get an error "Cannot deactivate a language that is currently used on a website."
I have change the Language to Spanish for all Users. including odoo boot and other inactive and internal users, And still it shows an error "Cannot deactivate a language that is currently used on a website.". How can I remove English and let only Spanish as a language
Error message clearly says "Cannot deactivate a language that is currently used on a website." So language is set on a website record.
Go to Website menu > Configuration > Websites (Websites menu visible once you turn on developer mode)
Verify all website records and change default language to Spanish.
If everything is good in the website record then Go to Settings > Website and remove English language.
Odoo has overloaded the write function of the res.lang model to avoid disabling a language that is in the list of languages (language_ids) of a web site:
if self.env['website'].search([('language_ids', 'in', self._ids)]):
raise UserError(_("Cannot deactivate a language that is currently used on a website."))
For users and partners, Odoo will check if the lang field is set to the language you want to disable and generate an error:
if vals.get('active') == False:
if self.env['res.users'].search_count([('lang', 'in', lang_codes)]):
raise UserError(_("Cannot deactivate a language that is currently used by users."))
if self.env['res.partner'].search_count([('lang', 'in', lang_codes)]):
raise UserError(_("Cannot deactivate a language that is currently used by contacts."))
In order to disable a language, you must update the language of users and contacts , update the websites language list and the default website language

How do I change the date format in the header when printing with DotNetBrowser?

The only localisation I could find is described here:
https://dotnetbrowser.support.teamdev.com/support/solutions/articles/9000110018-chromium-language-localization
DotNetBrowser allows configuring Chromium engine with specified
language (two letter code from ISO-639 e.g. "en", "de", "it", etc).
The language will be used for UI text messages localization (e.g. text
on the web page that's displayed when Chromium failed to load URL).
By default, Chromium engine is configured to use .NET application
language that can be received from
theCultureInfo.CurrentUICulture.Name property. To configure Chromium
engine with .NET application language, DotNetBrowser extracts the
language from theCultureInfo.CurrentUICulture.Name property and passes
it to Chromium engine via the --lang Chromium switcher.
If you need to change this default behavior, then you can configure
Chromium engine directly with specified language via Chromium--lang
switcher.
Unfortunately this does not seem to apply any date formatting (which makes sense as it only seems to pay attention to the language "en" and not the locale)
When I print, the header on every page has a date which is in US format. My customers are not in the US and giving them dates in US formats would be a disaster.
Is there any way to set the date format in DotNetBrowser / Chromium?
In Chrome Advanced Settings I can pick English New Zealand and English UK as languages and those settings do affect the printed page headers.
You could specify English UK locale as "en-GB" as shown below:
BrowserPreferences.SetChromiumSwitches("--lang=en-GB");
Do not forget that this switcher should be set before you create any Browser instance.
This article describes how to set Chromium switchers: https://sites.google.com/a/teamdev.com/dotnetbrowser-support/documentation/chromium-switches

SEO, multilanguage, session var

have multilanguage site.
When the user wants to change language he must click relevant link and session var is set with the language id. Then after this session is used to get the proper content from the DB.
Default language when entering the site for the first time is english. (session var is set to english lan id)
my question is: How google robot will index this site?
Only english? what if robot will 'click' one from the language links in the begining of the indexing? will it be then set to the given language?
Your site will only be indexed in english.
If you wish to do multi site I'd suggest OR multi domains(.de .nl .fr. es etc...) or use multi subdomains for the different languages (nl.domain.tld, de.domain.tld, .fr.domain.tld, etc...)
Then use to cookies to redirect users tot he right domain/subdomain if they have given preference to a certain language.
That way google can index all the languages and increases your changes of being ranked for "local"/country wide search results.

How can I change a site's default language after creation (sharepoint 2010)?

after creating a site you can go to:
Site Actions / Site Settings / Site Administration / Language Settings
and select some alternate language(s) if you've got some language pack(s) installed, but the default one is fix and you can't cange it anymore.
Is there a way or some settings.file where you can change the default language?
OK, It's me again answering my own question(s)...
http://sharepointchick.com/archive/2008/04/29/changing-the-language-of-an-existing-sharepoint-site.aspx
It works so good this sql_way!
After searching around for so long time I've finally found this soluion! done in a few seconds!
george

Localization of a DotNetNuke website

I am working on a website in dnn. I want to change the language of website or particular page. So I download the language package for spanish(es-es),chinese(zh-cn) and install them from host. Next when I changed the language of browser then the website language didn't change. Working on dnn 5.0.
Please let me know how I can use language packages in dnn website.
For initial translations and maintenance of DotNetNuke translations, I recommend the use of OmegaT. It handles resx files directly. And content (such as HTML or Blogs) can be downloaded, translated and then uploaded thanks to the APIs of DNN (drop me a note if you need the scripts).
OmegaT stores the translations in it's memory (a TMX file, which is actually some kind of XML). It also uses Google Translate and similars, and has a fast user interface which increases translation speed a lot when compared against continously waiting for DotNetNuke to handle your updated resources.
More info on OmegaT. An example of a translated site and modules: site translated from Dutch into English
You should probably ask this in the DotNetNuke forums: http://www.dotnetnuke.com/tabid/795/default.aspx.
There's one dedicated forum for questions about language packs and localization. You will probably find your answer there: http://www.dotnetnuke.com/Community/Forums/tabid/795/forumid/77/scope/threads/Default.aspx
The language packs don't always have translations for everything on the site, especially content that you added yourself. You'll need to do two things to get them working properly:
Go to Admin > Languages, and enable the languages you want to use.
Open the Language Editor and start translating. Under each resource name, you will see an edit text box for the localized value, and a read-only text box for the default value. In most cases, you'll need to translate verbatim what you see under "default value".
We had to write our own menu provider to get the menu to do this - instead of going for the resource files we went for a database solution - other reasons applied to this as well - we also built an interface for doing this - as for things like the text/html module there are some third party builds that allow you to nationalize content. Apollo comes to mind Apollo Software they have some multilanguage modules
The language packs will typically only localize text used by the core such as "Login" and "Settings". It is designed so that you can have a site in a language other than English, not so you can have multiple languages on one site. You can easily have multiple portals, each with a different language.
In order to have multiple locales on one portal you will need to use a third party module or develop your own.