Meta:Language select/he
בחירת שפה (Language select) מאפשר למשתמשים להסתיר שפות זרות בדפים רב לשוניים. כך יכול למשל קורא עברי לראות רק טקסט עברי בדפים רב לשוניים (אבל בדפים שכתובים בספרדית בלבד, עדיין יראה הקורא את הדף בספרדית).
משמאל מופיעות שתי תמונות של צילומי מסך של תבנית:קצרמר עם וללא בחירת שפה עם אנגלית וצרפתית בשיטה הCSS (ראו להלן).
מימוש
editיש שני מימושים עובדים של בחירת שפה. הכנת הדף לבחירת שפה נעשית בשתי הצורות באופן זהה. השיטה הישנה היא שיטת הCSS המאפשרת לבחור מספר שפות, והיא שימושית במיוחד עבור משתמשים הדוברים מספר שפות. עם זאת, השיטה מוגבלת ולא יכולה לזהות כאשר אין את השפה הנבחרת, והתוצאה היא שלא מופיע תוכן. הגרסה החדשה יותר מבוססת על JavaScript מזהה את השפה של הדפדפן אוטומטית (ניתן לקנפג כך שיתעלם מהדפדפן), ולא עושה דבר אם לא נבחרה שפה. חסרונה הוא שהיא מציגה שפה אחת בלבד כל פעם.
זיהוי דפים רב לשוניים
editדפים הממשים בחירת שפה מצביעים לדף זהבאמצעות {{תבנית multilingual}}.הלוגו המייצג זאת כיום הוא ; Localisation2.svg.
-
Zscout370 proposal
-
Pathoschild proposal
-
"Globe of letters" proposal
-
Visible with any browser
Delimiting languages
editTechnical details
editA multilingual page is contained by the CSS class "multilingual", with text in every language contained within the class "lang-xx", where xx is a lowercase ISO 639 two-letter or three-letterlanguage code and the lang attribute. The lang attribute is contextually more correct, but the CSS required to hook into it is not supported by all browsers. If there is no two-letter code, the lowercase three-letter code is used. If you're translating existing messages and don't know what the language is, use the code "und".
An example page in English, Arabic, Old English, French, Latin, and Occitan:
<div class="multilingual"> <div class="lang-en" lang="en">This text is English.</div> <div class="lang-ar" lang="ar">هذا النّص عربي.</div> <div class="lang-ang" lang="ang">Þis wordu is Englisc.</div> <div class="lang-fr" lang="fr">Ce texte est Français.</div> <div class="lang-la" lang="la">Haec verba latina sunt.</div> <div class="lang-oc" lang="oc">Aqueste tèxt es en Occitan.</div> </div>
Template
editThe template {{ls}} simplifies the implementation of language select. For example, the following two lines are equivalent:
{{ls|en|This text is English.}} <div class="lang-en" lang="en">'''spanish:''' This text is spanish.</div>
Usage
editNote that the two implementations conflict with each other, so only one should be used at a time.
The description below assumes you use the Monobook skin.
Cascading StyleSheets
editAdd the following lines to your stylesheet, editing as appropriate for the languages you wish to view.
/* hide all languages */ .multilingual { display:none; } /* unhide selected languages */ .multilingual .lang-en, .multilingual .lang-fr { display:block; }
If you are using a browser with good support for CSS (such as Mozilla Firefox or Opera) you should use this more contextually correct CSS.
.multilingual *[lang] {display:none;} .multilingual *[lang|=en], .multilingual *[lang|=fr] {display:block;}
JavaScript
editls_enable = false;
You can see an example of the JavaScript in action below. If language selection is disabled, all of the text will be displayed.
When specifying a language, use the code, not the full name.
You can view the JavaScript code at MediaWiki:Monobook.js.
Changelog
editThe code is maintained in a private Subversion repository. I still have been unable to contact an MediaWiki developers on getting this code into Wikimedia's Subversion repository.
- Revision 1358 — Edward Z. Yang(Talk) 15:36, 19 February 2007 (UTC)
- If no cookie is present, code will sniff
wgUserLanguage
global variable - If language is set to blank, delete the cookie and switch to auto-detection.
- If no cookie is present, code will sniff
- Revision 1133 — Edward Z. Yang(Talk) 22:33, 2 September 2006 (UTC)
- Tweaked Show all behavior to be more user-friendly: instead of overwriting your cookie, it only temporarily shows all the language strings. You can switch back by pressing Select
- Renamed Save to Select
- Styled the Select button to be bold.
- Factored out language strings