Extension talk:UniversalLanguageSelector

About this board

Ordered list in Usage section doesn't work

2
Reedy (talkcontribs)

Everything is just labelled as "1."

Jdforrester (WMF) (talkcontribs)
Reply to "Ordered list in Usage section doesn't work"

Why is language selector at the bottom of the Main Page?

1
TaylanKammer (talkcontribs)

Using Vector 2022, the language selector is normally to the right side of the H1, which makes sense and is easily seen. On the wiki's main page however, it seems to be all the way at the bottom of the page.

And I don't mean at the bottom of the browser window via "position: fixed" either, but actually at the bottom of the HTML content, so you have to scroll all the way down.

That's very counter-intuitive and difficult to find. Maybe it makes sense for some types of wikis, but not in general. Perhaps there should be an option to make ULS treat the Main Page like any other article?

Reply to "Why is language selector at the bottom of the Main Page?"

Change font within an article using class selector

1
Redheadkelly (talkcontribs)

I want to use the Junicode font in articles only for text that is transcribed from old manuscripts. Nothing else on the page will need to use this font. The Junicode font is included in the UniversalLanguageSelector library.

If I load this extension, it does appear that I can choose the font using a CSS class with 'font-family: Junicode;', but not all of the characters display.

I would like to use the ss02 character set, which includes the insular characters. In the documentation it says "ss02 on, language set to Irish". So I tried to use the 'lang="Irish"' setting.

For instance:

<span class="junicode" lang="Irish"></span>

It doesn't seem to do anything.

I can't figure out how to access specific characters, such as the insular t with dot above. On the MUFI website, it says that it is "00F094 LATIN SMALL LETTER INSULAR T WITH DOT ABOVE". If I use &#xf094; in the text, it renders as the replacement question mark. I can see this character in the Irish_text.pdf included with the Junicode documentation with the Junicode font installed in Windows, but I can't figure out how to get Mediawiki to display it.

Is this possible in Mediawiki? Even if I look at Medieval Unicode Font Initiative on Wikipedia, none of the characters display if I don't have the Junicode font installed on my local system. And when I do have the font installed, this insular t with the dot above does not display.

Thanks.

Reply to "Change font within an article using class selector"

Modifying Default Settings

12
Wikimanz (talkcontribs)

Previously I have been using Narayam extension with great success and customization to fit my local wiki. Updating to this extension I was hoping to set it up to fit my wiki but I seem to be confused as to how to edit the default settings. Some of the following are things I want to do

1) I want to set up the default input language to be loaded regardless of country or interface language

2) similarily I want to set up the default interface language. However, is there anyway not to force changing the font a person already has when doing this. After this, everytime I refresh the page, it gdisplays the original font and then quickly reverts back to the font as set in webfont.

In addition is it possible to change both interface and input with a single drop down menu. For mixed content wiki, sometimes english is better for interface while allowing local language input.

3) How to remove some country/language options from the drop down as my wiki caters to a niche population. I only want english and my local language to be displayed as choices for interfase and input

4) previously using control+M on keyboard combination enabled the input for my local language from english while changing the background where inputs are written to a light blue color to differentiate the input method has changed. Possibility of the color to come back as the color change is a great and simple way for users to tell when they are quickly switching between the input methods using Ctr+M keyboard.

6) How to disable the webfont function in ULS.

5) The transliteration drop down menu is small and often if the mouse button is still hovering in the search bar, the default popup mentioning the search bar covers the transliteration drop down making it hard to select unless mouse is moved away. A better and easily accessible location should be though of.

I previously worked with the developer of Narayam (Junaid) with these features by suggesting ideas and by requesting for the amharic language better and making the input better. If you can briefly describe me the process to do the above things I would greatly appreciate it. Thank you for the great work.

Thanks

Siebrand (talkcontribs)

1) I want to set up the default input language to be loaded regardless of country or interface language

This is not possible with ULS. The default language for an input method will be the wiki's content language. Initially, input methods are enabled, and no keyboard mappings are active. A user will have to enable a keymapping.

Siebrand (talkcontribs)

2) similarily I want to set up the default interface language. However, is there anyway not to force changing the font a person already has when doing this. After this, everytime I refresh the page, it gdisplays the original font and then quickly reverts back to the font as set in webfont.

MediaWiki provides the wiki's content language by default. There is no feature to have it different from the content language. ULS allows to set the UI language to the language identified through the Accept-Language of the browser of the user. Related settings in LocalSettings.php are $wgULSLanguageDetection, $wgULSAnonCanChangeLanguage and $wgULSEnableAnon.

See Extension:Universal_Language_Selector#Configuration for more details.

Siebrand (talkcontribs)

3) How to remove some country/language options from the drop down as my wiki caters to a niche population. I only want english and my local language to be displayed as choices for interfase and input

ULS has no such feature at the moment. We are open to receiving patches.

Larrydberg (talkcontribs)

I would like to add my voice to this request. For two-language wikis, the dropdown is far more featureful and inclusive than necessary. Perhaps there could be an array of languages offered. Indeed, I don't even really want the flyout---I just want to offer a link that says "Switch language" that toggles from one language to the other, or perhaps a pair of flags that you can click on to set the language. (This is common on bilingual pages.)

LaKing (talkcontribs)

Edit the file UniversalLangauageSelector.hooks.php

Find the function addVariables. (Line 248)

	public static function addVariables( &$vars, OutputPage $out ) {
		// This is the original code
		//$vars['wgULSLanguages'] = Language::fetchLanguageNames(
		//	$out->getLanguage()->getCode(), 'mwfile'
		//);
		// The following line is a limitation, to two languages.
		$vars['wgULSLanguages'] = array('en'=>'en', 'hu'=>'hu');
		
		$vars['wgULSAcceptLanguageList'] = array_keys( $out->getRequest()->getAcceptLang() );

		return true;
	}

It is not perfect, and a bit hackish, but should do the job.

Devaroo (talkcontribs)

If anyone is wondering in 2023, this is currently in ResourceLoaderULSModule.php (line 44-48).


@LaKing thanks for this solution, still super helpful :-)

Siebrand (talkcontribs)

4) previously using control+M on keyboard combination enabled the input for my local language from English while changing the background where inputs are written to a light blue color to differentiate the input method has changed. Possibility of the color to come back as the color change is a great and simple way for users to tell when they are quickly switching between the input methods using Ctr+M keyboard.

Thank you for the suggestion. We decided to drop background coloring to reduce interface clutter and make things more consistent. There are no plans to bring that feature back.

Siebrand (talkcontribs)

6) How to disable the webfont function in ULS.

Disabling web fonts in ULS is not possible. Users can disable web fonts on a per language basis, and it is possible to do some customisation.

Nemo bis (talkcontribs)

"Sometimes there are multiple fonts for a language and there is a default font for each language/script": it would be useful to have a readable table of what's default for what, so that users know to expect when they install ULS on their wiki. Is the big one-line json file the only place currently, or is there something else to work on?

Siebrand (talkcontribs)

5) The transliteration drop down menu is small and often if the mouse button is still hovering in the search bar, the default popup mentioning the search bar covers the transliteration drop down making it hard to select unless mouse is moved away. A better and easily accessible location should be though of.

We have considered many options. We are open to a better option that the one currently implemented. See bugzilla:50787, comment 4 for a detailed list of considerations by one of our user interaction designers.

Siebrand (talkcontribs)

As you can see I have chosen to reply to your 6 items in 6 different sub-threads. I think that makes the discussion easier to follow. I would like to request that you start separate threads in the future, or use Bugzilla, our issue tracker, to report feature requests and change requests.

I previously worked with the developer of Narayam (Junaid) with these features by suggesting ideas and by requesting for the amharic language better and making the input better. If you can briefly describe me the process to do the above things I would greatly appreciate it. Thank you for the great work.

We haven't heard from Junaid for a long time; aside from the input methods that have been taken over from Narayam, I don't think Junaid has contributed to ULS yet. We'd love to work with him again.

I've tried to reply to each of your requests. Some I would not consider as features that would be supported in ULS, others could be supported, but will not be prioritized by Wikimedia Language Engineering anytime soon. As said, we do accept patches, and we are open to discuss options with volunteer developers. We will also review code submissions for Project Milkshake components, as well as Extension:UniversalLanguageSelector.

Thanks for all your feedback.

Reply to "Modifying Default Settings"

How to remove or edit the message in the sidebar

1
198.210.88.235 (talkcontribs)

"On this Wiki the language links are at the top of the page across from the article title. Go to top."

Reply to "How to remove or edit the message in the sidebar"

Interwiki links dependancy on ULS at Vector-2022 skin

6
Fokebox (talkcontribs)

Hello,

I don't need ULS at my wiki, but now without ULS the language links are not shown. Can you remove this dependancy please?

Amire80 (talkcontribs)

If you want the Vector 2022 skin and interlanguage links, then you do need ULS.

Fokebox (talkcontribs)

By the way interwiki links works fine with other skins without ULS extensions.

Fokebox (talkcontribs)

I have some issues with ULS at my wiki farm website.

  • One of the problems is that when user is logged the language of the relevant localisation is correct, i.e. at en.mywikifarm.org is English, es.mywikifarm.org is Spanish, but once a user is logged our all localisations are in Russian. So is there a way to set default language for ULS? By the way $wgLanguageCode is set to the relevant value of a localisation.
  • The second problem: once the ULS is installed. I do see language links at interwiki box, but if do some actions (logging in, logging out, editing etc.) the links disappears.

At version 1.36.6 all worked fine and I didn't need ULS extension. Now I use:

MediaWiki 1.39.3
PHP 8.0.28 (cgi-fcgi)
MySQL 5.7.34
ICU 57.1
Amire80 (talkcontribs)

I think that it can be changed with one of the configuration variables. $wgULSLanguageDetection is the first one I'd try.

Fokebox (talkcontribs)

I have tried, but it doesn't work. And in general extension works not so good with several bugs at my wiki farm:

  • Interwiki links sometimes appears and some times disappears.
  • The language of the farm is determined for logged in user, but for not logged in users for all farms language is Russian in spite of that $wgLanguageCode is determined for every localisation.
  • The pages uploads much longer with this extension.
  • The button itself with interwiki links functions when clicked and unclicked work incorrectly, I mean when it is clicked the box with links appears, when I click the page somewhere else the box do not disappears.

Basically I don't need ULS extension as the language is determined by $wgLanguageCode, but I do need interwiki links. Previously at MW 1.38.6 all worked perfect without ULS extension.

I don't know how to resolve all this bugs (

Reply to "Interwiki links dependancy on ULS at Vector-2022 skin"

Any way to remove the poput a user gets when language is changed by link?

1
178.7.208.231 (talkcontribs)

You can change the language of an user by putting a &setlang=languagecode at the end of the URL. Then a small window pops up, asking the User if he want to change his language. Is their a way to remove that popup-window like in older Versions?

Reply to "Any way to remove the poput a user gets when language is changed by link?"

compile.php still needed?

3
Inductiveload (talkcontribs)

The instructions say to use compile.php, but it seems not to exist. Is that instruction out of date?

Amire80 (talkcontribs)

Do you mean compile-font-repo.php?

Inductiveload (talkcontribs)
Reply to "compile.php still needed?"

Get data from ULS to template or module

1
217.117.125.72 (talkcontribs)

How to get data (list of user’s languages in order of preference) from ULS to template

Reply to "Get data from ULS to template or module"

Hebrew messes up site layout

2
Summary by Vishkujo

Added a lot of /* @noflip */ to css

Vishkujo (talkcontribs)

Having hebrew set as the language on my website causes the sidebar and infoboxes to flip to the opposite side, messing up how the pages look. https://jojowiki.com


The side bar also covers my top menu. Any way to prevent the elements from flipping positions?

Amire80 (talkcontribs)

It's not an issue with the Universal Language Selector. The ULS is a selector—it only helps users select the language they want.

It's an issue with the skin on your site. Hebrew, Arabic, Persian, and other languages that are written from right to left (RTL) are supposed to have the sidebar and many other elements on the other side. The Vector skin is adapted to this well.

To adapt your skin, you'll have to tweak the CSS yourself. The page Directionality support can help you.

Return to "UniversalLanguageSelector" page.