Translating talk:Installation

From translatewiki.net

Contents

Thread titleRepliesLast modified
Extension installation on MediaWiki 1.17612:44, 2 December 2011

Extension installation on MediaWiki 1.17

hi,

first i discover this extension last week, it's sound like a dream fonctionality for me.

i try to install this extension on an internal wiki, used for make software documentation.

have you more document for installation ?

it's seem well installed, but i see nothing on wiki interface.

Best regards

Spiderjn (talk)07:32, 30 November 2011

Did you have a look at Translating:Documentation? What is your actual configuration?

Siebrand09:48, 30 November 2011

yes a read all i can found in this site and README file.

my configuration is Ubuntu/Mediawiki 1.17.

Spiderjn (talk)16:26, 30 November 2011

Let me rephrase my question into a few questions:

  • what did you add to LocalSettings.php that made you think Translate's feature for Page Translation would work?
  • what does your local Special:Version say for Translate version?
Siebrand15:00, 1 December 2011
Edited by another user.
Last edit: 23:11, 1 December 2011

hi thank's for this answers

  • Version say : Translate (Version 2011-10-30) (r104601)
  • include in LocalSettings (extract from README file) :
include("$IP/extensions/Translate/Translate.php");
$wgTranslateEC = array_keys($wgTranslateAC); // All modules
$wgTranslateFuzzyBotName = 'FuzzyBot';
$wgGroupPermissions['Translators']['translate'] = true;
$wgGroupPermissions['sysop' ]['pagetranslation'] = true;
$wgGroupPermissions['user' ]['pagetranslation'] = true;
$wgGroupPermissions['user'  ]['translate'] = true;
#experience these additional extensions are recommended:
#// For localised language names
include("$IP/extensions/cldr/LanguageNames.php");
#// Cleaner recent changes
include("$IP/extensions/CleanChanges/CleanChanges.php" );
$wgCCUserFilter = false;
$wgCCTrailerFilter = true;

i try to make a fresh installation of MediaWiki, for make a new test.

Spiderjn (talk)21:02, 1 December 2011

Looks like you may be missing the following line:

    $wgEnablePageTranslation = true;

Also, you can probably do without:

$wgTranslateEC = array_keys($wgTranslateAC); // All modules

It's all described in Page_translation#Page_translation_only_setup.

Siebrand23:14, 1 December 2011