[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Create extendedconfirmed for kowiki

2018-01-10 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/403584 )

Change subject: Create extendedconfirmed for kowiki
..

Create extendedconfirmed for kowiki

* Create user-right extendeconfirmed
* Create protection level extendedconfirmed
* Granted/revoked by sysops
* Granted to sysop and bot in their user-rights
* Autopromote after 500 edits and 30 days of registration.

Bug: T184675
Change-Id: I33c7a5f91e8af99c06396b3933a7a31847872132
Signed-off-by: Yongmin Hong 
---
M wmf-config/InitialiseSettings.php
1 file changed, 20 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/84/403584/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index ad61725..dede87d 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -5008,6 +5008,7 @@
'frwiki' => [ '', 'autoconfirmed', 'editextendedsemiprotected', 'sysop' 
], // T131109
'hewiki' => [ '', 'autoconfirmed', 'autopatrol',  'templateeditor' /* 
T102466 */, 'sysop' ], // T60207
'huwiki' => [ '', 'autoconfirmed', 'templateeditor', 'sysop' ], // 
T74055
+   'kowiki' => [ '', 'autoconfirmed', 'extendedconfirmed', 'sysop' ], // 
T184675
'lvwiki' => [ '', 'autoconfirmed', 'autopatrol', 'sysop' ], // T92645
'plwiki' => [ '', 'autoconfirmed', 'editor', 'sysop' ], // T48990
'ptwiki' => [ '', 'autoconfirmed', 'autoreviewer', 'sysop' ], // T41652
@@ -5026,6 +5027,7 @@
'+enwiki' => [ 'extendedconfirmed' ], // T126607
'+fawiki' => [ 'extendedconfirmed' ], // T140839
'+frwiki' => [ 'editextendedsemiprotected' ], // T132248
+   '+kowiki' => [ 'extendedconfirmed' ], // T184675
 ],
 
 'wgSiteNotice' => [
@@ -8930,6 +8932,15 @@
],
'user' => [ 'reupload-own' => false ], // T85621
'autopatrolled' => [ 'autopatrol' => true ], // T130808
+   'bot' => [
+   'extendedconfirmed' => true,
+   ], // T184675
+   'extendedconfirmed' => [
+   'extendedconfirmed' => true,
+   ], // T184675
+   'sysop' => [
+   'extendedconfirmed' => true,
+   ], // T184675
],
'ladwiki' => [
'flood' => [ 'bot' => true ], // T131527
@@ -10206,7 +10217,7 @@
'sysop' => [ 'rollbacker' ], // T130215
],
'+kowiki' => [
-   'sysop' => [ 'rollbacker', 'confirmed', 'uploader', 
'autopatrolled' ], // T85621, T130808
+   'sysop' => [ 'rollbacker', 'confirmed', 'uploader', 
'autopatrolled', 'extendedconfirmed' ], // T85621, T130808, T184675
],
'+ladwiki' => [
'sysop' => [ 'flood' ], // T131527
@@ -10951,7 +10962,7 @@
'sysop' => [ 'rollbacker' ], // T130215
],
'+kowiki' => [
-   'sysop' => [ 'rollbacker', 'confirmed', 'uploader', 
'autopatrolled' ], // T85621, T130808
+   'sysop' => [ 'rollbacker', 'confirmed', 'uploader', 
'autopatrolled', 'extendedconfirmed' ], // T85621, T130808, T184675
],
'+ladwiki' => [
'sysop' => [ 'flood' ], // T131527
@@ -12535,6 +12546,13 @@
[ '!', [ APCOND_INGROUPS, 'eliminator' ] ],
], // T140839
],
+   'kowiki' => [
+   'extendedconfirmed' => [ '&',
+   [ APCOND_EDITCOUNT, 500 ],
+   [ APCOND_AGE, 30 * 86400 ], // 30 days * seconds in a 
day
+   [ '!', [ APCOND_INGROUPS, 'sysop' ] ],
+   [ '!', [ APCOND_INGROUPS, 'bot' ] ],
+   ], // T184675
'trwiki' => [
'autoreview' => [
'&', // AND

-- 
To view, visit https://gerrit.wikimedia.org/r/403584
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I33c7a5f91e8af99c06396b3933a7a31847872132
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Add Translation NS for kowikisource

2017-12-31 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/401174 )

Change subject: Add Translation NS for kowikisource
..

Add Translation NS for kowikisource

Add 번역 and 번역토론 (respectively Translation and Translation_talk
in English) to kowikisource, and add them to content NS, and let them
be searched by default. Fixes T183836.

Bug: T183836
Change-Id: I275914c610ce5b3ef1502d84a7d611f6f4708180
Signed-off-by: Yongmin Hong 
---
M wmf-config/InitialiseSettings.php
1 file changed, 4 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/74/401174/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 7c00204..6cef332 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -6288,6 +6288,8 @@
101 => '저자토론',
102 => '포털', // T71522
103 => '포털토론',
+   114 => '번역', // T183836, Translation
+   115 => '번역토론', // T183836, Traslation talk
],
'lawikisource' => [
102 => 'Scriptor',
@@ -7731,7 +7733,7 @@
'+itwikisource' => [ 102 => 1, 110 => 1 ],
'+itwikiversity' => [ 100 => 1, 102 => 1, 104 => 1 ], // T114932
'+itwikivoyage' => [ 100 => 1, 104 => 1, 106 => 1 ],
-   '+kowikisource' => [ 100 => 1 ],
+   '+kowikisource' => [ 100 => 1, 114 => 1 ], // T183836 for 114
'+lawikisource' => [ 102 => 1, 106 => 1 ],
'+wikitech' => [ 12 => 1, 116 => 1, 498 => 1 ],
'+ltwiki' => [ 100 => 1 ],
@@ -12065,7 +12067,7 @@
'+idwikisource' => [ 100 ],
'+itwikisource' => [ 102 ],
'+itwikivoyage' => [ 100, 104 ], // T57620
-   '+kowikisource' => [ 100 ],
+   '+kowikisource' => [ 100, 114 ], // T183836 for 114
'+lawikisource' => [ 102 ],
'+ltwikipedia' => [ 104 ], // T144118
'+mediawikiwiki' => [ 100, 102, 104, 106 ], // Manuals, extensions, Api 
& skin - T86391

-- 
To view, visit https://gerrit.wikimedia.org/r/401174
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I275914c610ce5b3ef1502d84a7d611f6f4708180
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Add patrol to Image-reviewer on Commons

2017-12-31 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/401160 )

Change subject: Add patrol to Image-reviewer on Commons
..

Add patrol to Image-reviewer on Commons

* Add patrol
* Make one-line to multiple lines, for readability

Change-Id: Ib2a315b47d63a3f21f47e6fea34f29ecdb053114
Signed-off-by: Yongmin Hong 
---
M wmf-config/InitialiseSettings.php
1 file changed, 5 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/60/401160/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 7c00204..938cf7f 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -8262,7 +8262,11 @@
'patroller' => [ 'autopatrol' => true, 'patrol' => true, 
'abusefilter-log-detail' => true ],
'autopatrolled' => [ 'autopatrol' => true ],
'filemover' => [ 'movefile' => true ],
-   'Image-reviewer' => [ 'autopatrol' => true, 'upload_by_url' => 
true ],
+   'Image-reviewer' => [
+   'autopatrol' => true,
+   'upload_by_url' => true,
+   'patrol' => true, // T183835
+],
'extended-uploader' => [
'autoconfirmed' => true,
'upload' => true,

-- 
To view, visit https://gerrit.wikimedia.org/r/401160
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib2a315b47d63a3f21f47e6fea34f29ecdb053114
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: Sync Special Page names from English and change name in Korean

2017-12-12 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/397780 )

Change subject: Sync Special Page names from English and change name in Korean
..

Sync Special Page names from English and change name in Korean

* Synced from MessageEn.php
* Fix one primary special page name so it's less ambigious

Change-Id: I1dfac96825850cdcda135b2e1ce3e19cf71e99e9
Signed-off-by: Yongmin Hong 
---
M languages/messages/MessagesKo.php
1 file changed, 7 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/80/397780/1

diff --git a/languages/messages/MessagesKo.php 
b/languages/messages/MessagesKo.php
index 3146a36..42cc676 100644
--- a/languages/messages/MessagesKo.php
+++ b/languages/messages/MessagesKo.php
@@ -82,8 +82,11 @@
'Blankpage' => [ '빈문서' ],
'Block' => [ '차단', 'IP차단', '사용자차단' ],
'Booksources'   => [ '책찾기' ],
+   'BotPasswords'  => [ '봇비밀번호' ],
'BrokenRedirects'   => [ '끊긴넘겨주기' ],
'Categories'=> [ '분류' ],
+   'ChangeContentModel'=> [ '콘텐츠모델바꾸기', '콘텐츠모델변경' ],
+   'ChangeCredentials' => [ '자격증명바꾸기', '자격증명변경' ],
'ChangeEmail'   => [ '이메일바꾸기', '이메일변경' ],
'ChangePassword'=> [ '비밀번호바꾸기', '비밀번호변경' ],
'ComparePages'  => [ '문서비교' ],
@@ -94,6 +97,7 @@
'DeletedContributions'  => [ '삭제된기여' ],
'Diff'  => [ '차이' ],
'DoubleRedirects'   => [ '이중넘겨주기' ],
+   'EditTags'  => [ '태그편집' ],
'EditWatchlist' => [ '주시문서목록편집' ],
'Emailuser' => [ '이메일보내기', '이메일' ],
'ExpandTemplates'   => [ '틀전개' ],
@@ -101,6 +105,7 @@
'Fewestrevisions'   => [ '역사짧은문서' ],
'FileDuplicateSearch'   => [ '중복파일검색', '중복파일찾기' ],
'Filepath'  => [ '파일경로', '그림경로' ],
+   'GoToInterwiki' => [ '인터위키가기' ],
'Import'=> [ '가져오기' ],
'Invalidateemail'   => [ '이메일인증취소', '이메일인증해제' ],
'JavaScriptTest'=> [ '자바스크립트시험', '자바스크립트테스트' ],
@@ -109,7 +114,8 @@
'Listadmins'=> [ '관리자', '관리자목록' ],
'Listbots'  => [ '봇', '봇목록' ],
'Listfiles' => [ '파일', '그림', '파일목록', '그림목록' ],
-   'Listgrouprights'   => [ '사용자권한', '권한목록' ],
+   'Listgrouprights'   => [ '사용자권한목록', '사용자권한', '권한목록' ],
+   'Listgrants'=> [ '권한부여목록' ],
'Listredirects' => [ '넘겨주기목록' ],
'ListDuplicatedFiles'   => [ '중복된파일목록' ],
'Listusers' => [ '사용자', '사용자목록' ],

-- 
To view, visit https://gerrit.wikimedia.org/r/397780
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1dfac96825850cdcda135b2e1ce3e19cf71e99e9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Create NS_PROJECT and NS_PROJECT_TALK alias for kowikisource

2017-12-09 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/396569 )

Change subject: Create NS_PROJECT and NS_PROJECT_TALK alias for kowikisource
..

Create NS_PROJECT and NS_PROJECT_TALK alias for kowikisource

Fixes T182487, per community consensus at the task.

Bug: T182487
Change-Id: I79aa827cf3f6736d3ee0953b45c3cc20cf06a658
Signed-off-by: Yongmin Hong 
---
M wmf-config/InitialiseSettings.php
1 file changed, 2 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/69/396569/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index fdb4d07..d1cf0fd 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -3881,6 +3881,8 @@
'인' => NS_PROJECT,
],
'+kowikisource' => [
+   '문' => NS_PROJECT, // T182487
+   '문토' => NS_PROJECT_TALK, // T182487
'Wikisource_talk' => NS_PROJECT_TALK,
'글쓴이' => 100,
'글쓴이토론' => 101,

-- 
To view, visit https://gerrit.wikimedia.org/r/396569
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I79aa827cf3f6736d3ee0953b45c3cc20cf06a658
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Linter[master]: Add Korean translation for Special pages

2017-12-04 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/395185 )

Change subject: Add Korean translation for Special pages
..

Add Korean translation for Special pages

Change-Id: If34f9ce121ed897784a4842d8acbf8e7d74e351c
Signed-off-by: Yongmin Hong 
---
M Linter.alias.php
1 file changed, 5 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Linter 
refs/changes/85/395185/1

diff --git a/Linter.alias.php b/Linter.alias.php
index d20f437..80cd4aa 100644
--- a/Linter.alias.php
+++ b/Linter.alias.php
@@ -30,6 +30,11 @@
'LintErrors' => [ 'Errores_de_sintaxis' ],
 ];
 
+/** 한국어 (Korean */
+$specialPageAliases['ko'] = [
+   'LintErrors' => [ '린트오류' ],
+];
+
 /** Urdu (اردو) */
 $specialPageAliases['ur'] = [
'LintErrors' => [ 'نحوی_نقائص' ],

-- 
To view, visit https://gerrit.wikimedia.org/r/395185
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If34f9ce121ed897784a4842d8acbf8e7d74e351c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Linter
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki...Wikibase[master]: Add Koreant translation for Wikibase Respository

2017-12-03 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/394843 )

Change subject: Add Koreant translation for Wikibase Respository
..

Add Koreant translation for Wikibase Respository

Change-Id: Id25259658dc8bc9f006dbea739173c9316a72194
Signed-off-by: Yongmin Hong 
---
M repo/Wikibase.i18n.namespaces.php
1 file changed, 11 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Wikibase 
refs/changes/43/394843/1

diff --git a/repo/Wikibase.i18n.namespaces.php 
b/repo/Wikibase.i18n.namespaces.php
index ab01cd2..690676f 100644
--- a/repo/Wikibase.i18n.namespaces.php
+++ b/repo/Wikibase.i18n.namespaces.php
@@ -98,6 +98,17 @@
WB_NS_QUERY_TALK => 'Discussioni_query',
 ];
 
+$namespaceNames['ko'] = [
+   WB_NS_ITEM  => '항목',
+   WB_NS_ITEM_TALK => '항목토론',
+
+   WB_NS_PROPERTY  => '속성',
+   WB_NS_PROPERTY_TALK => '속성토론',
+
+   WB_NS_QUERY  => '쿼리',
+   WB_NS_QUERY_TALK => '쿼리토론',
+];
+
 $namespaceNames['nl'] = [
WB_NS_ITEM  => 'Item',
WB_NS_ITEM_TALK => 'Overleg_item',

-- 
To view, visit https://gerrit.wikimedia.org/r/394843
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id25259658dc8bc9f006dbea739173c9316a72194
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Wikibase
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] pywikibot/core[master]: Add Korean value for lonelypages.py

2017-12-02 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/394747 )

Change subject: Add Korean value for lonelypages.py
..

Add Korean value for lonelypages.py

Change-Id: I8bff4a0c2293613ab167c2f239cb5f75a636c9e9
Signed-off-by: Yongmin Hong 
---
M scripts/lonelypages.py
1 file changed, 1 insertion(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core 
refs/changes/47/394747/1

diff --git a/scripts/lonelypages.py b/scripts/lonelypages.py
index f9b75f0..ca9f9c2 100755
--- a/scripts/lonelypages.py
+++ b/scripts/lonelypages.py
@@ -95,6 +95,7 @@
 'en': ('Orphan', 'date={{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}', 
['wi']),
 'it': ('O', '||mese={{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}', 
['a']),
 'ja': ('孤立', '{{subst:DATE}}'),
+'ko': ('외톨이', '{|안전풀기:}}}#timel:Y-m-d|now}}'),
 'zh': ('Orphan/auto', '', ['orphan'], True),
 }
 

-- 
To view, visit https://gerrit.wikimedia.org/r/394747
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8bff4a0c2293613ab167c2f239cb5f75a636c9e9
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] pywikibot/core[master]: Fix nowCommons for ko

2017-10-27 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/386888 )

Change subject: Fix nowCommons for ko
..

Fix nowCommons for ko

Change-Id: I7af2040dc5e5c0c0f98b765e68e365dfe9aed47d
Signed-off-by: Yongmin Hong 
---
M scripts/nowcommons.py
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core 
refs/changes/88/386888/1

diff --git a/scripts/nowcommons.py b/scripts/nowcommons.py
index b10eba0..a1ab06e 100755
--- a/scripts/nowcommons.py
+++ b/scripts/nowcommons.py
@@ -122,8 +122,8 @@
 u'NowCommons',
 ],
 'ko': [
-u'NowCommons',
 u'공용중복',
+u'NowCommons',
 u'공용 중복',
 u'Nowcommons',
 ],

-- 
To view, visit https://gerrit.wikimedia.org/r/386888
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7af2040dc5e5c0c0f98b765e68e365dfe9aed47d
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Enable wgMinervaEnableSiteNotice for kowiki

2017-08-06 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/370363 )

Change subject: Enable wgMinervaEnableSiteNotice for kowiki
..

Enable wgMinervaEnableSiteNotice for kowiki

Fixes T172630, per community consensus.

Bug: T172630

Change-Id: I57204eef89aadc4d8388ccafd7e6202d33b25500
---
M wmf-config/InitialiseSettings.php
1 file changed, 1 insertion(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/63/370363/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index bea92dc..ed1c64f 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -15558,6 +15558,7 @@
 'wgMinervaEnableSiteNotice' => [
'default' => false,
'arwiki' => true,
+   'kowiki' => true,
 ],
 
 'wgMinervaApplyKnownTemplateHacks' => [

-- 
To view, visit https://gerrit.wikimedia.org/r/370363
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I57204eef89aadc4d8388ccafd7e6202d33b25500
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: Update the translation for MessagesKo.php

2017-07-19 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/366230 )

Change subject: Update the translation for MessagesKo.php
..

Update the translation for MessagesKo.php

* Reversed the order for unlockdb, createprotect
* Added a new translation text for __NEWSECTIONLINK__ and
__NONEWSECTIONLINK__, which translation I added is used by kowiki
and more accurate to the original meaning.
* Fixed link for aladdin.co.kr. which has changed their domain since
then and currently using aladin.co.kr. Sticking with http since they
have no plan to move to HTTPS by default.

Change-Id: Ia30b256b23aa70f46ff37439b6b74d4bb25cdf66
---
M languages/messages/MessagesKo.php
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/30/366230/1

diff --git a/languages/messages/MessagesKo.php 
b/languages/messages/MessagesKo.php
index 3ac7779..3146a36 100644
--- a/languages/messages/MessagesKo.php
+++ b/languages/messages/MessagesKo.php
@@ -142,7 +142,7 @@
'Preferences'   => [ '환경설정' ],
'Prefixindex'   => [ '접두어찾기' ],
'Protectedpages'=> [ '보호된문서' ],
-   'Protectedtitles'   => [ '만들기보호된문서', '생성보호된문서' ],
+   'Protectedtitles'   => [ '생성보호된문서', '만들기보호된문서' ],
'Randompage'=> [ '임의문서' ],
'RandomInCategory'  => [ '분류안의임의문서' ],
'Randomredirect'=> [ '임의넘겨주기' ],
@@ -165,7 +165,7 @@
'Uncategorizedpages'=> [ '분류안된문서' ],
'Uncategorizedtemplates'=> [ '분류안된틀' ],
'Undelete'  => [ '삭제취소', '삭제된문서' ],
-   'Unlockdb'  => [ 'DB잠금취소', 'DB잠금해제' ],
+   'Unlockdb'  => [ 'DB잠금해제', 'DB잠금취소' ],
'Unusedcategories'  => [ '안쓰는분류', '쓰이지않는분류' ],
'Unusedimages'  => [ '안쓰는파일', '안쓰는그림', '쓰이지않는파일', '쓰이지않는그림' 
],
'Unusedtemplates'   => [ '안쓰는틀', '쓰이지않는틀' ],
@@ -311,8 +311,8 @@
'displaytitle'  => [ '1', '보일제목', '표시제목', 'DISPLAYTITLE' ],
'rawsuffix' => [ '1', '원', 'R' ],
'nocommafysuffix'   => [ '0', '구분자없음', 'NOSEP' ],
-   'newsectionlink'=> [ '1', '__새글쓰기__', '__NEWSECTIONLINK__' 
],
-   'nonewsectionlink'  => [ '1', '__새글쓰기숨기기__', 
'__NONEWSECTIONLINK__' ],
+   'newsectionlink'=> [ '1', '__새문단쓰기__', '__새글쓰기__', 
'__NEWSECTIONLINK__' ],
+   'nonewsectionlink'  => [ '1', '__새문단쓰기숨기기__', '__새글쓰기숨기기__', 
'__NONEWSECTIONLINK__' ],
'currentversion'=> [ '1', '현재버전', 'CURRENTVERSION' ],
'urlencode' => [ '0', '주소인코딩:', 'URLENCODE:' ],
'anchorencode'  => [ '0', '책갈피인코딩', 'ANCHORENCODE' ],
@@ -353,7 +353,7 @@
 ];
 
 $bookstoreList = [
-   'Aladdin.co.kr' => 'http://www.aladdin.co.kr/catalog/book.asp?ISBN=$1',
+   'Aladin.co.kr' => 'http://www.aladin.co.kr/catalog/book.asp?ISBN=$1',
'inherit' => true,
 ];
 

-- 
To view, visit https://gerrit.wikimedia.org/r/366230
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia30b256b23aa70f46ff37439b6b74d4bb25cdf66
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] mediawiki/core[master]: Fix mailmap email address

2017-07-03 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/363040 )

Change subject: Fix mailmap email address
..

Fix mailmap email address

I just realized it was using old email address. While it redirects
to the new address, it's better to have it fixed.

Change-Id: I2df2a32f6144acca985d04b4bf58372343d119f6
---
M .mailmap
1 file changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/40/363040/1

diff --git a/.mailmap b/.mailmap
index e649fb1..2134fc5 100644
--- a/.mailmap
+++ b/.mailmap
@@ -455,9 +455,9 @@
 Yaron Koren 
 Yaron Koren  
 Yaroslav Melnychuk 
-Yongmin Hong 
-Yongmin Hong  
-Yongmin Hong  
+Yongmin Hong 
+Yongmin Hong  
+Yongmin Hong  
 Yuri Astrakhan 
 Yuri Astrakhan  
 Yuri Astrakhan  

-- 
To view, visit https://gerrit.wikimedia.org/r/363040
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2df2a32f6144acca985d04b4bf58372343d119f6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] operations/mediawiki-config[master]: Revert $wgMFEEditorOptions['anonymousEditing'] = true for ko...

2016-12-28 Thread Revi (Code Review)
Revi has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/329446 )

Change subject: Revert $wgMFEEditorOptions['anonymousEditing'] = true for kowiki
..

Revert $wgMFEEditorOptions['anonymousEditing'] = true for kowiki

Ref T119823, reverting old patch rOMWC8164bf71f399.

Bug: T119823
Change-Id: I074ae7cac439c24cb628adac2ccaa08db830af30
---
M wmf-config/InitialiseSettings.php
1 file changed, 0 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/46/329446/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 6585c9e..3a47518 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -14763,7 +14763,6 @@
'default' => [
'anonymousEditing' => true, // T93210
],
-   'kowiki' => false, // T94388
 ],
 
 'wgMFExperiments' => [

-- 
To view, visit https://gerrit.wikimedia.org/r/329446
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I074ae7cac439c24cb628adac2ccaa08db830af30
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Noindex for User namespace in kowiki - change (operations/mediawiki-config)

2015-12-11 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/258667

Change subject: Noindex for User namespace in kowiki
..

Noindex for User namespace in kowiki

This fixes T121301, and adds noindex, follow to kowiki NS_USER.

Bug: T121301
Change-Id: I381fb0fa5596a1adba65e7362f24467c4ff59b4f
---
M wmf-config/InitialiseSettings.php
1 file changed, 1 insertion(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/67/258667/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index e8bb012..e971c1c 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -10372,6 +10372,7 @@
NS_USER => 'noindex,follow', // T107992
),
'kowiki' => array(
+   NS_USER => 'noindex, follow', // T121301
118 => 'noindex,nofollow', //Draft - T92798
119 => 'noindex,nofollow', // T92798
),

-- 
To view, visit https://gerrit.wikimedia.org/r/258667
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I381fb0fa5596a1adba65e7362f24467c4ff59b4f
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add license - change (mediawiki...Gather)

2015-12-09 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/258103

Change subject: Add license
..

Add license

Based on the license information on extension.json, putting license
for GPLv2+.

Change-Id: I20f45ec4ff2cd96d4853e5a1b1cc961de165ae82
---
A COPYING
1 file changed, 382 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Gather 
refs/changes/03/258103/1

diff --git a/COPYING b/COPYING
new file mode 100644
index 000..1cdc9d4
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,382 @@
+== License and copyright information ==
+
+=== License ===
+
+MediaWiki is licensed under the terms of the GNU General Public License,
+version 2 or later. Derivative works and later versions of the code must be
+free software licensed under the same or a compatible license. This includes
+"extensions" that use MediaWiki functions or variables; see
+http://www.gnu.org/licenses/gpl-faq.html#GPLAndPlugins for details.
+
+For the full text of version 2 of the license, see
+https://www.gnu.org/licenses/gpl-2.0.html or '''GNU General Public License'''
+below.
+
+=== Copyright owners ===
+
+MediaWiki contributors, including those listed in the CREDITS file, hold the
+copyright to this work.
+
+=== Additional license information ===
+
+Some components of MediaWiki imported from other projects may be under other
+Free and Open Source, or Free Culture, licenses. Specific details of their
+licensing information can be found in those components.
+
+Sections of code written exclusively by Lee Crocker or Erik Moeller are also
+released into the public domain, which does not impair the obligations of users
+under the GPL for use of the whole code or other sections thereof.
+
+MediaWiki uses the following Creative Commons icons to illustrate links to the
+CC licenses:
+
+* resources/assets/licenses/cc-0.png
+* resources/assets/licenses/cc-by-nc-sa.png
+* resources/assets/licenses/cc-by-sa.png
+* resources/assets/licenses/cc-by.png
+
+These icons are trademarked, and used subject to the CC trademark license,
+available at http://creativecommons.org/policies#trademark
+
+== GNU GENERAL PUBLIC LICENSE ==
+
+Version 2, June 1991
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
+Everyone is permitted to copy and distribute verbatim copies
+of this license document, but changing it is not allowed.
+
+=== Preamble ===
+
+The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.)  You can apply it to
+your programs, too.
+
+When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+The precis

[MediaWiki-commits] [Gerrit] Fix MovePage Special Page for Korean - change (mediawiki/core)

2015-12-09 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/258102

Change subject: Fix MovePage Special Page for Korean
..

Fix MovePage Special Page for Korean

Its translation string has been changed, but translatewiki.net does
not allow editing special page directly, so I'm changing it directly
to make the new string on twn as main special page name. It is
already existing special page, so there should be no problem.

Also, removing my old legacy username which I don't use anymore.

Change-Id: I53ab891f74ce4413703a7e1d69dd7712eeaba68d
---
M languages/messages/MessagesKo.php
1 file changed, 1 insertion(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/02/258102/1

diff --git a/languages/messages/MessagesKo.php 
b/languages/messages/MessagesKo.php
index 38265ae..0da2291 100644
--- a/languages/messages/MessagesKo.php
+++ b/languages/messages/MessagesKo.php
@@ -20,7 +20,6 @@
  * @author Gjue
  * @author Ha98574
  * @author Hoo
- * @author Hym411
  * @author IRTC1015
  * @author ITurtle
  * @author Idh0854
@@ -128,7 +127,7 @@
'Mostlinkedcategories'  => array( '많이쓰는분류' ),
'Mostlinkedtemplates'   => array( '많이쓰는틀' ),
'Mostrevisions' => array( '역사긴문서' ),
-   'Movepage'  => array( '옮기기', '문서옮기기', '이동', '문서이동' ),
+   'Movepage'  => array( '이동', '문서이동', '옮기기', '문서옮기기' ),
'Mycontributions'   => array( '내기여', '내기여목록' ),
'MyLanguage'=> array( '내언어' ),
'Mypage'=> array( '내사용자문서' ),

-- 
To view, visit https://gerrit.wikimedia.org/r/258102
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I53ab891f74ce4413703a7e1d69dd7712eeaba68d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Update translation for Korean - change (mediawiki...Flow)

2015-11-20 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/254384

Change subject: Update translation for Korean
..

Update translation for Korean

Add EnableFlow alias.php and fix spacing for ns.php

Change-Id: I8d1ec68132bc295fd0cb69f4511a997df68690e0
---
M Flow.alias.php
M Flow.namespaces.php
2 files changed, 2 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Flow 
refs/changes/84/254384/1

diff --git a/Flow.alias.php b/Flow.alias.php
index 1708134..317f39d 100644
--- a/Flow.alias.php
+++ b/Flow.alias.php
@@ -50,6 +50,7 @@
 /** Korean (한국어) */
 $specialPageAliases['ko'] = array(
'Flow' => array( '플로우' ),
+   'EnableFlow' => array( '플로우활성화' ),
 );
 
 /** Northern Luri (لۊری شومالی) */
diff --git a/Flow.namespaces.php b/Flow.namespaces.php
index 2a7d499..98659fe 100644
--- a/Flow.namespaces.php
+++ b/Flow.namespaces.php
@@ -88,6 +88,7 @@
 $namespaceNames['ko'] = array(
NS_TOPIC => '주제',
 );
+
 /** Luxembourgish */
 $namespaceNames['lb'] = array(
NS_TOPIC =>  'Thema',

-- 
To view, visit https://gerrit.wikimedia.org/r/254384
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8d1ec68132bc295fd0cb69f4511a997df68690e0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Flow
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Modify timezone for cswiktionary - change (operations/mediawiki-config)

2015-10-09 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/244649

Change subject: Modify timezone for cswiktionary
..

Modify timezone for cswiktionary

This fixes T115048, request from the respective Community.

Bug: T115048
Change-Id: Ia6d9d409788e55b292732511b9d6c43d4207f8a3
---
M wmf-config/InitialiseSettings.php
1 file changed, 1 insertion(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/49/244649/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 561c3c2..69bf92a 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -240,6 +240,7 @@
'cnwikimedia' => 'Asia/Shanghai', // T98676
'cswiki' => 'Europe/Prague', // T73902
'cswikinews' => 'Europe/Prague', // T73902
+   'cswiktionary' => 'Europe/Prague', //T115048
'csbwiki' => 'Europe/Warsaw',
'csbwiktionary' => 'Europe/Warsaw',
'dawiki' => 'Europe/Berlin',

-- 
To view, visit https://gerrit.wikimedia.org/r/244649
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia6d9d409788e55b292732511b9d6c43d4207f8a3
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add License - change (mediawiki...MsUpload)

2015-09-25 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/241269

Change subject: Add License
..

Add License

Based on the license defined on extension.json, putting GPLv2+
license on the root dir.

Change-Id: I51c5a713506e94fd034f1d9dd85ac33470af9c65
---
A COPYING
1 file changed, 339 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/MsUpload 
refs/changes/69/241269/1

diff --git a/COPYING b/COPYING
new file mode 100644
index 000..d159169
--- /dev/null
+++ b/COPYING
@@ -0,0 +1,339 @@
+GNU GENERAL PUBLIC LICENSE
+   Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users.  This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it.  (Some other Free Software Foundation software is covered by
+the GNU Lesser General Public License instead.)  You can apply it to
+your programs, too.
+
+  When we speak of free software, we are referring to freedom, not
+price.  Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+  To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+  For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have.  You must make sure that they, too, receive or can get the
+source code.  And you must show them these terms so they know their
+rights.
+
+  We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+  Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software.  If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+  Finally, any free program is threatened constantly by software
+patents.  We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary.  To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.
+
+GNU GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License.  The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language.  (Hereinafter, translation is included without limitation in
+the term "modification".)  Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+  1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices 

[MediaWiki-commits] [Gerrit] Make consistent use of "Bot" - change (pywikibot/i18n)

2015-09-25 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/241267

Change subject: Make consistent use of "Bot"
..

Make consistent use of "Bot"

These files contains "Robot" in the edit summaries, someone in irc
said it should be Bot, therefore changing it. Also, convert 4 spaces
in checkimages/en.json to tab.

Change-Id: I1bfa034e6241fc4b3939aaaecd233105a68b5237
---
M basic/en.json
M checkimages/en.json
M piper/en.json
M pywikibot/en.json
M remove_edp_images/en.json
5 files changed, 24 insertions(+), 16 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/pywikibot/i18n 
refs/changes/67/241267/1

diff --git a/basic/en.json b/basic/en.json
index 225de00..1d3f6c3 100644
--- a/basic/en.json
+++ b/basic/en.json
@@ -1,4 +1,8 @@
 {
-   "@metadata": [],
-   "basic-changing": "Robot: Changing ..."
+   "@metadata": {
+   "authors": [
+   "Revi"
+   ]
+   },
+   "basic-changing": "Bot: Changing ..."
 }
diff --git a/checkimages/en.json b/checkimages/en.json
index 61d797e..f143c18 100644
--- a/checkimages/en.json
+++ b/checkimages/en.json
@@ -1,9 +1,10 @@
 {
-"@metadata": {
-"authors": [
-"Filnik"
-]
-},
+   "@metadata": {
+   "authors": [
+   "Filnik",
+   "Revi"
+   ]
+   },
 "checkimages-source-tag-comment": "Bot: Marking newly uploaded untagged 
file",
-"checkimages-source-notice-comment": "Robot: Requesting source 
information."
+"checkimages-source-notice-comment": "Bot: Requesting source information."
 }
diff --git a/piper/en.json b/piper/en.json
index c42f3b9..5bf2a77 100644
--- a/piper/en.json
+++ b/piper/en.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Ævar Arnfjörð Bjarmason"
+   "Ævar Arnfjörð Bjarmason",
+   "Revi"
]
},
-   "piper-edit-summary": "Robot: Piping the article text through 
%(filters)s"
+   "piper-edit-summary": "Bot: Piping the article text through %(filters)s"
 }
diff --git a/pywikibot/en.json b/pywikibot/en.json
index 0543378..89d9255 100644
--- a/pywikibot/en.json
+++ b/pywikibot/en.json
@@ -3,7 +3,8 @@
"authors": [
"Daniel Herding",
"Huji",
-   "Siebrand"
+   "Siebrand",
+   "Revi"
]
},
"pywikibot-enter-category-name": "Please enter the category name:",
@@ -13,7 +14,7 @@
"pywikibot-enter-new-text": "Please enter the new text:",
"pywikibot-enter-page-processing": "Which page should be processed?",
"pywikibot-enter-xml-filename": "Please enter the XML dump's filename:",
-   "pywikibot-fixes-fckeditor": "Robot: Fixing rich-editor html",
-   "pywikibot-fixes-html": "Robot: Converting/fixing HTML",
-   "pywikibot-fixes-syntax": "Robot: Fixing wiki syntax"
+   "pywikibot-fixes-fckeditor": "Bot: Fixing rich-editor html",
+   "pywikibot-fixes-html": "Bot: Converting/fixing HTML",
+   "pywikibot-fixes-syntax": "Bot: Fixing wiki syntax"
 }
diff --git a/remove_edp_images/en.json b/remove_edp_images/en.json
index e334114..33821ab 100644
--- a/remove_edp_images/en.json
+++ b/remove_edp_images/en.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Shizhao"
+   "Shizhao",
+   "Revi"
]
},
-   "remove_edp_images-edit-summary": "Robot: Fix EDP image use: 
[[%(title)s]]"
+   "remove_edp_images-edit-summary": "Bot: Fix EDP image use: 
[[%(title)s]]"
 }

-- 
To view, visit https://gerrit.wikimedia.org/r/241267
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1bfa034e6241fc4b3939aaaecd233105a68b5237
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/i18n
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Remove test.orain.org - change (pywikibot/core)

2015-09-17 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/239066

Change subject: Remove test.orain.org
..

Remove test.orain.org

Their server has been compromised, I don't expect them to be back
up shortly, so remove them from .trais.yml.

Change-Id: I9617a10bc4deeb58f6a8e7e9e2c0b0a7ce64cf08
---
M .travis.yml
1 file changed, 0 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/pywikibot/core 
refs/changes/66/239066/1

diff --git a/.travis.yml b/.travis.yml
index e18b15a..01b04ad 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -49,7 +49,6 @@
 
   - mkdir ~/.pywikibot
 
-  - if [[ "$FAMILY" == 'oraintest' ]]; then python pwb.py generate_family_file 
'https://test.orain.org/' oraintest ; fi
   - python pwb.py generate_family_file 'https://wiki.musicbrainz.org/' 
musicbrainz
   - if [[ $FAMILY == 'wpbeta' ]]; then
   python -m generate_family_file 
'http://'$LANGUAGE'.wikipedia.beta.wmflabs.org/' 'wpbeta' 'n' ;
@@ -123,8 +122,6 @@
   env: LANGUAGE=en FAMILY=wsbeta SITE_ONLY=1
 - python: '2.7'
   env: LANGUAGE=wikia FAMILY=wikia PYWIKIBOT2_TEST_NO_RC=1
-- python: '3.3'
-  env: LANGUAGE=en FAMILY=oraintest SITE_ONLY=1 
OAUTH_DOMAIN="test.orain.org"
 - python: '3.3'
   env: LANGUAGE=en FAMILY=musicbrainz SITE_ONLY=1
 - python: '3.4'

-- 
To view, visit https://gerrit.wikimedia.org/r/239066
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9617a10bc4deeb58f6a8e7e9e2c0b0a7ce64cf08
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add Korean translation - change (mediawiki...Flow)

2015-09-11 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/237624

Change subject: Add Korean translation
..

Add Korean translation

주제 matches the translation in i18n/ko.json so there should be
no problem with the existing translations.

Change-Id: Id9c83b17d75529adfa4b909c149e3afac6037317
---
M Flow.namespaces.php
1 file changed, 4 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Flow 
refs/changes/24/237624/1

diff --git a/Flow.namespaces.php b/Flow.namespaces.php
index c74f8eb..387e6e5 100644
--- a/Flow.namespaces.php
+++ b/Flow.namespaces.php
@@ -79,6 +79,10 @@
 NS_TOPIC =>  'Argomento',
 );
 
+/** Korean */
+$namespaceNames['ko'] = array(
+   NS_TOPIC => '주제',
+);
 /** Luxembourgish */
 $namespaceNames['lb'] = array(
NS_TOPIC =>  'Thema',

-- 
To view, visit https://gerrit.wikimedia.org/r/237624
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Id9c83b17d75529adfa4b909c149e3afac6037317
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Flow
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add Korean translation - change (mediawiki...Gadgets)

2015-09-11 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/237623

Change subject: Add Korean translation
..

Add Korean translation

Change-Id: Ib0994435955b6e46966916e0de24a49da780e1c9
---
M Gadgets.namespaces.php
1 file changed, 7 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Gadgets 
refs/changes/23/237623/1

diff --git a/Gadgets.namespaces.php b/Gadgets.namespaces.php
index 1404101..c3a031e 100644
--- a/Gadgets.namespaces.php
+++ b/Gadgets.namespaces.php
@@ -72,6 +72,13 @@
NS_GADGET_DEFINITION_TALK => 'Discussioni_definizione_accessorio',
 );
 
+$namespaceNames['ko'] = array(
+   NS_GADGET => '소도구',
+   NS_GADGET_TALK => '소도구토론',
+   NS_GADGET_DEFINITION => '소도구정의',
+   NS_GADGET_DEFINITIKN_TALK => '소도구정의토론',
+);
+
 $namespaceNames['lrc'] = array(
NS_GADGET => 'گأجئت',
NS_GADGET_TALK => 'چأک_چئنە_گأجئت',

-- 
To view, visit https://gerrit.wikimedia.org/r/237623
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib0994435955b6e46966916e0de24a49da780e1c9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Gadgets
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add Orya translation - change (mediawiki...Gadgets)

2015-09-11 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/237618

Change subject: Add Orya translation
..

Add Orya translation

Bug: T110879
Change-Id: I87a0a59fd69059dca8ce9d2a58d5e560d6f3b862
---
M Gadgets.namespaces.php
1 file changed, 7 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Gadgets 
refs/changes/18/237618/1

diff --git a/Gadgets.namespaces.php b/Gadgets.namespaces.php
index 1404101..66ca3ff 100644
--- a/Gadgets.namespaces.php
+++ b/Gadgets.namespaces.php
@@ -86,6 +86,13 @@
NS_GADGET_DEFINITION_TALK => 'گجت_توضیحات_گپ',
 );
 
+$namespaceNames['or'] = array(
+   NS_GADGET => 'ଗ୍ୟାଜେଟ',
+   NS_GADGET_TALK => 'ଗ୍ୟାଜେଟ_ଆଲୋଚନା',
+   NS_GADGET_DEFINITION => 'ଗ୍ୟାଜେଟ_ସଂଜ୍ଞା',
+   NS_GADGET_DEFINITION_TALK => 'ଗ୍ୟାଜେଟ_ସଂଜ୍ଞା_ଆଲୋଚନା',
+);
+
 $namespaceNames['pl'] = array(
NS_GADGET => 'Gadżet',
NS_GADGET_TALK => 'Dyskusja_gadżetu',

-- 
To view, visit https://gerrit.wikimedia.org/r/237618
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I87a0a59fd69059dca8ce9d2a58d5e560d6f3b862
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Gadgets
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add Orya translation - change (mediawiki...Flow)

2015-09-11 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/237616

Change subject: Add Orya translation
..

Add Orya translation

Per bug

Bug: T110879
Change-Id: Iebb09320d5d1cd2aec677c0d1de7059a5e0f6442
---
M Flow.namespaces.php
1 file changed, 6 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Flow 
refs/changes/16/237616/1

diff --git a/Flow.namespaces.php b/Flow.namespaces.php
index c74f8eb..e2e0aa8 100644
--- a/Flow.namespaces.php
+++ b/Flow.namespaces.php
@@ -1,3 +1,4 @@
+
   'Subjècte',
 );
 
+/** Orya */
+$namespaceNames['or'] = array(
+   NS_TOPIC =>  'ବିଷୟ',
+);
+
 /** Polish */
 $namespaceNames['pl'] = array(
NS_TOPIC =>  'Wątek',

-- 
To view, visit https://gerrit.wikimedia.org/r/237616
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iebb09320d5d1cd2aec677c0d1de7059a5e0f6442
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Flow
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Fix Korean Translation - change (mediawiki/core)

2015-09-05 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/236402

Change subject: Fix Korean Translation
..

Fix Korean Translation

Consistency with other translations (ie. 연쇄보호) in the mediawiki
core and extensions

Also add myself as author (have other commits for T68479).

Change-Id: Iab7b60adc758071b025f83f6901878322373ac01
---
M languages/messages/MessagesKo.php
1 file changed, 2 insertions(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/core 
refs/changes/02/236402/1

diff --git a/languages/messages/MessagesKo.php 
b/languages/messages/MessagesKo.php
index abe287a..be0d720 100644
--- a/languages/messages/MessagesKo.php
+++ b/languages/messages/MessagesKo.php
@@ -35,6 +35,7 @@
  * @author Pi.C.Noizecehx
  * @author Priviet
  * @author PuzzletChung
+ * @author Revi
  * @author TheAlpha for knowledge
  * @author ToePeu
  * @author Yjs5497
@@ -338,7 +339,7 @@
'numberingroup' => array( '1', '권한별사용자수', '그룹별사용자수', 
'NUMBERINGROUP', 'NUMINGROUP' ),
'staticredirect'=> array( '1', '__넘겨주기고정__', 
'__STATICREDIRECT__' ),
'protectionlevel'   => array( '1', '보호수준', 'PROTECTIONLEVEL' ),
-   'cascadingsources'  => array( '1', '계단식원본', 'CASCADINGSOURCES' 
),
+   'cascadingsources'  => array( '1', '연쇄식원본', 'CASCADINGSOURCES' 
),
'formatdate'=> array( '0', '날짜형식', 'formatdate', 
'dateformat' ),
'url_path'  => array( '0', '경로', 'PATH' ),
'url_wiki'  => array( '0', '위키', 'WIKI' ),

-- 
To view, visit https://gerrit.wikimedia.org/r/236402
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iab7b60adc758071b025f83f6901878322373ac01
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/core
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Change needs_volunteer to Lowest - change (operations/puppet)

2015-09-02 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/235463

Change subject: Change needs_volunteer to Lowest
..

Change needs_volunteer to Lowest

Since it was changed a while ago

See also list/pipermail/wikitech-l/2015-September/083020.html

Change-Id: I3684cc5205df94bd3ed0592abe83df03f87b0374
---
M modules/phabricator/templates/community_metrics.sh.erb
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/63/235463/1

diff --git a/modules/phabricator/templates/community_metrics.sh.erb 
b/modules/phabricator/templates/community_metrics.sh.erb
index 9094538..8baac57 100644
--- a/modules/phabricator/templates/community_metrics.sh.erb
+++ b/modules/phabricator/templates/community_metrics.sh.erb
@@ -203,7 +203,7 @@
 High: ${mediantasksopen_high}
 Normal: ${mediantasksopen_normal}
 Low: ${mediantasksopen_low}
-Needs Volunteer: ${mediantasksopen_needsvolunteer}
+Lowest: ${mediantasksopen_needsvolunteer}
 (How long tasks have been open, not how long they have had that priority)
 
 TODO: Numbers which refer to closed tasks might not be correct, as described 
in T1003.

-- 
To view, visit https://gerrit.wikimedia.org/r/235463
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I3684cc5205df94bd3ed0592abe83df03f87b0374
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Create Draft (118) namespace on Korean Wikipedia - change (operations/mediawiki-config)

2015-03-15 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/196987

Change subject: Create Draft (118) namespace on Korean Wikipedia
..

Create Draft (118) namespace on Korean Wikipedia

Talk namespace added, nofollow/noinde to prevent
search engine indexing.

Bug: T92798
Change-Id: I7f7d9fc16ad4ce0d19da501a2e519341eaa2e785
---
M wmf-config/InitialiseSettings.php
1 file changed, 7 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/87/196987/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 5e5af43..ee2ab1c 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -4698,6 +4698,8 @@
101 => '포털토론', # T87528
102 => '위키프로젝트', # 27651
103 => '위키프로젝트토론', # 27651
+   118 => '초안' # T92798
+   119 => '초안토론' #T92798
),
'kuwiki' => array(
100 => 'Portal',
@@ -9809,6 +9811,10 @@
118 => 'noindex,nofollow', // Draft - T86329
119 => 'noindex,nofollow',
),
+   'kowiki' => array(
+   118 => 'noindex,nofollow', //Draft - T92798
+   119 => 'noindex,nofollow', //T92798
+   ),
'ruwiki' => array(
102 => 'noindex,follow',
103 => 'noindex,follow',
@@ -10026,6 +10032,7 @@
'default' => array(),
'enwiki' => array( 118, 119 ), // draft and draft talk
'hewiki' => array( 118, 119 ), // draft and draft talk - T86329
+   'kowiki' => array( 118, 119 ), // draft and draft talkkm - T92798
 ),
 
 'wgRevisionCacheExpiry' => array(

-- 
To view, visit https://gerrit.wikimedia.org/r/196987
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7f7d9fc16ad4ce0d19da501a2e519341eaa2e785
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Add Korean translation of namespaces - change (mediawiki...ProofreadPage)

2014-10-10 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/166091

Change subject: Add Korean translation of namespaces
..

Add Korean translation of namespaces

After seeing patch 166070, I found Korean translation is missing...

Change-Id: Ic4a5f9328ce85f31e6020bb8b4e517972a40f220
---
M ProofreadPage.namespaces.php
1 file changed, 8 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ProofreadPage 
refs/changes/91/166091/1

diff --git a/ProofreadPage.namespaces.php b/ProofreadPage.namespaces.php
index c7e8ea6..20c2e04 100644
--- a/ProofreadPage.namespaces.php
+++ b/ProofreadPage.namespaces.php
@@ -234,6 +234,14 @@
'index_talk' =>  'ಪರಿವಿಡಿ_ಚರ್ಚೆ'
 );
 
+/** Korean (한국어) */
+$proofreadPageNamespacesNames['ko'] = array(
+   'page' => '페이지',
+   'page_talk' => '페이지토론',
+   'index' => '색인',
+   'index_talk' => '색인토론',
+);
+
 /** Latin (Latina) */
 $proofreadPageNamespacesNames['la'] = array(
'page' => 'Pagina',

-- 
To view, visit https://gerrit.wikimedia.org/r/166091
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic4a5f9328ce85f31e6020bb8b4e517972a40f220
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ProofreadPage
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits


[MediaWiki-commits] [Gerrit] Set wgNameSpaceProtection on kowikinews - change (operations/mediawiki-config)

2014-08-25 Thread Revi (Code Review)
Revi has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/156235

Change subject: Set wgNameSpaceProtection on kowikinews
..

Set wgNameSpaceProtection on kowikinews

Non-sysops cannot edit NS_FILE and NS_FILE_TALK on kowikinews, so
non-sysops should not be able to edit there.

Bug: 70022
Change-Id: I9430827b19cfbcc4e00c9358c4b6bde33661ca5c
---
M wmf-config/InitialiseSettings.php
1 file changed, 4 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/mediawiki-config 
refs/changes/35/156235/1

diff --git a/wmf-config/InitialiseSettings.php 
b/wmf-config/InitialiseSettings.php
index 6b61bb4..6d419c7 100644
--- a/wmf-config/InitialiseSettings.php
+++ b/wmf-config/InitialiseSettings.php
@@ -9749,6 +9749,10 @@
NS_IMAGE_TALK => array( 'editinterface' ),
828 => array( 'autoconfirmed' ), // Bug 53558 - Module:
),
+   '+kowikinews' => array(
+   NS_FILE => array( 'editinterface' ),
+   NS_FILE_TALK => array( 'editinterface' ), // Bug 70022
+   ),
'+ptwiki' => array(
NS_IMAGE => array( 'autoconfirmed' ),
),

-- 
To view, visit https://gerrit.wikimedia.org/r/156235
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9430827b19cfbcc4e00c9358c4b6bde33661ca5c
Gerrit-PatchSet: 1
Gerrit-Project: operations/mediawiki-config
Gerrit-Branch: master
Gerrit-Owner: Revi 

___
MediaWiki-commits mailing list
MediaWiki-commits@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits