Last modified: 2006-02-03 03:19:28 UTC
I would like that a new namespace (Словоформи) is created on [[wikt:bg:Начална страница|bg.wiktionary]]. I don't want that it has subpages, nor to be searched by default. Necessary additions to LocalSettings.php: $wgExtraNamespaces = array( 100 => "Словоформи", 101 => "Словоформи_беседа" ); $wgNamespacesWithSubpages[100] = 0; $wgNamespacesWithSubpages[101] = 0; $wgNamespacesToBeSearchedDefault[100] = 0; $wgNamespacesToBeSearchedDefault[101] = 0;
What would this namespace be used for?
These new pages should contain all word forms (most probably in a table format) of a given word and should be included in the page for the main form (or only linked if they are too big). For example, look at the german wiktionary pages http://de.wiktionary.org/wiki/Wirtschaft, http://de.wiktionary.org/wiki/gehen. On the right side of every page there is a table with the word forms - in all cases in singular and plural (for a noun) or - in some selected tenses (for a verb). For the verb there is also an extra page with the verb forms in all tenses: http://de.wiktionary.org/wiki/gehen_%28Konjugation%29). I have made such pages at the bulgarian wiktionary and have put them in templates. But since transclusion works not only for templates, it is a better idea to put these pages in its own namespace. Examples: - http://bg.wiktionary.org/wiki/Шаблон:Словоформи/вървя - contains all forms for the bulgarian verb 'вървя' - http://bg.wiktionary.org/wiki/Шаблон:Словоформи/вървя_(избрани) - contains only selected forms for the same verb
Is this still desired by the bg.wiktionary community?
Yes.
Added. Had to also fix LanguageBg.php to use extra namespaces.