-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Translate extension to Wiki #568
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,36 @@ | ||||||||||||||||||||||||||||||||||||||||||
<?php | ||||||||||||||||||||||||||||||||||||||||||
# DO NOT EDIT - This file is being maintained by Chef | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
wfLoadExtension( 'Translate' ); | ||||||||||||||||||||||||||||||||||||||||||
$wgGroupPermissions['user']['translate'] = true; | ||||||||||||||||||||||||||||||||||||||||||
$wgGroupPermissions['user']['skipcaptcha'] = true; // Bug 34182: needed with ConfirmEdit | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||
* Language code for message documentation. Suggested values are qqq or info. | ||||||||||||||||||||||||||||||||||||||||||
* If set to false (default), message documentation feature is disabled. | ||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
$wgTranslateDocumentationLanguageCode = 'qqq'; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
$wgGroupPermissions['autoconfirmed']['translate-messagereview'] = true; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
$wgGroupPermissions['translationadmin']['pagetranslation'] = true; | ||||||||||||||||||||||||||||||||||||||||||
$wgGroupPermissions['translationadmin']['translate-manage'] = true; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||
* Add a preference "Do not send me email newsletters" in the email preferences. | ||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
$wgTranslateNewsletterPreference = true; | ||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+19
to
+23
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
This configuration variable removed in 2020. (MediaWiki 1.35) wikimedia/mediawiki-extensions-Translate@1c43244 |
||||||||||||||||||||||||||||||||||||||||||
/** | ||||||||||||||||||||||||||||||||||||||||||
* Let Translate extension use ElasticSearch to store commonly-used translation messages to suggest to translators | ||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
$wgTranslateTranslationServices['TTMServer'] = array( | ||||||||||||||||||||||||||||||||||||||||||
'type' => 'ttmserver', | ||||||||||||||||||||||||||||||||||||||||||
'class' => 'ElasticSearchTTMServer', | ||||||||||||||||||||||||||||||||||||||||||
'cutoff' => 0.75, | ||||||||||||||||||||||||||||||||||||||||||
/* | ||||||||||||||||||||||||||||||||||||||||||
* See http://elastica.io/getting-started/installation.html | ||||||||||||||||||||||||||||||||||||||||||
* See https://github.com/ruflin/Elastica/blob/8.x/src/Client.php | ||||||||||||||||||||||||||||||||||||||||||
*/ | ||||||||||||||||||||||||||||||||||||||||||
'config' => [ 'servers' => [ 'host' => '127.0.0.1', 'port' => 9114 ] ] | ||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+27
to
+36
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
The mix use of old syntax and new syntax has slightly confused me :) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bugzilla 34182 is https://phabricator.wikimedia.org/T36182
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Though the bug, I am not sure if it is good to disable the captcha for all logged-in users.
In another perspective, does OSM wiki have ConfirmEdit enabled? (Is this line needed?)
Anyway, I think it would be good if 'autoconfirmed' is used than 'user'.