Page MenuHomePhabricator

New namespace on Bulgarian Wiktionary
Closed, ResolvedPublic

Description

Author: b.manolov

Description:
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;


Version: unspecified
Severity: enhancement
URL: http://bg.wiktionary.org/wiki/template:wikivar#ns_100

Details

Reference
bz1902

Event Timeline

bzimport raised the priority of this task from to High.Nov 21 2014, 8:18 PM
bzimport set Reference to bz1902.
bzimport added a subscriber: Unknown Object (MLST).

avarab wrote:

What would this namespace be used for?

b.manolov wrote:

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:

the bulgarian verb 'вървя'

only selected forms for the same verb

Is this still desired by the bg.wiktionary community?

Added. Had to also fix LanguageBg.php to use extra namespaces.