1<?php 2 3// languages 4$lang['enabled_languages'] = "Enabled languages. Comma separated list of codes. Leave empty for auto."; 5$lang['guess_lang_by_ns'] = "If the namespace of a page is a valid language code, use it to guess the page language when unknown"; 6$lang['guess_lang_by_ui_lang'] = "Use the wiki's user interface to auto-detect guess page language when unknown"; 7$lang['default_original_language'] = "If the page language can not be detected, assume this language for pages"; 8$lang['use_language_namespace'] = "Use language code as namespace for translations"; 9 10// namespaces and pages 11$lang['include_namespaces'] = 'Comma separated list of namespaces where pages can be translated. Use * for the entire wiki.'; 12$lang['exclude_namespaces'] = 'Comma separated list of namespaces to exclude'; 13$lang['exclude_pagenames'] = 'Comma separated list of pagenames to exclude in any namespace'; 14 15// permissions 16$lang['translator_group'] = 'Give users in this group the right to create and edit translations, even if they only have read permission in ACL.'; 17$lang['author_group'] = 'Give users in this group the right to create and edit original pages, i.e. not translated ones, even if they only have read permission in ACL.'; 18 19// appearence 20$lang['insert_translation_links'] = 'Insert translation links on page. Turn this off if you want to insert them in your template manually.'; 21$lang['link_style'] = "Translation link style"; 22$lang['link_style_o_langname'] = "Language name"; 23$lang['link_style_o_langcode'] = "Language code"; 24 25// ....not used.... 26//$lang['runas'] = 'Use this (virtual) user\'s permissions when checking ACLs for creating translation pages.'; 27//$lang['notrans'] = 'Never translate pages matching this regular expression'; 28 29//Setup VIM: ex: et ts=2 enc=utf-8 : 30