[MediaWiki-commits] [Gerrit] Revert "Don't ignore l10n-bot in gate-and-submit pipeline" - change (integration/config)

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

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

Change subject: Revert "Don't ignore l10n-bot in gate-and-submit pipeline"
..

Revert "Don't ignore l10n-bot in gate-and-submit pipeline"

Running out of disk space on CI servers, can't handle the
additional job load. 

This reverts commit 2924c5edd243ab18b783edc1ec367fa18460ff2d.

Change-Id: I81b0a478dd2a0794bf17117b534d465116e69e33
---
M zuul/layout.yaml
1 file changed, 2 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/config 
refs/changes/01/199201/1

diff --git a/zuul/layout.yaml b/zuul/layout.yaml
index 77bf252..e5d7827 100644
--- a/zuul/layout.yaml
+++ b/zuul/layout.yaml
@@ -398,6 +398,8 @@
 trigger:
   gerrit:
 - event: comment-added
+  email:
+   - ^(?!l10n-bot@translatewiki\.net).*$
   approval:
 - code-review: 2
 start:

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I81b0a478dd2a0794bf17117b534d465116e69e33
Gerrit-PatchSet: 1
Gerrit-Project: integration/config
Gerrit-Branch: master
Gerrit-Owner: Legoktm 

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


[MediaWiki-commits] [Gerrit] donate - Enable HSTS max-age=7 days - change (operations/puppet)

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

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

Change subject: donate - Enable HSTS max-age=7 days
..

donate - Enable HSTS max-age=7 days

https://donate.wikimedia.org is HTTPS only.

Bug: T40516
Change-Id: If5c937602ad3ed8e5bed06b875ce994c0b4848f2
---
M modules/mediawiki/files/apache/sites/main.conf
1 file changed, 3 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/00/199200/1

diff --git a/modules/mediawiki/files/apache/sites/main.conf 
b/modules/mediawiki/files/apache/sites/main.conf
index df1f752..6d13608 100644
--- a/modules/mediawiki/files/apache/sites/main.conf
+++ b/modules/mediawiki/files/apache/sites/main.conf
@@ -324,6 +324,9 @@
 RewriteCond %{HTTP:X-Forwarded-Proto} !https
 RewriteRule (.) https://donate.wikimedia.org%{REQUEST_URI} [R=301]
 
+# Enable HTTP Strict Transport Security (HSTS)
+Header set Strict-Transport-Security "max-age=604800"
+
 RewriteRule ^/$ 
https://donate.wikimedia.org/wiki/Special:FundraiserRedirector [R=302,L]
 
 # Don't allow rewriting robots.txt

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

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

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


[MediaWiki-commits] [Gerrit] Move CHROME_BIN from npm-set-env to global-set-env - change (integration/jenkins)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Move CHROME_BIN from npm-set-env to global-set-env
..


Move CHROME_BIN from npm-set-env to global-set-env

MediaWiki extension jobs using QUnit are starting to make use of
Karma. So CHROME_BIN is no longer exclusive to "npm test" type
of jobs.

Also include npm-set-env to npm-setup for semantic correctness.

Change-Id: I7ca7caa544153cf5395a975c5556c636249061d1
---
M bin/global-set-env.sh
M bin/npm-set-env.sh
M bin/npm-setup.sh
3 files changed, 6 insertions(+), 12 deletions(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/bin/global-set-env.sh b/bin/global-set-env.sh
index d217ebb..55d3e45 100755
--- a/bin/global-set-env.sh
+++ b/bin/global-set-env.sh
@@ -13,3 +13,8 @@
 # Integration slaves have an Xvfb window with server number 94 reserved for
 # local applications (e.g. Chrome/Firefox).
 export DISPLAY=':94'
+
+# Set CHROME_BIN for projects using karma-chrome-launcher as our slaves
+# have Chromium instead of Chrome.
+# https://github.com/karma-runner/karma-chrome-launcher/pull/41
+export CHROME_BIN=`which chromium-browser`
diff --git a/bin/npm-set-env.sh b/bin/npm-set-env.sh
index 490ff59..996b7f3 100755
--- a/bin/npm-set-env.sh
+++ b/bin/npm-set-env.sh
@@ -1,15 +1,3 @@
 #!/bin/bash -eu
 
 . /srv/deployment/integration/slave-scripts/bin/global-set-env.sh
-
-#
-# Script to set up custom environement variables for 'npm test'.
-#
-# Must be run in the directory containing package.json.
-# For jobs that manually 'cd' into such directory, don't run it too early!
-#
-
-# Set CHROME_BIN for projects using karma-chrome-launcher as our slaves
-# have Chromium instead of Chrome.
-# https://github.com/karma-runner/karma-chrome-launcher/pull/41
-export CHROME_BIN=`which chromium-browser`
diff --git a/bin/npm-setup.sh b/bin/npm-setup.sh
index 2400672..cb356e4 100755
--- a/bin/npm-setup.sh
+++ b/bin/npm-setup.sh
@@ -1,4 +1,5 @@
 #!/bin/bash -eu
 
 . /srv/deployment/integration/slave-scripts/bin/global-setup.sh
+. /srv/deployment/integration/slave-scripts/bin/npm-set-env.sh
 

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I7ca7caa544153cf5395a975c5556c636249061d1
Gerrit-PatchSet: 1
Gerrit-Project: integration/jenkins
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Krinkle 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Move CHROME_BIN from npm-set-env to global-set-env - change (integration/jenkins)

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

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

Change subject: Move CHROME_BIN from npm-set-env to global-set-env
..

Move CHROME_BIN from npm-set-env to global-set-env

MediaWiki extension jobs using QUnit are starting to make use of
Karma. So CHROME_BIN is no longer exclusive to "npm test" type
of jobs.

Also include npm-set-env to npm-setup for semantic correctness.

Change-Id: I7ca7caa544153cf5395a975c5556c636249061d1
---
M bin/global-set-env.sh
M bin/npm-set-env.sh
M bin/npm-setup.sh
3 files changed, 6 insertions(+), 12 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins 
refs/changes/99/199199/1

diff --git a/bin/global-set-env.sh b/bin/global-set-env.sh
index d217ebb..55d3e45 100755
--- a/bin/global-set-env.sh
+++ b/bin/global-set-env.sh
@@ -13,3 +13,8 @@
 # Integration slaves have an Xvfb window with server number 94 reserved for
 # local applications (e.g. Chrome/Firefox).
 export DISPLAY=':94'
+
+# Set CHROME_BIN for projects using karma-chrome-launcher as our slaves
+# have Chromium instead of Chrome.
+# https://github.com/karma-runner/karma-chrome-launcher/pull/41
+export CHROME_BIN=`which chromium-browser`
diff --git a/bin/npm-set-env.sh b/bin/npm-set-env.sh
index 490ff59..996b7f3 100755
--- a/bin/npm-set-env.sh
+++ b/bin/npm-set-env.sh
@@ -1,15 +1,3 @@
 #!/bin/bash -eu
 
 . /srv/deployment/integration/slave-scripts/bin/global-set-env.sh
-
-#
-# Script to set up custom environement variables for 'npm test'.
-#
-# Must be run in the directory containing package.json.
-# For jobs that manually 'cd' into such directory, don't run it too early!
-#
-
-# Set CHROME_BIN for projects using karma-chrome-launcher as our slaves
-# have Chromium instead of Chrome.
-# https://github.com/karma-runner/karma-chrome-launcher/pull/41
-export CHROME_BIN=`which chromium-browser`
diff --git a/bin/npm-setup.sh b/bin/npm-setup.sh
index 2400672..cb356e4 100755
--- a/bin/npm-setup.sh
+++ b/bin/npm-setup.sh
@@ -1,4 +1,5 @@
 #!/bin/bash -eu
 
 . /srv/deployment/integration/slave-scripts/bin/global-setup.sh
+. /srv/deployment/integration/slave-scripts/bin/npm-set-env.sh
 

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I7ca7caa544153cf5395a975c5556c636249061d1
Gerrit-PatchSet: 1
Gerrit-Project: integration/jenkins
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

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


[MediaWiki-commits] [Gerrit] Stats: Remove wrong group by from stats query - change (mediawiki...ContentTranslation)

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

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

Change subject: Stats: Remove wrong group by from stats query
..

Stats: Remove wrong group by from stats query

This was causing duplicated records for a language pair on result
causing the wrong display and sum in Special:CXStats page

Change-Id: If8ad38d185de7fb075cc4761a8a1b41c1bed4357
---
M includes/Translation.php
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ContentTranslation 
refs/changes/98/199198/1

diff --git a/includes/Translation.php b/includes/Translation.php
index 780d228..96d3849 100644
--- a/includes/Translation.php
+++ b/includes/Translation.php
@@ -139,7 +139,6 @@
'GROUP BY' => array(
'translation_source_language',
'translation_target_language',
-   'translation_status'
),
)
);
@@ -180,7 +179,6 @@
'GROUP BY' => array(
'translation_source_language',
'translation_target_language',
-   'translation_status'
),
)
);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If8ad38d185de7fb075cc4761a8a1b41c1bed4357
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ContentTranslation
Gerrit-Branch: wmf/1.25wmf22
Gerrit-Owner: KartikMistry 
Gerrit-Reviewer: Santhosh 

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


[MediaWiki-commits] [Gerrit] Stats: Remove wrong group by from stats query - change (mediawiki...ContentTranslation)

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

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

Change subject: Stats: Remove wrong group by from stats query
..

Stats: Remove wrong group by from stats query

This was causing duplicated records for a language pair on result
causing the wrong display and sum in Special:CXStats page

Change-Id: If8ad38d185de7fb075cc4761a8a1b41c1bed4357
---
M includes/Translation.php
1 file changed, 0 insertions(+), 2 deletions(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/ContentTranslation 
refs/changes/97/199197/1

diff --git a/includes/Translation.php b/includes/Translation.php
index 780d228..96d3849 100644
--- a/includes/Translation.php
+++ b/includes/Translation.php
@@ -139,7 +139,6 @@
'GROUP BY' => array(
'translation_source_language',
'translation_target_language',
-   'translation_status'
),
)
);
@@ -180,7 +179,6 @@
'GROUP BY' => array(
'translation_source_language',
'translation_target_language',
-   'translation_status'
),
)
);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: If8ad38d185de7fb075cc4761a8a1b41c1bed4357
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ContentTranslation
Gerrit-Branch: wmf/1.25wmf21
Gerrit-Owner: KartikMistry 
Gerrit-Reviewer: Santhosh 

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


[MediaWiki-commits] [Gerrit] tools: Specify full path for uwsgi mountpoint - change (operations/puppet)

2015-03-23 Thread Yuvipanda (Code Review)
Yuvipanda has submitted this change and it was merged.

Change subject: tools: Specify full path for uwsgi mountpoint
..


tools: Specify full path for uwsgi mountpoint

Change-Id: Ibd5f8981a6e6c41d5107f2aeecf6f01802cd0927
---
M modules/toollabs/files/tool-uwsgi-python
1 file changed, 1 insertion(+), 2 deletions(-)

Approvals:
  Yuvipanda: Verified; Looks good to me, approved



diff --git a/modules/toollabs/files/tool-uwsgi-python 
b/modules/toollabs/files/tool-uwsgi-python
index d001578..e30b239 100755
--- a/modules/toollabs/files/tool-uwsgi-python
+++ b/modules/toollabs/files/tool-uwsgi-python
@@ -13,12 +13,11 @@
 '/usr/bin/uwsgi',
 '--plugin', 'python',
 '--http-socket', ':' + str(PORT),
-'--wsgi-file', 'app.py',
 '--chdir', os.path.expanduser('~/www/python/src'),
 '--logto', os.path.expanduser('~/uwsgi.log'),
 '--callable', 'app',
 '--manage-script-name',
-'--mount', '/%s=%s' % (TOOL, 'app.py'),
+'--mount', '/%s=%s' % (TOOL, 
os.path.expanduser('~/www/python/src/app.py')),
 '--die-on-term',
 '--strict',
 '--master'

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibd5f8981a6e6c41d5107f2aeecf6f01802cd0927
Gerrit-PatchSet: 2
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Yuvipanda 
Gerrit-Reviewer: Yuvipanda 

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


[MediaWiki-commits] [Gerrit] Special:PageTranslation: use JobQueue for message index rebuild - change (mediawiki...Translate)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Special:PageTranslation: use JobQueue for message index rebuild
..


Special:PageTranslation: use JobQueue for message index rebuild

Bug: T90704
Change-Id: I08b4485afbec1606b459c43137c2dd5ecbe682c4
---
M tag/SpecialPageTranslation.php
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Aaron Schulz: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/tag/SpecialPageTranslation.php b/tag/SpecialPageTranslation.php
index 7efbfd0..7d4daf4 100644
--- a/tag/SpecialPageTranslation.php
+++ b/tag/SpecialPageTranslation.php
@@ -863,7 +863,7 @@
 
// Clear more caches
$page->getTitle()->invalidateCache();
-   MessageIndexRebuildJob::newJob()->run();
+   MessageIndexRebuildJob::newJob()->insert();
 
return false;
}

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I08b4485afbec1606b459c43137c2dd5ecbe682c4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Translate
Gerrit-Branch: master
Gerrit-Owner: Nikerabbit 
Gerrit-Reviewer: Aaron Schulz 
Gerrit-Reviewer: Nikerabbit 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] tools: Specify full path for uwsgi mountpoint - change (operations/puppet)

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

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

Change subject: tools: Specify full path for uwsgi mountpoint
..

tools: Specify full path for uwsgi mountpoint

Change-Id: Ibd5f8981a6e6c41d5107f2aeecf6f01802cd0927
---
M modules/toollabs/files/tool-uwsgi-python
1 file changed, 1 insertion(+), 2 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/96/199196/1

diff --git a/modules/toollabs/files/tool-uwsgi-python 
b/modules/toollabs/files/tool-uwsgi-python
index d001578..e30b239 100755
--- a/modules/toollabs/files/tool-uwsgi-python
+++ b/modules/toollabs/files/tool-uwsgi-python
@@ -13,12 +13,11 @@
 '/usr/bin/uwsgi',
 '--plugin', 'python',
 '--http-socket', ':' + str(PORT),
-'--wsgi-file', 'app.py',
 '--chdir', os.path.expanduser('~/www/python/src'),
 '--logto', os.path.expanduser('~/uwsgi.log'),
 '--callable', 'app',
 '--manage-script-name',
-'--mount', '/%s=%s' % (TOOL, 'app.py'),
+'--mount', '/%s=%s' % (TOOL, 
os.path.expanduser('~/www/python/src/app.py')),
 '--die-on-term',
 '--strict',
 '--master'

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

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

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


[MediaWiki-commits] [Gerrit] Create npm-setup.sh - change (integration/jenkins)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Create npm-setup.sh
..


Create npm-setup.sh

Change-Id: I5ceb5bb2bca09210e3f6cfb11e12709c1d172ea7
---
A bin/npm-setup.sh
1 file changed, 4 insertions(+), 0 deletions(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/bin/npm-setup.sh b/bin/npm-setup.sh
new file mode 100755
index 000..2400672
--- /dev/null
+++ b/bin/npm-setup.sh
@@ -0,0 +1,4 @@
+#!/bin/bash -eu
+
+. /srv/deployment/integration/slave-scripts/bin/global-setup.sh
+

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5ceb5bb2bca09210e3f6cfb11e12709c1d172ea7
Gerrit-PatchSet: 1
Gerrit-Project: integration/jenkins
Gerrit-Branch: master
Gerrit-Owner: Krinkle 
Gerrit-Reviewer: Hashar 
Gerrit-Reviewer: Krinkle 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Create npm-setup.sh - change (integration/jenkins)

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

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

Change subject: Create npm-setup.sh
..

Create npm-setup.sh

Change-Id: I5ceb5bb2bca09210e3f6cfb11e12709c1d172ea7
---
A bin/npm-setup.sh
1 file changed, 4 insertions(+), 0 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins 
refs/changes/95/199195/1

diff --git a/bin/npm-setup.sh b/bin/npm-setup.sh
new file mode 100755
index 000..2400672
--- /dev/null
+++ b/bin/npm-setup.sh
@@ -0,0 +1,4 @@
+#!/bin/bash -eu
+
+. /srv/deployment/integration/slave-scripts/bin/global-setup.sh
+

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5ceb5bb2bca09210e3f6cfb11e12709c1d172ea7
Gerrit-PatchSet: 1
Gerrit-Project: integration/jenkins
Gerrit-Branch: master
Gerrit-Owner: Krinkle 

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


[MediaWiki-commits] [Gerrit] Stats: Remove wrong group by from stats query - change (mediawiki...ContentTranslation)

2015-03-23 Thread Nikerabbit (Code Review)
Nikerabbit has submitted this change and it was merged.

Change subject: Stats: Remove wrong group by from stats query
..


Stats: Remove wrong group by from stats query

This was causing duplicated records for a language pair on result
causing the wrong display and sum in Special:CXStats page

Change-Id: If8ad38d185de7fb075cc4761a8a1b41c1bed4357
---
M includes/Translation.php
1 file changed, 0 insertions(+), 2 deletions(-)

Approvals:
  KartikMistry: Looks good to me, approved
  Amire80: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/includes/Translation.php b/includes/Translation.php
index 780d228..96d3849 100644
--- a/includes/Translation.php
+++ b/includes/Translation.php
@@ -139,7 +139,6 @@
'GROUP BY' => array(
'translation_source_language',
'translation_target_language',
-   'translation_status'
),
)
);
@@ -180,7 +179,6 @@
'GROUP BY' => array(
'translation_source_language',
'translation_target_language',
-   'translation_status'
),
)
);

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

Gerrit-MessageType: merged
Gerrit-Change-Id: If8ad38d185de7fb075cc4761a8a1b41c1bed4357
Gerrit-PatchSet: 2
Gerrit-Project: mediawiki/extensions/ContentTranslation
Gerrit-Branch: master
Gerrit-Owner: Santhosh 
Gerrit-Reviewer: Amire80 
Gerrit-Reviewer: KartikMistry 
Gerrit-Reviewer: Nikerabbit 
Gerrit-Reviewer: Santhosh 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Run global-teardown after jobs using npm-set-env - change (integration/config)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Run global-teardown after jobs using npm-set-env
..


Run global-teardown after jobs using npm-set-env

Follows-up I386ceb70.

Use npm-setup.sh instead of npm-set-env, and ensure global-teardown
(or a supetset, like mw-teardown) is run.

npm jobs now create their own TMPDIR, and teardown cleans it up.

Bug: T90836
Change-Id: Ibf77368d2498be8607359f07062a8b48c518246a
---
M jjb/job-templates.yaml
M jjb/macro.yaml
M jjb/mediawiki-extensions.yaml
M jjb/mediawiki.yaml
M jjb/misc.yaml
M jjb/parsoidsvc.yaml
6 files changed, 42 insertions(+), 11 deletions(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/jjb/job-templates.yaml b/jjb/job-templates.yaml
index c464a8d..1712d5f 100644
--- a/jjb/job-templates.yaml
+++ b/jjb/job-templates.yaml
@@ -77,6 +77,8 @@
  - zuul
 builders:
  - npm
+publishers:
+ - global-teardown
 
 - job:
 name: 'npm'
@@ -87,6 +89,8 @@
  - zuul
 builders:
  - npm
+publishers:
+ - global-teardown
 
 - job-template:
 name: '{name}-{repository}-npm'
@@ -98,6 +102,8 @@
 builders:
  - npm-oid:
  repository: '{repository}'
+publishers:
+ - global-teardown
 
 # Run composer update and composer test
 # Intended for libraries that are published as composer packages
diff --git a/jjb/macro.yaml b/jjb/macro.yaml
index c64beae..c527140 100644
--- a/jjb/macro.yaml
+++ b/jjb/macro.yaml
@@ -95,25 +95,23 @@
 builders:
  - shell: /srv/deployment/integration/slave-scripts/bin/json-lint.php .
 
-# This build step is for projects that have their dev environment configured
-# around npm. This will fetch any npm dependencies into a local node_modules
-# directory in the workspace, and run associated 'scripts' commands as
-# specified in the package.json file (install and test).
-#
+# ALWAYS pair with 'global-teardown'
 - builder:
 name: npm-install
 builders:
 - shell: |
-. /srv/deployment/integration/slave-scripts/bin/npm-set-env.sh
+. /srv/deployment/integration/slave-scripts/bin/npm-setup.sh
 node --version
 npm --version
 rm -rf node_modules
 npm install
+
+# ALWAYS pair with 'global-teardown'
 - builder:
 name: npm
 builders:
 - shell: |
-. /srv/deployment/integration/slave-scripts/bin/npm-set-env.sh
+. /srv/deployment/integration/slave-scripts/bin/npm-setup.sh
 node --version
 npm --version
 rm -rf node_modules
@@ -122,13 +120,15 @@
 
 # Variant that can use a deploy repo for the dependencies.
 # See macro setup-npm-oid below.
+#
+# ALWAYS pair with 'global-teardown'
 - builder:
 name: npm-oid
 builders:
  - setup-npm-oid:
  repository: '{repository}'
  - shell: |
- . /srv/deployment/integration/slave-scripts/bin/npm-set-env.sh
+ . /srv/deployment/integration/slave-scripts/bin/npm-setup.sh
  # node_modules is not purged, taken care of by setup-npm-oid
 
  node --version
@@ -136,6 +136,16 @@
  . npm-oid.env
  cd "$NPM_SET_PATH"
  npm test
+
+- publisher:
+name: global-teardown
+publishers:
+ - postbuildscript:
+ builders:
+  - shell: 
"/srv/deployment/integration/slave-scripts/bin/global-teardown.sh"
+ # Postbuild options are confusing, setting both to false ensures the 
script always runs.
+ onsuccess: False
+ onfailure: False
 
 # cxserver and parsoid services come with two repositories:
 # eg
@@ -263,6 +273,7 @@
 echo "Running JSDuck..."
 jsduck
 
+# ALWAYS pair with 'qunit-cleanup'
 - builder:
 name: prepare-qunit-localhost
 builders:
@@ -289,8 +300,8 @@
 
 # qunit
 #
-# ALWAYS pair with 'qunit-cleanup' publisher to ensure we don't leave
-# garbage behind in /srv/localhost/qunit
+# ALWAYS pair with 'qunit-cleanup'
+# ALWAYS pair with 'global-teardown' (for npm-setup)
 - builder:
 name: qunit-querystring
 builders:
@@ -316,7 +327,7 @@
  - shell: |
 . /srv/deployment/integration/slave-scripts/bin/mw-set-env-qunit.sh
 cd $MW_INSTALL_PATH
-. /srv/deployment/integration/slave-scripts/bin/npm-set-env.sh
+. /srv/deployment/integration/slave-scripts/bin/npm-setup.sh
 rm -rf node_modules
 npm install
 grunt karma:main
diff --git a/jjb/mediawiki-extensions.yaml b/jjb/mediawiki-extensions.yaml
index adb2d49..939d3dd 100644
--- a/jjb/mediawiki-extensions.yaml
+++ b/jjb/mediawiki-extensions.yaml
@@ -22,6 +22,8 @@
  - zuul
 builders:
  - npm
+publishers:
+ - global-teardown
 
 # Template to run browsertests for an extension
 # Parameters: dependencies
diff --git a/jjb/mediawiki.yaml b/jjb/mediawiki.yaml
index 8162270..e6cc410 100644
--- a/jjb/mediawiki.yaml
+++ b/jjb/mediawiki.yaml
@@ -68,6 +68,8 @@
  - doc-p

[MediaWiki-commits] [Gerrit] Use https in composer.json - change (mediawiki...cldr)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Use https in composer.json
..


Use https in composer.json

Change-Id: I7f622e3ef083bd57053474b8f84d580d6f249a29
---
M composer.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Nikerabbit: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/composer.json b/composer.json
index 3b18ca5..26b5707 100644
--- a/composer.json
+++ b/composer.json
@@ -2,7 +2,7 @@
"name": "mediawiki/cldr",
"type": "mediawiki-extension",
"description": "CLDR extension contains local language names for 
different languages, countries, and currencies extracted from CLDR data",
-   "homepage": "http://www.mediawiki.org/wiki/Extension:CLDR";,
+   "homepage": "https://www.mediawiki.org/wiki/Extension:CLDR";,
"license": "GPL-2.0",
 
"require": {

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I7f622e3ef083bd57053474b8f84d580d6f249a29
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/cldr
Gerrit-Branch: master
Gerrit-Owner: Umherirrender 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: Nikerabbit 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Bug fix setting TSR in defn lists - fixes DSR inconsistency ... - change (mediawiki...parsoid)

2015-03-23 Thread Subramanya Sastry (Code Review)
Subramanya Sastry has uploaded a new change for review.

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

Change subject: Bug fix setting TSR in defn lists - fixes DSR inconsistency 
warnings
..

Bug fix setting TSR in defn lists - fixes DSR inconsistency warnings

* This was old code that had some useless complex logic for dt->dd
  and dd->dt transitions. However, all that really mattered was
  whether the dt-dd list was single-line or multi-line wikitext.

* Discovered by investigating inconsistency warnings in Kibana
  and finding a reduced test case: "*;a\n*:b" that reproduced
  one of the warnings.

* This patch eliminates the DSR inconsistency warning on this
  test case and also reduces DSR inconsistency warnings for
  parser tests from 48 to 41.

* The only blacklist change is in DSR output for a blacklisted
  html2html test.

Change-Id: I4e98a25a67ebdcfe03b176c18428005c6a83478c
---
M lib/ext.core.ListHandler.js
M tests/parserTests-blacklist.js
2 files changed, 11 insertions(+), 14 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/parsoid 
refs/changes/94/199194/1

diff --git a/lib/ext.core.ListHandler.js b/lib/ext.core.ListHandler.js
index 6c53357..7e0c142 100644
--- a/lib/ext.core.ListHandler.js
+++ b/lib/ext.core.ListHandler.js
@@ -24,8 +24,8 @@
this.env = manager.env;
 }
 
-ListHandler.prototype.listRank = 2.49; // before PostExpandParagraphHandler
-ListHandler.prototype.anyRank = 2.49 + 0.001; // before 
PostExpandParagraphHandler
+ListHandler.prototype.listRank = 2.49; // before Sanitizer
+ListHandler.prototype.anyRank = 2.49 + 0.001; // before Sanitizer
 
 ListHandler.prototype.bulletCharsMap = {
'*': { list: 'ul', item: 'li' },
@@ -324,24 +324,21 @@
var endTag = this.currListFrame.endtags.pop();
this.currListFrame.endtags.push(new EndTagTk( newName 
));
 
-   /* 
-* 1. ;a:b  (;a  -> :b ) is a dt -> dd transition
-* 2. ;;a:b (;;a -> ;:b) is a dt -> dd transition
-*;;c:d (;:b -> ;;c) is a dd -> dt transition
-* 3. *;a:b (*:a -> *;b) is a dt -> dd transition
-* -- --*/
var newTag;
-   if (prefixLen === 0 || dp.stx === 'row' || 
(bs[prefixLen-1] !== ':' && bs[prefixLen] === ';')) {
-   this.env.log("trace/list", 
this.manager.pipelineId, "-> dt->dd");
-   // dt --> dd transition (dd token has a 
1-length prefix: see tokenizer)
+   if (dp.stx === 'row') {
+   // stx='row' is only set for single-line dt-dd 
lists (see tokenizer)
+   // In this scenario, the dd token we are 
building a token for has no prefix
+   // Ex: ;a:b, *;a:b, #**;a:b, etc. Compare with 
*;a\n*:b, #**;a\n#**:b
+   this.env.log("trace/list", 
this.manager.pipelineId, "-> single-line dt->dd transition");
newTag = new TagTk(newName, [], makeDP( 0, 1 ));
} else {
-   this.env.log("trace/list", 
this.manager.pipelineId, "-> dd->dt");
-   // dd --> dt transition (dt token has a 
prefixLen prefix: see tokenizer)
+   this.env.log("trace/list", 
this.manager.pipelineId, "-> other dt/dd transition");
newTag = new TagTk(newName, [], makeDP( 0, 
prefixLen + 1 ));
}
+
tokens = tokens.concat([ endTag, 
this.currListFrame.nlTk || '', newTag ]);
 
+   // SSS FIXME: Needs documentation. What is this about?
prefixCorrection = 1;
} else {
this.env.log("trace/list", this.manager.pipelineId, "   
 -> reduced nesting");
diff --git a/tests/parserTests-blacklist.js b/tests/parserTests-blacklist.js
index 95fc9dd..1b389af 100644
--- a/tests/parserTests-blacklist.js
+++ b/tests/parserTests-blacklist.js
@@ -558,7 +558,7 @@
 add("html2html", "HTML-pre: 3: other wikitext", "* foo\n# bar\n = no-h =\n '' no-italic ''\n [[ 
NoLink ]]\n");
 add("html2html", "Definition list with wikilink containing colon", " 
[/index.php?title=HelpFAQ&action=edit&redlink=1
 Help:FAQ]\n The least-read page 
on Wikipedia\n");
 add("html2html", "Definition lists: colon in HTML attribute", " bold\n");
-add("html2html", "Definition Lists: Nesting: Multi-level (Parsoid only)", 
"\n t1 \n d1  \n 
t2 \n :d2  \n 
t3 \n ::d3
\n");
+add("html2html", "Definition Lists: Nesting: Multi-level (Parsoid only)", 
"\n t1 \n d1  \n 

[MediaWiki-commits] [Gerrit] Add missing RL dependency ext.uls.init to test module ext.ul... - change (mediawiki...UniversalLanguageSelector)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Add missing RL dependency ext.uls.init to test module 
ext.uls.tests
..


Add missing RL dependency ext.uls.init to test module ext.uls.tests

Bug: T93510
Change-Id: Ie1280c8b442be70d4b6f53bf85a5f9b7fdc29dbc
---
M UniversalLanguageSelector.hooks.php
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  Krinkle: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/UniversalLanguageSelector.hooks.php 
b/UniversalLanguageSelector.hooks.php
index 213c13c..e368e3e 100644
--- a/UniversalLanguageSelector.hooks.php
+++ b/UniversalLanguageSelector.hooks.php
@@ -108,7 +108,7 @@
public static function addTestModules( array &$testModules, 
ResourceLoader &$resourceLoader ) {
$testModules['qunit']['ext.uls.tests'] = array(
'scripts' => array( 'tests/qunit/ext.uls.tests.js' ),
-   'dependencies' => array( 'jquery.uls', 
'ext.uls.preferences' ),
+   'dependencies' => array( 'jquery.uls', 'ext.uls.init', 
'ext.uls.preferences' ),
'localBasePath' => __DIR__,
'remoteExtPath' => 'UniversalLanguageSelector',
);

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie1280c8b442be70d4b6f53bf85a5f9b7fdc29dbc
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/UniversalLanguageSelector
Gerrit-Branch: master
Gerrit-Owner: Santhosh 
Gerrit-Reviewer: Krinkle 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...InviteSignup)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I716600984331ccfafdb950cd0aa6ab5bdd7aae0c
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 38665e8..a9f3780 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,11 +3,12 @@
"authors": [
"Shirayuki",
"Nemo bis",
-   "Liuxinyu970226"
+   "Liuxinyu970226",
+   "Umherirrender"
]
},
"invitesignup": "{{doc-special|InviteSignup|unlisted=1}}",
-   "is-desc": "{{desc|name=Invite 
Signup|url=http://www.mediawiki.org/wiki/Extension:InviteSignup}}";,
+   "is-desc": "{{desc|name=Invite 
Signup|url=https://www.mediawiki.org/wiki/Extension:InviteSignup}}";,
"is-tableth-date": "Table header.\n\"Date\" stands for \"date and 
time\".\n{{Identical|Date}}",
"is-tableth-email": "Table header\n{{Identical|E-mail}}",
"is-tableth-inviter": "Table header",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I716600984331ccfafdb950cd0aa6ab5bdd7aae0c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/InviteSignup
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Lingo)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I913cca3381485f514bd3485b89e3ef518bba9e78
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index b5252a4..1b05962 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,10 +1,11 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "lingo-desc": 
"{{desc|name=Lingo|url=http://www.mediawiki.org/wiki/Extension:Lingo}}\nParameters:\n*
 $1 - terminology page title (value of $wgexLingoPage), or 
{{msg-mw|Lingo-terminologypagename}}",
+   "lingo-desc": 
"{{desc|name=Lingo|url=https://www.mediawiki.org/wiki/Extension:Lingo}}\nParameters:\n*
 $1 - terminology page title (value of $wgexLingoPage), or 
{{msg-mw|Lingo-terminologypagename}}",
"lingo-terminologypagename": "Name of the page where the terms and 
definitions of the glossary are stored",
"lingo-noterminologypage": "Used as warning. Parameters:\n* $1 - 
terminology page title (value of $wgexLingoPage), or 
{{msg-mw|lingo-terminologypagename}}\nSee also:\n* 
{{msg-mw|lingo-terminologypagenotlocal}}",
"lingo-terminologypagenotlocal": "Used as error message. Parameters:\n* 
$1 - terminology page title (value of $wgexLingoPage), or 
{{msg-mw|lingo-terminologypagename}}\nSee also:\n* 
{{msg-mw|lingo-noterminologypage}}"

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I913cca3381485f514bd3485b89e3ef518bba9e78
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Lingo
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...JSBreadCrumbs)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I6c76a186c878092a981dc7c4363521e055769650
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 0af22f7..eb8ebe0 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -7,7 +7,7 @@
"Umherirrender"
]
},
-   "jsbreadcrumbs-desc": "{{desc|name=JS Bread 
Crumbs|url=http://www.mediawiki.org/wiki/Extension:JSBreadCrumbs}}";,
+   "jsbreadcrumbs-desc": "{{desc|name=JS Bread 
Crumbs|url=https://www.mediawiki.org/wiki/Extension:JSBreadCrumbs}}";,
"jsbreadcrumbs-separator": "{{optional}}",
"jsbreadcrumbs-leading-description": "Used as bread crumb 
description.\n\nThis message is followed by \":\" and bread crumbs 
(\"»\"-separated links).",
"prefs-jsbreadcrumbs": "This is the name of the extension JS Bread 
Crumbs (http://www.mediawiki.org/wiki/Extension:BreadCrumbs). The expression 
\"Bread Crumbs\" designates a kind of navigation bar (see 
http://en.wiktionary.org/wiki/breadcrumbs).",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I6c76a186c878092a981dc7c4363521e055769650
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/JSBreadCrumbs
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...LandingCheck)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I7b5615334a5db68189b811ba72bc22feed5e6564
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 090dea1..eddca34 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,10 +2,11 @@
"@metadata": {
"authors": [
"Shirayuki",
-   "Yekrats"
+   "Yekrats",
+   "Umherirrender"
]
},
-   "landingcheck-desc": "{{desc|name=Landing 
Check|url=http://www.mediawiki.org/wiki/Extension:LandingCheck}}";,
+   "landingcheck-desc": "{{desc|name=Landing 
Check|url=https://www.mediawiki.org/wiki/Extension:LandingCheck}}";,
"landingcheck": "{{doc-special|LandingCheck}}\nThe name of the 
extension LandingCheck. See: 
http://www.mediawiki.org/wiki/Extension:LandingCheck";,
"landingcheck-nopage": "Used as simple error message in 
[[Special:LandingCheck]]."
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I7b5615334a5db68189b811ba72bc22feed5e6564
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LandingCheck
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...LastModified)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Id3342d09ed439786f09b303d3a65a85293f2d2ff
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 951385e..da96076 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -4,10 +4,11 @@
"Beta16",
"Jeremy Postlethwaite",
"Lloffiwr",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "lastmodified-desc": "{{desc|name=Last 
Modified|url=http://www.mediawiki.org/wiki/Extension:LastModified}}";,
+   "lastmodified-desc": "{{desc|name=Last 
Modified|url=https://www.mediawiki.org/wiki/Extension:LastModified}}";,
"lastmodified": "{{doc-special|LastModified}}\n{{Identical|Last 
modified}}",
"lastmodified-title-tag": "Title tag for the link to the revision 
history.",
"lastmodified-seconds": "Text displayed on page if page to show how 
long ago the page was updated. Parameters:\n* $1 - number of 
seconds\n{{Related|Lastmodified}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Id3342d09ed439786f09b303d3a65a85293f2d2ff
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/LastModified
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Insider)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I312b102e25a8f4d985628a80dbdc8445f74f4ccc
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 2e92c6e..ee4e53b 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,11 +2,12 @@
"@metadata": {
"authors": [
"Metalhead64",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"insider-title": "Title for the insider panel",
"insider-about": "Text for the last link, below all insiders, to 
insiders explanation page",
"insider-about-page": "Page title for the last link, below all 
insiders, to insiders explanation page.\n\nAbout \"docent\", see 
[[w:wikivoyage:Wikivoyage:What_is_a_docent%3F|Wikivoyage:What_is_a_docent?]].",
-   "insider-desc": 
"{{desc|name=Insider|url=http://www.mediawiki.org/wiki/Extension:Insider}}";
+   "insider-desc": 
"{{desc|name=Insider|url=https://www.mediawiki.org/wiki/Extension:Insider}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I312b102e25a8f4d985628a80dbdc8445f74f4ccc
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Insider
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...InlineCategorizer)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I4bde0b95054fe56f7bfcb524b1ab23ba1ff8124d
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 7b4cb65..296c46d 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -5,10 +5,11 @@
"EugeneZelenko",
"Fryed-peach",
"Lloffiwr",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "inlinecategorizer-desc": "{{desc|name=Inline 
Categorizer|url=http://www.mediawiki.org/wiki/Extension:InlineCategorizer}}";,
+   "inlinecategorizer-desc": "{{desc|name=Inline 
Categorizer|url=https://www.mediawiki.org/wiki/Extension:InlineCategorizer}}";,
"inlinecategorizer-add-category": "{{doc-actionlink}}\n{{Identical|Add 
category}}",
"inlinecategorizer-add-category-submit": "{{Identical|Add}}",
"inlinecategorizer-add-category-summary": "See 
{{msg-mw|inlinecategorizer-category-question}}.\n\nParameters:\n* $1 - a 
category name",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I4bde0b95054fe56f7bfcb524b1ab23ba1ff8124d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/InlineCategorizer
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...InputBox)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I5fb6e1845daed347fd17dc7fac540f7ca826d788
---
M i18n/pt.json
M i18n/qqq.json
2 files changed, 6 insertions(+), 4 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/pt.json b/i18n/pt.json
index 99fca2e..fb62118 100644
--- a/i18n/pt.json
+++ b/i18n/pt.json
@@ -4,13 +4,14 @@
"Hamilton Abreu",
"Malafaya",
"Imperadeiro98",
-   "Vitorvicentevalente"
+   "Vitorvicentevalente",
+   "He7d3r"
]
},
"inputbox-desc": "Permite a inclusão de formulários HTML 
pré-definidos.",
"inputbox-error-no-type": "Não especificou o tipo de caixa de edição a 
ser criado.",
"inputbox-error-bad-type": "O tipo de caixa de introdução de dados 
\"$1\" não foi reconhecido.\nPor favor, especifique \"create\", \"comment\", 
\"search\", \"search2\" ou \"fulltext\".",
-   "inputbox-tryexact": "Tentar a exata expressão",
+   "inputbox-tryexact": "Tentar a expressão exata",
"inputbox-searchfulltext": "Pesquisar no texto completo",
"inputbox-createarticle": "Criar página",
"inputbox-movearticle": "Mover página",
diff --git a/i18n/qqq.json b/i18n/qqq.json
index cb10c9c..aada0de 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -7,10 +7,11 @@
"Shirayuki",
"Siebrand",
"The Evil IP address",
-   "Raymond"
+   "Raymond",
+   "Umherirrender"
]
},
-   "inputbox-desc": "{{desc|name=Input 
Box|url=http://www.mediawiki.org/wiki/Extension:InputBox}}";,
+   "inputbox-desc": "{{desc|name=Input 
Box|url=https://www.mediawiki.org/wiki/Extension:InputBox}}";,
"inputbox-error-no-type": "Used as error message.\n\nSee also:\n* 
{{msg-mw|Inputbox-error-bad-type}}",
"inputbox-error-bad-type": "{{doc-important|\"create\", \"comment\", 
\"search\", \"search2\" and \"fulltext\" should not be translated.}}\nUsed as 
error message. Parameters:\n* $1 - invalid type. Valid types are: \"create\", 
\"comment\", \"commenttitle\", \"search\", \"fulltext\", and \"search2\"\nSee 
also:\n* {{msg-mw|Inputbox-error-no-type}}",
"inputbox-tryexact": "Part of the \"Inputbox\" extension. This message 
is the text of the button to search the page you typed in the inputbox. If the 
page with the exact name exists, you will go directly to that page.",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5fb6e1845daed347fd17dc7fac540f7ca826d788
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/InputBox
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HTMLTags)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I2d667c069782505be463d792c8babf04689c01a9
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index ea390e7..b294697 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,10 +2,11 @@
"@metadata": {
"authors": [
"Shirayuki",
-   "Siebrand"
+   "Siebrand",
+   "Umherirrender"
]
},
-   "htmltags-desc": "{{desc|name=HTML 
Tags|url=http://www.mediawiki.org/wiki/Extension:HTML_Tags}}";,
+   "htmltags-desc": "{{desc|name=HTML 
Tags|url=https://www.mediawiki.org/wiki/Extension:HTML_Tags}}";,
"htmltags-notagname": "{{doc-important|Do not translate \"tagname\".}} 
The error message if \"tagname\" is not set in .",
"htmltags-unsupportedtag": "{{doc-important|Do not translate 
\"htmltag\".}}\nThe error message if an invalid value for \"tagname\" is set in 
.\n\nParameters:\n* $1 - tag name"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I2d667c069782505be463d792c8babf04689c01a9
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HTMLTags
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ImageMap)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ib9ad3d1bc7177f4e0ebcf4679cb1a6e1063411da
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 8baa60e..8f7406f 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -8,7 +8,7 @@
"Umherirrender"
]
},
-   "imagemap_desc": "{{desc|name=Image 
Map|url=http://www.mediawiki.org/wiki/Extension:ImageMap}}";,
+   "imagemap_desc": "{{desc|name=Image 
Map|url=https://www.mediawiki.org/wiki/Extension:ImageMap}}";,
"imagemap_no_image": "Used as error message.\n\nThis message indicates 
that an image must be specified in the first line.",
"imagemap_invalid_image": "Used as error message.",
"imagemap_bad_image": "Used as error message.",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib9ad3d1bc7177f4e0ebcf4679cb1a6e1063411da
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ImageMap
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HTMLets)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I5b5505543eb94d2c4f8003f1a6cfba085f0e55b6
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 358c8b8..2d28b21 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,10 +3,11 @@
"authors": [
"Purodha",
"Shirayuki",
-   "The Evil IP address"
+   "The Evil IP address",
+   "Umherirrender"
]
},
-   "htmlets-desc": 
"{{desc|name=HTMLets|url=http://www.mediawiki.org/wiki/Extension:HTMLets}}";,
+   "htmlets-desc": 
"{{desc|name=HTMLets|url=https://www.mediawiki.org/wiki/Extension:HTMLets}}";,
"htmlets-filenotfound": "Used as error message. Parameters:\n* $1 - 
HTMLet file name",
"htmlets-loadfailed": "Used as error message. Parameters:\n* $1 - 
HTMLet file name"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5b5505543eb94d2c4f8003f1a6cfba085f0e55b6
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HTMLets
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ForcePreview)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I4b7c7eea40e53ef0af4d0c0cff760bfc0534f50d
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index df1466e..8300464 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -9,6 +9,6 @@
]
},
"forcepreview": "Used as Save Page button text.\nThe button is disabled 
by default.\n\n\"Use preview first\" is an imperative sentence.",
-   "forcepreview-desc": "{{desc|name=Force 
Preview|url=http://www.mediawiki.org/wiki/Extension:ForcePreview}}";,
+   "forcepreview-desc": "{{desc|name=Force 
Preview|url=https://www.mediawiki.org/wiki/Extension:ForcePreview}}";,
"right-forcepreviewexempt": "{{doc-right|forcepreviewexempt}}"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I4b7c7eea40e53ef0af4d0c0cff760bfc0534f50d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ForcePreview
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...FormelApplet)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iebaf33194c15541358bcb53f2d9b1ee844ee9d4b
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index b7f3a2e..3e64222 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,10 +3,11 @@
"authors": [
"Garrett Brown/Rudolf Grossmann",
"Kghbln",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "formelapplet-desc": "{{desc|name=Formel 
Applet|url=http://www.mediawiki.org/wiki/Extension:FormelApplet}}";,
+   "formelapplet-desc": "{{desc|name=Formel 
Applet|url=https://www.mediawiki.org/wiki/Extension:FormelApplet}}";,
"formelapplet-nojava": "Error message if Java not installed with link 
where to get from.\n\nParameters:\n* $1 - \"Java\" (with link which points to 
http://java.com); hard-coded",
"formelapplet-missing-parameter": "Error message if parameter width or 
height or term/solution missing.\n\n{{doc-important|Do not translate the 
parameters \"width\", \"height\" or \"term/solution\".}}",
"formelapplet-file-not-found": "Error message if file not found. 
Parameters:\n* $1 - filename\n{{Identical|File not found}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iebaf33194c15541358bcb53f2d9b1ee844ee9d4b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FormelApplet
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...FundraiserLandingPage)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I494d6d76cf8477a2b833bf06298ed83e931a6aa5
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 189ace4..eaba486 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "fundraiserlandingpage-desc": "{{desc|name=Fundraiser Landing 
Page|url=http://www.mediawiki.org/wiki/Extension:FundraiserLandingPage}}";
+   "fundraiserlandingpage-desc": "{{desc|name=Fundraiser Landing 
Page|url=https://www.mediawiki.org/wiki/Extension:FundraiserLandingPage}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I494d6d76cf8477a2b833bf06298ed83e931a6aa5
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FundraiserLandingPage
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Gadgets)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iec9fb469d60e0327b95a74530e8d16a8d88cf449
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 99e8722..9fe59ae 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -15,7 +15,7 @@
"Liuxinyu970226"
]
},
-   "gadgets-desc": 
"{{desc|name=Gadgets|url=http://www.mediawiki.org/wiki/Extension:Gadgets}}";,
+   "gadgets-desc": 
"{{desc|name=Gadgets|url=https://www.mediawiki.org/wiki/Extension:Gadgets}}";,
"prefs-gadgets": "In Gadgets extension. The name of a tab in 
[[Special:Preferences#mw-prefsection-gadgets|Special:Preferences]] where user 
set their preferences for the extension.\n\n{{Identical|Gadgets}}",
"gadgets-prefstext": "In Gadgets extension. This is the explanation 
text displayed under the Gadgets tab in 
[[Special:Preferences#mw-prefsection-gadgets|Special:Preferences]].",
"gadgets": "{{doc-special|Gadgets}}\n{{Identical|Gadgets}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iec9fb469d60e0327b95a74530e8d16a8d88cf449
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Gadgets
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Gather)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ia30b5dbee093786b883301a3ae23b7ccb1f88ff4
---
M Gather.alias.php
M i18n/de.json
M i18n/es.json
A i18n/ja.json
4 files changed, 27 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Gather.alias.php b/Gather.alias.php
index 0ad682d..d6756fb 100644
--- a/Gather.alias.php
+++ b/Gather.alias.php
@@ -37,4 +37,9 @@
 /** Macedonian (македонски) */
 $specialPageAliases['mk'] = array(
'Gather' => array( 'Собирање' ),
+);
+
+/** Traditional Chinese (中文(繁體)‎) */
+$specialPageAliases['zh-hant'] = array(
+   'Gather' => array( '聚集' ),
 );
\ No newline at end of file
diff --git a/i18n/de.json b/i18n/de.json
index 67f6294..d628ba7 100644
--- a/i18n/de.json
+++ b/i18n/de.json
@@ -35,7 +35,7 @@
"gather-add-failed-toast": "Es gab ein Problem beim Hinzufügen des 
Objekts zu deiner Sammlung „$1“.",
"gather-add-to-collection-summary": "Möchtest du $1 zu einer Sammlung 
hinzufügen?",
"gather-add-to-collection-confirm": "Zur Sammlung hinzufügen",
-   "gather-add-to-collection-cancel": "Nein danke",
+   "gather-add-to-collection-cancel": "Nein, danke",
"gather-remove-toast": "Die Seite wurde von deiner Sammlung „$1“ 
entfernt.",
"gather-desc": "Komponente des mobilen Frontends, die es Benutzern 
ermöglicht, Listen zu kuratieren",
"gather-no-public-lists-title": "Keine öffentlichen Sammlungen",
diff --git a/i18n/es.json b/i18n/es.json
index 3deaf68..5785eeb 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -26,9 +26,14 @@
"gather-error-unknown-collection": "No se puede encontrar la colección 
solicitada para editar.",
"gather-collection-member": "Es miembro de la colección.",
"gather-collection-non-member": "No es miembro de la colección.",
+   "gather-anon-cta": "Añadir esta página a un colección que puedes 
compartir con el mundo.",
"gather-create-new-button-label": "Crear",
+   "gather-add-new-placeholder": "Escribe un nombre de colección nuevo",
+   "gather-add-to-new": "Añadir a una colección nueva",
"gather-add-to-existing": "Añadir a la colección existente",
"gather-add-toast": "Se añadió la página a tu colección \"$1\".",
+   "gather-new-collection-failed-toast": "Hubo un problema al crear tu 
colección \"$1\".",
+   "gather-add-failed-toast": "Hubo un problema al añadir el elemento a tu 
colección \"$1\".",
"gather-add-to-collection-summary": "¿Te gustaría agregar $1 a una 
colección?",
"gather-add-to-collection-confirm": "Añadir a la colección",
"gather-add-to-collection-cancel": "No, gracias",
@@ -48,5 +53,8 @@
"gather-empty": "Aún no hay nada en esta colección.",
"gather-empty-footer": "No sé cómo llegaste aquí, pero este es un lugar 
triste.",
"gather-edit-button": "Editar",
-   "gather-delete-button": "Borrar"
+   "gather-delete-button": "Borrar",
+   "apihelp-gather-param-gather": "Acción que realizar en las 
colecciones.",
+   "apihelp-gather-param-owner": "Propietario de las colecciones que 
buscar. Si se omite, se toma al usuario actual.",
+   "apihelp-gather-example-1": "Listar las colecciones del usuario 
john."
 }
diff --git a/i18n/ja.json b/i18n/ja.json
new file mode 100644
index 000..cd59c59
--- /dev/null
+++ b/i18n/ja.json
@@ -0,0 +1,12 @@
+{
+   "@metadata": {
+   "authors": [
+   "Otokoume"
+   ]
+   },
+   "gather-lists-collection-owner": "所有者",
+   "gather-lists-collection-title": "タイトル",
+   "gather-add-to-collection-summary": "コレクションに$1を追加しますか?",
+   "gather-add-to-collection-confirm": "コレクションに追加",
+   "gather-add-to-collection-cancel": "不要です"
+}

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ia30b5dbee093786b883301a3ae23b7ccb1f88ff4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Gather
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Genderize)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I8a78ddbe66dcf1567fa9ebeae660b3684f3589d8
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index dc4eb7a..a6865d0 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Purodha",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "genderize-desc": 
"{{desc|name=Genderize|url=http://www.mediawiki.org/wiki/Extension:Genderize}}";
+   "genderize-desc": 
"{{desc|name=Genderize|url=https://www.mediawiki.org/wiki/Extension:Genderize}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8a78ddbe66dcf1567fa9ebeae660b3684f3589d8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Genderize
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GeoCrumbs)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I7b744db29e878ebda8b4fd557e9c5570ce1c8ac7
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 661b429..56d64f2 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,9 +1,10 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"geocrumbs-delimiter": "{{Optional}}\nSplit character for breadcrumb 
links",
-   "geocrumbs-desc": "{{desc|name=Geo 
Crumbs|url=http://www.mediawiki.org/wiki/Extension:GeoCrumbs}}";
+   "geocrumbs-desc": "{{desc|name=Geo 
Crumbs|url=https://www.mediawiki.org/wiki/Extension:GeoCrumbs}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I7b744db29e878ebda8b4fd557e9c5570ce1c8ac7
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoCrumbs
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Gitweb)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I2d6dcda8b27ca2871c69b9144e3a37a09cbc4cd2
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index dc07340..b0d98fb 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Raimond Spekking",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "gitweb-desc": 
"{{Desc|name=Gitweb|url=http://www.mediawiki.org/wiki/Extension:Gitweb}}";
+   "gitweb-desc": 
"{{Desc|name=Gitweb|url=https://www.mediawiki.org/wiki/Extension:Gitweb}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I2d6dcda8b27ca2871c69b9144e3a37a09cbc4cd2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Gitweb
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...FundraisingEmailUnsubscribe)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iee1e0c66c3a8c914b6b2a374eb9009fe3c1fcbd8
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 0d1d183..d9319e2 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,10 +2,11 @@
"@metadata": {
"authors": [
"Shirayuki\r",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "fundraiserunsubscribe-desc": "{{desc|name=Fundraiser 
Unsubscribe|url=http://www.mediawiki.org/wiki/Extension:FundraiserUnsubscribe}}";,
+   "fundraiserunsubscribe-desc": "{{desc|name=Fundraiser 
Unsubscribe|url=https://www.mediawiki.org/wiki/Extension:FundraiserUnsubscribe}}";,
"fundraiserunsubscribe": "Unsubscribe page title",
"fundraiserunsubscribe-query": "Ask if the user wants to remove email 
address:$1 from the fundraising mail lists. Leave email as is; a different 
templating engine is being used.",
"fundraiserunsubscribe-info": "Unused at this time.\n\nInformation on 
how the unsubscribe request will be processed.\n\nParameters:\n* $1 - email 
address",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iee1e0c66c3a8c914b6b2a374eb9009fe3c1fcbd8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FundraisingEmailUnsubscribe
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GlobalBlocking)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I296ed27580d6844a0bafb17babeb969d777203ea
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 46dbf54..3e5aa1d 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -26,7 +26,7 @@
"Liuxinyu970226"
]
},
-   "globalblocking-desc": "{{desc|name=Global 
Blocking|url=http://www.mediawiki.org/wiki/Extension:GlobalBlocking}}";,
+   "globalblocking-desc": "{{desc|name=Global 
Blocking|url=https://www.mediawiki.org/wiki/Extension:GlobalBlocking}}";,
"globalblocking-block": "{{Identical|Globally block IP address}}",
"globalblocking-expiry-options": "{{notranslate}}",
"globalblocking-block-reason": "{{Identical|Reason}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I296ed27580d6844a0bafb17babeb969d777203ea
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GlobalBlocking
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GettingStarted)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I7b0af4f1d77ab3fd53b51578942719449e484d85
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 21 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 4d1e386..ae51ca6 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,14 +3,12 @@
"authors": [
"Shirayuki",
"spage",
-   "Liuxinyu970226"
+   "Liuxinyu970226",
+   "Umherirrender"
]
},
"gettingstarted": "{{doc-special|GettingStarted}}\n{{Identical|Getting 
started}}",
-   "gettingstarted-desc": "{{desc|name=Getting 
Started|url=http://www.mediawiki.org/wiki/Extension:GettingStarted}}";,
-   "gettingstarted-project-link": "Name of page that describes how 
GettingStarted is used on the wiki.\n\nUsed in {{msg-mw|Tag-gettingstarted 
edit}}.",
-   "tag-gettingstarted_edit": "Text of tag identifying an edit from 
GettingStarted that appears e.g. in [[Special:RecentChanges]].\n\nRefers to 
{{msg-mw|Gettingstarted-project-link}}.\n\nSee also:\n* 
{{msg-mw|tag-gettingstarted_edit-description}}",
-   "tag-gettingstarted_edit-description": "Description of tag that appears 
e.g. in [[Special:Tags]]",
+   "gettingstarted-desc": "{{desc|name=Getting 
Started|url=https://www.mediawiki.org/wiki/Extension:GettingStarted}}";,
"gettingstarted-task-toolbar-editing-help-text": "Used as label for the 
Help button.\n\nThe tooltip for the button is 
{{msg-mw|Gettingstarted-task-toolbar-editing-help-title}}.",
"gettingstarted-task-toolbar-editing-help-title": "Used as tooltip for 
the Help button.\n\nThe label for the button is 
{{msg-mw|Gettingstarted-task-toolbar-editing-help-text}}.",
"gettingstarted-task-toolbar-try-another-text": "Used as label for the 
link.\n\nThe tooltip for the link is any one of the following:\n* 
{{msg-mw|Gettingstarted-task-copyedit-toolbar-try-another-title}}\n* 
{{msg-mw|Gettingstarted-task-clarify-toolbar-try-another-title}}\n* 
{{msg-mw|Gettingstarted-task-addlinks-toolbar-try-another-title}}",
@@ -18,10 +16,6 @@
"gettingstarted-task-toolbar-no-suggested-page": "Used when an API call 
fails to retrieve another suggested page for the user to work on",
"gettingstarted-task-copyedit-toolbar-description": "Main text shown on 
toolbar, explaining the copy-editing task",
"gettingstarted-task-copyedit-toolbar-try-another-title": "Used as 
tooltip for the link to try another article for the copy-editing task.\n\nThe 
label for the link is {{msg-mw|Gettingstarted-task-toolbar-try-another-text}}.",
-   "gettingstarted-task-clarify-toolbar-description": "Main text shown on 
toolbar, explaining the clarification task",
-   "gettingstarted-task-clarify-toolbar-try-another-title": "Used as 
tooltip for the link to try another article for the clarification task.\n\nThe 
label for the link is {{msg-mw|Gettingstarted-task-toolbar-try-another-text}}.",
-   "gettingstarted-task-addlinks-toolbar-description": "Main text shown on 
toolbar, explaining the link-adding task",
-   "gettingstarted-task-addlinks-toolbar-try-another-title": "Used as 
tooltip for the link to try another article for the link-adding task.\n\nThe 
label for the link is {{msg-mw|Gettingstarted-task-toolbar-try-another-text}}.",
"guidedtour-tour-gettingstartedtasktoolbarintro-title": "Title of step 
shown when they choose a GettingStarted task for the first time.",
"guidedtour-tour-gettingstartedtasktoolbarintro-description": 
"Description of step shown when they choose a GettingStarted task for the first 
time.",
"guidedtour-tour-gettingstartedtasktoolbar-ambox-title": "Title of step 
pointing to article message box (which states suggested improvements).",
@@ -44,22 +38,10 @@
"gettingstarted-cta-fix-pages": "Main text of button inviting user to 
fix other pages, shown in Call To Action displayed on articles after creating 
an account",
"gettingstarted-cta-fix-pages-sub": "Additional text of button inviting 
user to fix other pages, shown in Call To Action displayed on articles after 
creating an account.\n\nThe button text is 
{{msg-mw|Gettingstarted-cta-fix-pages}}.",
"gettingstarted-cta-leave": "Text to leave the Call To Action displayed 
on articles after creating an account",
-   "guidedtour-tour-anonymouseditoracquisitionpreeditv1-title": "Title of 
the step inviting the user to sign up before editing the page in the first 
version of the tour",
-   "guidedtour-tour-anonymouseditoracquisitionpreeditv1-description": 
"Desc

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Git2Pages)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I93caee3db3f873a6a7f0c919d3a59e556cae71ef
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index c7fbe70..0585759 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Raymond",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "git2pages-desc": "{{desc|name=Git 2 
Pages|url=http://www.mediawiki.org/wiki/Extension:Git2Pages}}";
+   "git2pages-desc": "{{desc|name=Git 2 
Pages|url=https://www.mediawiki.org/wiki/Extension:Git2Pages}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I93caee3db3f873a6a7f0c919d3a59e556cae71ef
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Git2Pages
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GeoGebra)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I8ad01c4d52d10d50bffec179840782f3ffb032f3
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 292649d..359c0e7 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,10 +3,11 @@
"authors": [
"Garrett Brown",
"Kghbln",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "geogebra-desc": 
"{{desc|name=GeoGebra|url=http://www.mediawiki.org/wiki/Extension:GeoGebra}}";,
+   "geogebra-desc": 
"{{desc|name=GeoGebra|url=https://www.mediawiki.org/wiki/Extension:GeoGebra}}";,
"geogebra-nojava": "Error message if Java not installed with link where 
to get from.\n\nParameters:\n* $1 - \"Java\" (with link which points to 
http://java.com); hard-coded",
"geogebra-missing-parameter": "Error message if parameter width or 
height or ggbBase64 missing.\n\n{{doc-important|Do not translate the parameters 
\"width\", \"height\" or \"ggbBase64\".}}",
"geogebra-file-not-found": "Error message if file not found. 
Parameters:\n* $1 - Geogebra (ggb) filename; can be 
\"filenotfound.ggb\"\n{{Identical|File not found}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8ad01c4d52d10d50bffec179840782f3ffb032f3
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GeoGebra
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GlobalUserGroups)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: If4277f91bc70f5bc5005d0b90fb781c5efa07e68
---
M i18n/core/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/core/qqq.json b/i18n/core/qqq.json
index b357da3..ff248e1 100644
--- a/i18n/core/qqq.json
+++ b/i18n/core/qqq.json
@@ -3,8 +3,9 @@
"authors": [
"Nike",
"SVG",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "globalusergroups-desc": "{{desc|name=Global User 
Groups|url=http://www.mediawiki.org/wiki/Extension:GlobalUserGroups}}";
+   "globalusergroups-desc": "{{desc|name=Global User 
Groups|url=https://www.mediawiki.org/wiki/Extension:GlobalUserGroups}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: If4277f91bc70f5bc5005d0b90fb781c5efa07e68
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GlobalUserGroups
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Add missing RL dependency ext.uls.init to test module ext.ul... - change (mediawiki...UniversalLanguageSelector)

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

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

Change subject: Add missing RL dependency ext.uls.init to test module 
ext.uls.tests
..

Add missing RL dependency ext.uls.init to test module ext.uls.tests

Bug: T93510
Change-Id: Ie1280c8b442be70d4b6f53bf85a5f9b7fdc29dbc
---
M UniversalLanguageSelector.hooks.php
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull 
ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/UniversalLanguageSelector 
refs/changes/93/199193/1

diff --git a/UniversalLanguageSelector.hooks.php 
b/UniversalLanguageSelector.hooks.php
index 213c13c..e368e3e 100644
--- a/UniversalLanguageSelector.hooks.php
+++ b/UniversalLanguageSelector.hooks.php
@@ -108,7 +108,7 @@
public static function addTestModules( array &$testModules, 
ResourceLoader &$resourceLoader ) {
$testModules['qunit']['ext.uls.tests'] = array(
'scripts' => array( 'tests/qunit/ext.uls.tests.js' ),
-   'dependencies' => array( 'jquery.uls', 
'ext.uls.preferences' ),
+   'dependencies' => array( 'jquery.uls', 'ext.uls.init', 
'ext.uls.preferences' ),
'localBasePath' => __DIR__,
'remoteExtPath' => 'UniversalLanguageSelector',
);

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie1280c8b442be70d4b6f53bf85a5f9b7fdc29dbc
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/UniversalLanguageSelector
Gerrit-Branch: master
Gerrit-Owner: Santhosh 

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...googleAnalytics)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Icc19ecdda299c7426d2c27d673488ac60b80da50
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index dcccb4c..c9e2009 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,9 +3,10 @@
"authors": [
"Purodha",
"Shirayuki",
-   "The Evil IP address"
+   "The Evil IP address",
+   "Umherirrender"
]
},
-   "googleanalytics-desc": "{{desc|name=google 
Analytics|url=http://www.mediawiki.org/wiki/Extension:Google_Analytics_Integration}}";,
+   "googleanalytics-desc": "{{desc|name=google 
Analytics|url=https://www.mediawiki.org/wiki/Extension:Google_Analytics_Integration}}";,
"right-noanalytics": "{{doc-right|noanalytics}}"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Icc19ecdda299c7426d2c27d673488ac60b80da50
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/googleAnalytics
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GlobalUsage)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iafcc6dc5a6bfcbb11d5faa4266d254b561432a02
---
A i18n/ne.json
M i18n/qqq.json
2 files changed, 11 insertions(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/ne.json b/i18n/ne.json
new file mode 100644
index 000..f1c263c
--- /dev/null
+++ b/i18n/ne.json
@@ -0,0 +1,10 @@
+{
+   "@metadata": {
+   "authors": [
+   "बिप्लब आनन्द"
+   ]
+   },
+   "globalusage": "वैश्विक फाइल प्रयोग",
+   "globalusage-on-wiki": "$2 मा उपयोग",
+   "globalusage-of-file": "निम्न अन्य विकिहरुमा यस फाइलको प्रयोग:"
+}
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 406b28d..5e9331c 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -17,7 +17,7 @@
},
"globalusage": "{{doc-special|GlobalUsage}}\nHeader of a section that 
lists all the places where one shared file has been used. \"Global\" refers to 
the usage, not to the file. \"File\" is singular. Used while viewing the file 
description page ([[commons:File:Triangle.Right.ly.png|example at Commons]]). 
Appears at the top of the page as a link to a section anchor, and at the bottom 
as the section header.\n\n{{Identical|File usage}}",
"globalusage-for": "Title of [[Special:GlobalUsage]]\n* $1 - name of 
the searched file, with namespace",
-   "globalusage-desc": "{{desc|name=Global 
Usage|url=http://www.mediawiki.org/wiki/Extension:GlobalUsage}}";,
+   "globalusage-desc": "{{desc|name=Global 
Usage|url=https://www.mediawiki.org/wiki/Extension:GlobalUsage}}";,
"globalusage-ok": "Button on 
Special:GlobalUsage.\n{{Identical|Search}}",
"globalusage-text": "Label on [[Special:GlobalUsage]]",
"globalusage-no-results": "Used for empty result on 
[[Special:GlobalUsage]]\n* $1 - name of the file (with namespace)",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iafcc6dc5a6bfcbb11d5faa4266d254b561432a02
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GlobalUsage
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GoogleAdSense)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ib3fd0af6c9440c9f9f63c888cab958bce4498336
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 533f168..deabd25 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -8,5 +8,5 @@
]
},
"googleadsense": "{{notranslate}}",
-   "googleadsense-desc": "{{desc|name=Google 
AdSense|url=http://www.mediawiki.org/wiki/Extension:GoogleAdSense}}";
+   "googleadsense-desc": "{{desc|name=Google 
AdSense|url=https://www.mediawiki.org/wiki/Extension:GoogleAdSense}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib3fd0af6c9440c9f9f63c888cab958bce4498336
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GoogleAdSense
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GoogleCustomWikiSearch)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ic5a108ed8d8b6cb6f67fd918899a415a7a5a6ad4
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 95f32bb..adad199 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,9 +2,10 @@
"@metadata": {
"authors": [
"Ike Hecht",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"googlecustomwikisearch": "{{doc-special|GoogleCustomWikiSearch}}",
-   "gcws-desc": "{{desc|name=Google Custom Wiki 
Search|url=http://www.mediawiki.org/wiki/Extension:GoogleCustomWikiSearch}}";
+   "gcws-desc": "{{desc|name=Google Custom Wiki 
Search|url=https://www.mediawiki.org/wiki/Extension:GoogleCustomWikiSearch}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic5a108ed8d8b6cb6f67fd918899a415a7a5a6ad4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GoogleCustomWikiSearch
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Consolidate editor initialization - change (mediawiki...Flow)

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

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

Change subject: Consolidate editor initialization
..

Consolidate editor initialization

* Removes 20s timeout before loading ext.flow.editor. This actually wasn't
 waiting anyways because ext.flow.editor is a dependency of ext.flow
* Pulls in all available editors from ext.flow.editor.init, there is not
 alot of code here and it lets us know which are actually available to this user
* adds a new 20s timeout after initializing that will pull in dependencies
 (like ext.flow.visualeditor) of the users selected editor if necessary. This 
will
 provide a better experience when the user looks around, reads a few things, 
then
 clicks reply, edit, etc.

Change-Id: I26c6192778919914af899d9c07422a49a2d13b34
---
M modules/editor/editors/ext.flow.editors.AbstractEditor.js
M modules/editor/editors/visualeditor/ext.flow.editors.visualeditor.js
M modules/editor/ext.flow.editor.js
M modules/engine/components/board/flow-board.js
M modules/engine/components/common/flow-component-events.js
5 files changed, 89 insertions(+), 114 deletions(-)


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

diff --git a/modules/editor/editors/ext.flow.editors.AbstractEditor.js 
b/modules/editor/editors/ext.flow.editors.AbstractEditor.js
index 838bff0..c8881ff 100644
--- a/modules/editor/editors/ext.flow.editors.AbstractEditor.js
+++ b/modules/editor/editors/ext.flow.editors.AbstractEditor.js
@@ -38,4 +38,14 @@
mw.flow.editors.AbstractEditor.static.isSupported = function () {
return true;
};
+
+   /**
+* Provides a list of extra resource loader dependencies needed to fully
+* initialize an editor for the user.
+*
+* @return {Array}
+*/
+   mw.flow.editors.AbstractEditor.static.getModuleDependencies = function 
() {
+   return [];
+   };
 }( mediaWiki, OO ) );
diff --git 
a/modules/editor/editors/visualeditor/ext.flow.editors.visualeditor.js 
b/modules/editor/editors/visualeditor/ext.flow.editors.visualeditor.js
index 997a348..769497a 100644
--- a/modules/editor/editors/visualeditor/ext.flow.editors.visualeditor.js
+++ b/modules/editor/editors/visualeditor/ext.flow.editors.visualeditor.js
@@ -29,6 +29,16 @@
mw.flow.editors.visualeditor.prototype.initCallbacks = [];
 
/**
+* Provides a list of extra resource loader dependencies needed to fully
+* initialize an editor for the user.
+*
+* @return {Array}
+*/
+   mw.flow.editors.visualeditor.static.getModuleDependencies = function () 
{
+   return ['ext.flow.visualeditor'];
+   };
+
+   /**
 * Callback function, executed after all VE dependencies have been 
loaded.
 *
 * @param {string} [content='']
diff --git a/modules/editor/ext.flow.editor.js 
b/modules/editor/ext.flow.editor.js
index 2b4acc6..cd8c1d9 100644
--- a/modules/editor/ext.flow.editor.js
+++ b/modules/editor/ext.flow.editor.js
@@ -22,34 +22,63 @@
 */
editors: [null],
 
+   /**
+   /**
+* List of editor names that are valid for use
+*
+* @property {Array}
+*/
+   available: [],
+
init: function () {
var editorList = mw.config.get( 'wgFlowEditorList' ),
-   index = editorList.indexOf( 
mw.user.options.get( 'flow-editor' ) );
+   modules = $.map( editorList, function ( value, 
key ) {
+   return 'ext.flow.editors.' + value;
+   } );
 
-   // determine editor instance to use, depending on 
availability
-   mw.flow.editor.loadEditor( index );
-   },
-
-   loadEditor: function ( editorIndex ) {
-   var editorList = mw.config.get( 'wgFlowEditorList' ),
-   editor;
-
-   if ( !editorIndex || editorIndex < 0 || editorIndex >= 
editorList.length ) {
-   editorIndex = 0;
+   if ( mw.flow.editor.available.length > 0 ) {
+   // already initialied
+   return;
}
 
-   if ( editorList[editorIndex] ) {
-   editor = editorList[editorIndex];
-   } else {
-   editor = 'none';
-   }
+   mw.loader.using( modules, function() {
+   var i,
+   desiredEditor = mw.user.options.get( 
'flow-editor' );
 
-  

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GWToolset)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Idde64380bfa849f4299cac6a3e5c6a686431c276
---
M i18n/zh-hant.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/zh-hant.json b/i18n/zh-hant.json
index 8b42e16..31c2340 100644
--- a/i18n/zh-hant.json
+++ b/i18n/zh-hant.json
@@ -21,7 +21,7 @@
"gwtoolset-could-not-open-xml": "無法開啟 XML 檔案讀取。",
"gwtoolset-developer-issue": "請聯絡開發人員,此問題必須先解決此問題才可以繼續。 
請將以下文字加入至您的回報內容:\n\n$1",
"gwtoolset-dom-record-issue": "未提供 record-element-name 或 
record-count 或 record-current。",
-   "gwtoolset-file-backend-maxage-invalid": "於 $wgGWTFBMaxAge 
所提供的最大年齡值無效。\n請參考 [php.net/manual/en/datetime.formats.relative.php PHP 手冊] 
以了解如何正確設定。",
+   "gwtoolset-file-backend-maxage-invalid": "於 $wgGWTFBMaxAge 
所提供的最大年齡值無效。\n請參考 [php.net/manual/en/datetime.formats.relative.php PHP 手冊] 
以瞭解如何正確設定。",
"gwtoolset-fsfile-empty": "檔案為空的且已刪除。",
"gwtoolset-fsfile-retrieval-failure": "無法從 URL $1 接收檔案。",
"gwtoolset-ignorewarnings": "ignorewarnings 未設定。",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Idde64380bfa849f4299cac6a3e5c6a686431c276
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GWToolset
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GroupsSidebar)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I3d885891141548385d38370c77b1a4e4746bdf4f
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index c85fd8e..8ef8f68 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Fryed-peach",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "groupssidebar-desc": "{{desc|name=Groups 
Sidebar|url=http://www.mediawiki.org/wiki/Extension:GroupsSidebar}}";
+   "groupssidebar-desc": "{{desc|name=Groups 
Sidebar|url=https://www.mediawiki.org/wiki/Extension:GroupsSidebar}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3d885891141548385d38370c77b1a4e4746bdf4f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GroupsSidebar
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GoogleLogin)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I5b84544b66e937ad8d3ea022c35ded152e9d4c9d
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index ca9dfc5..2aa0188 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,12 +2,13 @@
"@metadata": {
"authors": [
"Florian Schmidt",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"googlelogin": "{{doc-special|GoogleLogin}}\nAlso used as label for the 
button shown in [[Special:Login]].",
"googlelogin-create": "Used as label for the button shown in 
[[Special:CreateAccount]].",
-   "googlelogin-desc": "{{desc|name=Google 
Login|url=http://www.mediawiki.org/wiki/Extension:GoogleLogin}}";,
+   "googlelogin-desc": "{{desc|name=Google 
Login|url=https://www.mediawiki.org/wiki/Extension:GoogleLogin}}";,
"googlelogin-parerror": "Error message when a Subpage of 
Special:GoogleLogin is requested, which does not exist.",
"googlelogin-generic-error": "Generic error message for errors with no 
specific error message.\n\nParameters:\n* $1 - a short description of the error 
(e.g. Database error)",
"googlelogin-createnotallowed": "Error message displayed on 
[[Special:GoogleLogin]], that the user isn't allowed to create a new wiki user 
account with GoogleLogin.",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5b84544b66e937ad8d3ea022c35ded152e9d4c9d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GoogleLogin
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GuidedTour)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I11bbd90064ba54b3a983784d30b5e6c7adc8b410
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index e3572a6..5bd284f 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,10 +3,11 @@
"authors": [
"Mattflaschen",
"Shirayuki",
-   "Tgr"
+   "Tgr",
+   "Umherirrender"
]
},
-   "guidedtour-desc": "{{desc|name=Guided 
Tour|url=http://www.mediawiki.org/wiki/Extension:GuidedTour}}";,
+   "guidedtour-desc": "{{desc|name=Guided 
Tour|url=https://www.mediawiki.org/wiki/Extension:GuidedTour}}";,
"guidedtour-help-url": "Main page for GuidedTour documentation",
"guidedtour-help-guider-url": "Brief GuidedTour documentation page that 
a tour step can transclude.  Used in the test tour.",
"guidedtour-next-button": "Text for moving to next step of guided 
tour.\n\nSee also:\n* {{msg-mw|Guidedtour-back-button}}\n{{Identical|Next}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I11bbd90064ba54b3a983784d30b5e6c7adc8b410
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GuidedTour
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GraphViz)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: If32cfc4af0dbebd5abda62fe77f3a1615ea316a8
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 99e5eac..2caf2ec 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,10 +2,11 @@
"@metadata": {
"authors": [
"Shirayuki",
-   "Keith Welter"
+   "Keith Welter",
+   "Umherirrender"
]
},
-   "graphviz-desc": 
"{{desc|name=GraphViz|url=http://www.mediawiki.org/wiki/Extension:Graphviz}}";,
+   "graphviz-desc": 
"{{desc|name=GraphViz|url=https://www.mediawiki.org/wiki/Extension:Graphviz}}";,
"graphviz-reload": "Used as an informational message to inform the user 
to reload the wiki page.",
"graphviz-no-input": "Used as error message",
"graphviz-no-imagemap-class": "Used as error message",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: If32cfc4af0dbebd5abda62fe77f3a1615ea316a8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GraphViz
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...GoogleNewsSitemap)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I64ab63722c78c97674ab85abd17f3861fba82c7c
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index db1cbf8..41a02b7 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -7,7 +7,7 @@
]
},
"googlenewssitemap": "{{doc-special|GoogleNewsSitemap|unlisted=1}}",
-   "googlenewssitemap-desc": "{{desc|name=Google News 
Sitemap|url=http://www.mediawiki.org/wiki/Extension:GoogleNewsSitemap}}";,
+   "googlenewssitemap-desc": "{{desc|name=Google News 
Sitemap|url=https://www.mediawiki.org/wiki/Extension:GoogleNewsSitemap}}";,
"googlenewssitemap_categorymap": "{{notranslate}}",
"googlenewssitemap_toomanycats": "Error given when maximum amount of 
categories specified is exceeded. Default max is 6.",
"googlenewssitemap_feedtitle": "Title for the RSS/ATOM feeds produced 
(does not appear in sitemap XML documents).\n\nParameters:\n* $1 - language 
name. e.g. \"English\"\n* $2 - feed type (RSS or ATOM), uses full-capitalized 
{{msg-mw|Feed-rss}} and {{msg-mw|Feed-atom}}.\n* $3 - (Unused) language code. 
e.g. \"en\""

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I64ab63722c78c97674ab85abd17f3861fba82c7c
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/GoogleNewsSitemap
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HashTables)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ie0ebc3ce844b16b8bb94fee71548a884f8406ff2
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 046b38d..a8bfc3c 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "hashtables-desc": "{{desc|name=Hash 
Tables|url=http://www.mediawiki.org/wiki/Extension:HashTables}}";
+   "hashtables-desc": "{{desc|name=Hash 
Tables|url=https://www.mediawiki.org/wiki/Extension:HashTables}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie0ebc3ce844b16b8bb94fee71548a884f8406ff2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HashTables
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HelpCommons)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I2a281fcb6316108d1b330d78f243ca99b7fba9e8
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 98bc11b..a1cdb2f 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,10 +2,11 @@
"@metadata": {
"authors": [
"SVG",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "helpcommons-desc": "{{desc|name=Help 
Commons|url=http://www.mediawiki.org/wiki/Extension:HelpCommons}}";,
+   "helpcommons-desc": "{{desc|name=Help 
Commons|url=https://www.mediawiki.org/wiki/Extension:HelpCommons}}";,
"helpcommons-create": "Second create tab connected to Help Wiki",
"helpcommons-edit": "Second edit tab connected to Help Wiki",
"helpcommons-discussion": "Second discussion tab connected to Help 
Wiki",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I2a281fcb6316108d1b330d78f243ca99b7fba9e8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HelpCommons
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HeaderTabs)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I0300148ec04ce3deaf6938e21dd7b4e973b6fe56
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index d017b54..1d3b682 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -4,10 +4,11 @@
"EugeneZelenko",
"Purodha",
"Shirayuki",
-   "Liuxinyu970226"
+   "Liuxinyu970226",
+   "Umherirrender"
]
},
-   "headertabs-desc": "{{desc|name=Header 
Tabs|url=http://www.mediawiki.org/wiki/Extension:Header_Tabs}}";,
+   "headertabs-desc": "{{desc|name=Header 
Tabs|url=https://www.mediawiki.org/wiki/Extension:Header_Tabs}}";,
"headertabs-edittab": "{{Identical|Edit}}",
"headertabs-edittab-hint": "This is about a tab being edited.",
"headertabs-edittab-key": "{{optional}}"

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I0300148ec04ce3deaf6938e21dd7b4e973b6fe56
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HeaderTabs
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HostStats)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ib4c7b2d5c02bfef6010dad36fb250d5548044ad8
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 0c9eec7..cd39f93 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,12 +3,13 @@
"authors": [
"Hydriz",
"Kghbln",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"hoststats": "{{notranslate}}\nRefers to {{msg-mw|Hoststats-title}}.",
"hoststats-title": "{{doc-special|HostStats}}\n\"Host\" refers to the 
server the wiki is on.",
-   "hoststats-desc": "{{desc|name=Host 
Stats|url=http://www.mediawiki.org/wiki/Extension:HostStats}}";,
+   "hoststats-desc": "{{desc|name=Host 
Stats|url=https://www.mediawiki.org/wiki/Extension:HostStats}}";,
"hoststats-intro": "The introduction to the special page. \"Host\" 
refers to the server the wiki is on.",
"right-hoststats": "{{doc-right|hoststats}}",
"action-hoststats": "{{doc-action|hoststats}}"

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib4c7b2d5c02bfef6010dad36fb250d5548044ad8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HostStats
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...HidePrefix)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ifdaea56ac9a7223b707095bf92a6923a222b76bb
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 4a103d3..2d10995 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Purodha",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "hideprefix-desc": "{{desc|name=Hide 
Prefix|url=http://www.mediawiki.org/wiki/Extension:HidePrefix}}";
+   "hideprefix-desc": "{{desc|name=Hide 
Prefix|url=https://www.mediawiki.org/wiki/Extension:HidePrefix}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ifdaea56ac9a7223b707095bf92a6923a222b76bb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/HidePrefix
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...CiteThisPage)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ic0fd6bef5a52ef2261285e40633abec22023e51b
---
M i18n/ne.json
1 file changed, 6 insertions(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/ne.json b/i18n/ne.json
index 2ae25fb..d38d709 100644
--- a/i18n/ne.json
+++ b/i18n/ne.json
@@ -1,6 +1,11 @@
 {
-   "@metadata": [],
+   "@metadata": {
+   "authors": [
+   "बिप्लब आनन्द"
+   ]
+   },
"citethispage": "उद्दरण गर्नु",
"citethispage-link": "लेख उद्दरण गर्नुहोस्",
+   "tooltip-citethispage": "यस पृष्ठको जानकारी उद्धृत गर्न निमित्त 
जानकारी",
"citethispage-change-target": "पृष्ठ:"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic0fd6bef5a52ef2261285e40633abec22023e51b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/CiteThisPage
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Citoid)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ia7a54bcf4b90d9ef8dddbbb4b4f1bf94716547a7
---
M i18n/es.json
M i18n/et.json
M i18n/qqq.json
A i18n/tr.json
4 files changed, 23 insertions(+), 4 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/es.json b/i18n/es.json
index bd4a1bd..8b51056 100644
--- a/i18n/es.json
+++ b/i18n/es.json
@@ -9,12 +9,16 @@
"citoid-520-error": "No se pudo obtener información a partir del 
identificador proporcionado.",
"citoid-citation-widget-insert-button": "Insertar",
"citoid-citeFromIDDialog-back": "Atrás",
+   "citoid-citeFromIDDialog-lookup-button": "Busca",
"citoid-citeFromIDDialog-search": "Buscar",
"citoid-citeFromIDDialog-search-label": "URL o DOI",
"citoid-citeFromIDDialog-search-placeholder": "por ejemplo, 
http://www.ejemplo.com";,
"citoid-citeFromIDDialog-search-progress": "Buscando. Espera...",
"citoid-citeFromIDDialog-title": "Agregar una cita",
+   "citoid-citeFromIDDialog-use-general-dialog-button": "Cuadro completo 
de citas",
+   "citoid-citeFromIDDialog-use-general-dialog-message": "O usa $1 para 
completar los detalles tu mismo.",
"citoid-citeFromIDTool-title": "Citar",
"citoid-desc": "Proporciona puntos de acceso entre el servicio Citoid y 
MediaWiki",
-   "citoid-typeMap-config-error": "Mediawiki:citoid-template-type-map.json 
está configurado incorrectamente."
+   "citoid-typeMap-config-error": "Mediawiki:citoid-template-type-map.json 
está configurado incorrectamente.",
+   "citoid-unknown-error": "Ocurrió un error desconocido que nos impidió 
crear la cita. Inténtalo de nuevo más tarde."
 }
diff --git a/i18n/et.json b/i18n/et.json
index 874ffc1..95b5f2b 100644
--- a/i18n/et.json
+++ b/i18n/et.json
@@ -6,6 +6,7 @@
},
"citoid-520-error": "Ette antud identifikaatori järgi ei õnnestunud 
teavet hankida.",
"citoid-citation-widget-insert-button": "Lisa",
+   "citoid-citeFromIDDialog-back": "Tagasi",
"citoid-citeFromIDDialog-lookup-button": "Otsi",
"citoid-citeFromIDDialog-search": "Otsi",
"citoid-citeFromIDDialog-search-label": "URL või DOI",
@@ -14,6 +15,7 @@
"citoid-citeFromIDDialog-title": "Viite lisamine",
"citoid-citeFromIDDialog-use-general-dialog-button": "täielikku 
viitamisdialoogi",
"citoid-citeFromIDDialog-use-general-dialog-message": "Või kasuta $1, 
et üksikasjad ise sisestada.",
+   "citoid-citeFromIDDialog-use-general-error-message": "Viidet ei 
õnnestunud koostada. Saad viite koostamiseks kasutada $1.",
"citoid-citeFromIDTool-title": "Viide",
"citoid-desc": "Tagab teenuse Citoid ja MediaWiki vahelised 
pääsupunktid.",
"citoid-typeMap-config-error": "Mediawiki:citoid-template-type-map.json 
ei ole õigesti häälestatud.",
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 79bf47f..5dfc4fc 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,7 +1,8 @@
 {
"@metadata": {
"authors": [
-   "Liuxinyu970226"
+   "Liuxinyu970226",
+   "Pikne"
]
},
"citoid-520-error": "Error message for when citoid service returns a 
520 error",
@@ -14,8 +15,8 @@
"citoid-citeFromIDDialog-search-progress": "Message for when the search 
is in progress",
"citoid-citeFromIDDialog-title": "The title displayed on the dialog",
"citoid-citeFromIDDialog-use-general-dialog-button": "Label for the 
user to click to use the full citation tool.",
-   "citoid-citeFromIDDialog-use-general-dialog-message": "Label for the 
user to use the full citation tool. $1 - the button to open the citation 
dialog.",
-   "citoid-citeFromIDDialog-use-general-error-message": "Label notifying 
the user there was a problem creating their reference, and offering to use the 
full citation tool. $1 - the button to open the citation dialog.",
+   "citoid-citeFromIDDialog-use-general-dialog-message": "Label for the 
user to use the full citation tool.\n* $1 – the link to open the citation 
dialog; link label: 
{{msg-mw|citoid-citeFromIDDialog-use-general-dialog-button}}",
+   "citoid-citeFromIDDialog-use-general-error-message": "Label notifying 
the user there was a problem creating their reference, and offering to use the 
full citation tool.\n* $1 – link to open the citation dialog; link label: 
{{msg-mw|citoid-citeFromIDDialog-use-general-dialog-button}}",
"citoid-citeFromIDTool-title": "Label for the button to add a citation 
in the toolbar\n{{Identical|Cite}}",
"citoid-desc": 
"{{desc|name=Citoid|url=http://www.mediawiki.org/wik

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ConfirmEdit)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ibb634aec0d3a96a6a108f820a2de4fd3954f94e4
---
M ConfirmEdit.alias.php
M i18n/core/hr.json
A i18n/core/ne.json
M i18n/fancy/hr.json
A i18n/fancy/ne.json
5 files changed, 21 insertions(+), 3 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/ConfirmEdit.alias.php b/ConfirmEdit.alias.php
index 155e386..ece0eee 100644
--- a/ConfirmEdit.alias.php
+++ b/ConfirmEdit.alias.php
@@ -121,5 +121,5 @@
 
 /** Traditional Chinese (中文(繁體)‎) */
 $specialPageAliases['zh-hant'] = array(
-   'Captcha' => array( '驗證碼' ),
+   'Captcha' => array( '驗證碼', '認證碼' ),
 );
\ No newline at end of file
diff --git a/i18n/core/hr.json b/i18n/core/hr.json
index a56d201..d661c48 100644
--- a/i18n/core/hr.json
+++ b/i18n/core/hr.json
@@ -11,6 +11,7 @@
},
"captcha-edit": "Da uredite ovu stranicu, molimo riješite jednostavno 
zbrajanje ispod i unesite rezultat u rubriku ([[Special:Captcha/help|više 
informacija]]):",
"captcha-desc": "Pruža CAPTCHA tehnike za zaštitu od neželjene pošte 
(spam-a) i pogađanja zaporke",
+   "captcha-label": "CAPTCHA",
"captcha-addurl": "Vaše uređivanje sadrži nove vanjske poveznice. Kao 
zaštitu od automatskog spama, trebate unijeti slova koja vidite na slici: ([[Special:Captcha/help|Pomoć?]])",
"captcha-badlogin": "Da se spriječi automatizirano pogađanje 
lozinki,\nmolimo zbrojite donje brojeve i upišite rezultat 
([[Special:Captcha/help|pomoć]]):",
"captcha-createaccount": "Kao zaštitu od automatskog spama, pri 
otvaranju računa trebate unijeti slova koja vidite na slici: ([[Special:Captcha/help|Pomoć]])",
diff --git a/i18n/core/ne.json b/i18n/core/ne.json
new file mode 100644
index 000..816c4ab
--- /dev/null
+++ b/i18n/core/ne.json
@@ -0,0 +1,8 @@
+{
+   "@metadata": {
+   "authors": [
+   "बिप्लब आनन्द"
+   ]
+   },
+   "captcha-label": "क्याप्चा"
+}
diff --git a/i18n/fancy/hr.json b/i18n/fancy/hr.json
index 22b39dc..dc73a79 100644
--- a/i18n/fancy/hr.json
+++ b/i18n/fancy/hr.json
@@ -2,12 +2,13 @@
"@metadata": {
"authors": [
"SpeedyGonsales",
-   "MaGa"
+   "MaGa",
+   "Roberta F."
]
},
"fancycaptcha-addurl": "Vaše uređivanje sadrži nove vanjske poveznice. 
Kao zaštitu od automatskog spama,\nmolimo unesite slova koja vidite na slici 
dolje: ([[Special:Captcha/help|Pomoć]])",
"fancycaptcha-badlogin": "Da se spriječi automatiziranje pogađanja 
lozinki, molimo unesite\nslova koja vidite na slici dolje: ([[Special:Captcha/help|Pomoć]])",
-   "fancycaptcha-createaccount": "Kao zaštitu od automatskog otvaranja 
računa, pri otvaranju računa trebate\nunijeti slova koja vidite na slici: ([[Special:Captcha/help|Pomoć]])",
+   "fancycaptcha-createaccount": "Kao zaštitu wiki od automatskog 
otvaranja računa, pri otvaranju računa ljubazno Vas molimo upišite slova koja 
vidite na slici: ([[Special:Captcha/help|Pomoć]])",
"fancycaptcha-create": "Da bi stvorili novu stranicu, molimo 
unesite\nslova koja vidite na slici dolje: ([[Special:Captcha/help|Pomoć]])",
"fancycaptcha-edit": "Da bi uređivali ovu stranicu, molimo unesite 
slova koja vidite na slici dolje: ([[Special:Captcha/help|Pomoć]])",
"fancycaptcha-sendemail": "Da bi ste nam pomogli protiv automatskog 
spama, molimo unesite riječi koje su prikazane ispod u okvir 
([[Special:Captcha/help|više informacija]]):",
diff --git a/i18n/fancy/ne.json b/i18n/fancy/ne.json
new file mode 100644
index 000..c983135
--- /dev/null
+++ b/i18n/fancy/ne.json
@@ -0,0 +1,8 @@
+{
+   "@metadata": {
+   "authors": [
+   "बिप्लब आनन्द"
+   ]
+   },
+   "fancycaptcha-reload-text": "ताजागर्ने"
+}

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ibb634aec0d3a96a6a108f820a2de4fd3954f94e4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ConfirmEdit
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ConfirmAccount)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iea955b52037d89db3db0c69624e1820dc2ebf435
---
M i18n/confirmaccount/ps.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/confirmaccount/ps.json b/i18n/confirmaccount/ps.json
index d55b392..92c8611 100644
--- a/i18n/confirmaccount/ps.json
+++ b/i18n/confirmaccount/ps.json
@@ -24,7 +24,7 @@
"confirmaccount-create": "گڼون (گڼون جوړول)",
"confirmaccount-ip": "IP پته:",
"confirmaccount-submit": "تاييد",
-   "confirmaccount-wsum": "ښه راغلۍ!",
+   "confirmaccount-wsum": "ښه راغلئ!",
"confirmaccount-email-body": "په {{SITENAME}} باندې د يوه گڼون لپاره 
غوښتنه مو ومنل شوه .\n\nگڼون نوم: $1\n\nپټنوم: $2\n\nد تحفظ د سببونو لپاره تاسو 
ته پکار ده چې د وروسته له دې چې د لومړي ځل لپاره غونډال ته ننوتلی نو مهرباني 
وکړی خپل پټنوم بدل کړی. د دې لپاره چې غونډال ته ننوځی، مهرباني وکړی 
{{fullurl:Special:UserLogin}} ولاړ شی.",
"confirmaccount-email-body2": "په {{SITENAME}} باندې د يوه گڼون لپاره 
غوښتنه مو ومنل شوه .\n\nگڼون نوم: $1\n\nپټنوم: $2\n\n$3\n\nد تحفظ د سببونو 
لپاره تاسو ته پکار ده چې د وروسته له دې چې د لومړي ځل لپاره غونډال ته ننوتلی نو 
مهرباني وکړی خپل پټنوم بدل کړی. د دې لپاره چې غونډال ته ننوځی، مهرباني وکړی 
{{fullurl:Special:UserLogin}} ولاړ شی."
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iea955b52037d89db3db0c69624e1820dc2ebf435
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ConfirmAccount
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] [FIX] ItemPage: Avoid changing dict in toJSON - change (pywikibot/core)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: [FIX] ItemPage: Avoid changing dict in toJSON
..


[FIX] ItemPage: Avoid changing dict in toJSON

In toJSON it changed the claims dict while iterating over it. As with
Python 3 the iterator is just a view to the current state and thus this
is not allowed.

Change-Id: Ib6dd67f8afdc90c576b2d433b24059f339ae84fa
---
M pywikibot/page.py
1 file changed, 4 insertions(+), 6 deletions(-)

Approvals:
  John Vandenberg: Looks good to me, approved
  Ricordisamoa: Looks good to me, but someone else must approve
  jenkins-bot: Verified



diff --git a/pywikibot/page.py b/pywikibot/page.py
index 5607ace..e99694e 100644
--- a/pywikibot/page.py
+++ b/pywikibot/page.py
@@ -3519,12 +3519,10 @@
 for dbName in sitelinks:
 sitelinks[dbName] = {'site': dbName, 'title': sitelinks[dbName]}
 
-claims = self.claims.copy()
-for prop in claims.keys():
-if len(claims[prop]) > 0:
-claims[prop] = [claim.toJSON() for claim in claims[prop]]
-else:
-del claims[prop]
+claims = {}
+for prop in self.claims:
+if len(self.claims[prop]) > 0:
+claims[prop] = [claim.toJSON() for claim in self.claims[prop]]
 
 if diffto and 'claims' in diffto:
 temp = {}

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib6dd67f8afdc90c576b2d433b24059f339ae84fa
Gerrit-PatchSet: 1
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Owner: XZise 
Gerrit-Reviewer: John Vandenberg 
Gerrit-Reviewer: Ladsgroup 
Gerrit-Reviewer: Merlijn van Deen 
Gerrit-Reviewer: Ricordisamoa 
Gerrit-Reviewer: XZise 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Collection)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I6b65bd9a61ad77ee1993e3dd288648677662486d
---
M i18n/hr.json
M i18n/ne.json
M i18n/ps.json
3 files changed, 20 insertions(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/hr.json b/i18n/hr.json
index c867954..94b2ad0 100644
--- a/i18n/hr.json
+++ b/i18n/hr.json
@@ -151,5 +151,8 @@
"coll-not_addable": "Ova stranica ne može biti dodana",
"coll-make_suggestions": "Predloži stranice",
"coll-make_suggestions_tooltip": "Pokaži prijedloge na temelju stranica 
u mojoj knjizi",
-   "coll-suggest_empty": "prazno"
+   "coll-suggest_empty": "prazno",
+   "coll-attribution-anons": "Anonimno: $1",
+   "coll-article-attribution": "$1 Izvor: $2 
Suradnici: $3",
+   "coll-image-attribution": "$1 Vrelo: $2 Licencija: 
$3 Prinositelji: $4 Originalni umjetnik: $5"
 }
diff --git a/i18n/ne.json b/i18n/ne.json
index 36407cd..f2a3dc7 100644
--- a/i18n/ne.json
+++ b/i18n/ne.json
@@ -72,6 +72,14 @@
"coll-rendering_page_info_text_article": 
"{{MediaWiki:Coll-helppage}}/पृष्ठ जानकारी पाठ प्रतिपादन हुँदै छ",
"coll-rendering_collection_info_text_article": 
"{{MediaWiki:Coll-helppage}}/सङ्ग्रह जानकारी पाठ प्रतिपादन हुँदै छ",
"coll-rendering_finished_title": "प्रतिपादन समाप्त",
+   "coll-print_export": "प्रिन्ट/निर्यात",
+   "coll-create_a_book": "पुस्तक बनाउने",
+   "coll-book_creator": "पुस्तक निर्माता",
+   "coll-download_as": "$1 को रूपमा डाउनलोड गर्ने",
+   "coll-disable": "निष्क्रिय",
+   "coll-help": "सहायता",
+   "coll-helppage": "Help:किताबहरू",
+   "coll-n_pages": "$1 {{PLURAL:$1|पृष्ठ|पृष्ठहरू}}",
"coll-printable_version_pdf": "पिडिएफ भर्सन",
"coll-remove_this_page": "यो पृष्ठलाई तपाईँको पुस्तकबाट हटाउनुहोस्",
"coll-remove_page_tooltip": "यो पृष्ठलाई तपाईँको वर्तमान विकि पानाबाट 
हटाउनुहोस्",
diff --git a/i18n/ps.json b/i18n/ps.json
index 521db61..0b5f352 100644
--- a/i18n/ps.json
+++ b/i18n/ps.json
@@ -5,6 +5,9 @@
]
},
"coll-desc": "[[Special:Book|کتابونه جوړول]]",
+   "coll-book_creator_intro": "د ''کتاب جوړونکي'' په مرسته تاسې خپل د 
خوښې ويکي مخونو څخه يو کتاب جوړولی شی. تاسې خپل کتاب په بېلابېلو بڼو (د PDF يا 
ODF په بڼه) جوړولئ، يا هم چاپ شوې بڼه يې ځانته راغوښتلی شئ.",
+   "coll-manage_your_book": "کتاب مو واوډئ",
+   "coll-book_creator_help": "د لا نورو مالوماتو لپاره 
[[{{MediaWiki:Coll-helppage}}|د کتابونو اړونده لارښود مخونه وگورئ]].",
"coll-start_book_creator": "کتاب جوړونکی پرانيستل",
"coll-book_creator_text_article": "{{MediaWiki:Coll-helppage}}/د کتاب 
جوړونکي متن",
"coll-collection": "کتاب",
@@ -50,16 +53,20 @@
"coll-rendering_failed_status": "دريځ: $1",
"coll-notfound_title": "کتاب و نه موندل شو",
"coll-download_notfound_title": "دوتنه و نه موندل شوه",
+   "coll-book_title": "د يو چاپ شوي کتاب په توگه راغوښتل",
+   "coll-book_text": "زموږ د-چاپ-غوښتنې شريک په مرسته خپل د خوښې يو چاپ 
شوی کتاب ترلاسه کړی.",
"coll-about_pp": "د $1 په اړه",
"coll-license": "منښتليک",
"coll-return_to": "[[:$1]] ته ورستنېدل",
"coll-suggest_title": "ستاسې د کتاب لپاره وړانديز شوي مخونه",
+   "coll-suggest_intro_text": "وړانديز شوي مخونه به مو په کتاب کې د ويکي 
مخونو د تازه بڼې پر بنسټ جوړېږي.\nهر ځل چې تاسې د ورگډولو او ليرې کولو تڼۍ 
کېښکاږئ نو د مخونو لړليک به هم هممهاله کېږي.",
"coll-suggested_articles": "وړانديزونه",
"coll-suggest_reset_bans": "بياايښودل",
"coll-suggest_add_selected": "ټاکلي مخونه ورگډول",
"coll-suggest_ban_selected": "ټاکلي مخونه لرې کول",
"coll-suggest_your_book": "ستاسې کتاب",
"coll-suggest_show": "ښکاره کول",
+   "coll-suggest_article_ban": "د $1 مخ ستاسې له 
وړانديزونو څخه ليرې شو ($2).",
"coll-suggest_undo": "ناکړل",
"coll-format-rl": "برېښکتاب (PDF)",
"coll-format-epub": "برېښکتاب (EPUB)",
@@ -92,6 +99,7 @@
"coll-make_suggestions": "مخونه وړانديزول",
"coll-make_suggestions_tooltip": "خپل د کتاب د مخونو پر بنسټ وړانديزونه 
ښکاره کول",
"coll-suggest_empty": "تش",
+   "coll-setting-papersize": "د کاغذ کچه:",
"coll-attribution-anons": "ورکنومی: $1",
"coll-article-attribution": "$1 سرچينه: $2 ونډه 
وال: $3",
"coll-image-attribution": "$1 سرچينه: $2 منښتليک: 
$3 ونډه وال: $4 اصلي هنرمند: $5"

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I6b65bd9a61ad77ee1993e3dd288648677662486d
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Collection
Gerrit-

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DebugMode)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ic3db5a0c8b44a8e1a1418ca6272210aae88f7f9e
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 803258c..6e553a2 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Ike Hecht"
+   "Ike Hecht",
+   "Umherirrender"
]
},
-   "debugmode-desc": 
"{{desc|name=DebugMode|url=http://www.mediawiki.org/wiki/Extension:DebugMode}}";
+   "debugmode-desc": 
"{{desc|name=DebugMode|url=https://www.mediawiki.org/wiki/Extension:DebugMode}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic3db5a0c8b44a8e1a1418ca6272210aae88f7f9e
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DebugMode
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DeleteBatch)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I81fc14a53fd5afd2dd61b9dcab25415295b88f88
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 6fdaac4..4113008 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -14,7 +14,7 @@
]
},
"deletebatch": "{{doc-special|DeleteBatch}}\n{{Identical|Delete batch 
of pages}}",
-   "deletebatch-desc": "{{desc|name=Delete 
Batch|url=http://www.mediawiki.org/wiki/Extension:DeleteBatch}}";,
+   "deletebatch-desc": "{{desc|name=Delete 
Batch|url=https://www.mediawiki.org/wiki/Extension:DeleteBatch}}";,
"deletebatch-help": "This message is help message for the \"Delete 
batch\" form.\n\nThe message indicates \"(This form enables to) delete a batch 
of pages\".",
"deletebatch-caption": "Used as label for \"Select a file\" button.",
"deletebatch-title": "Used as page title in [[Special:DeleteBatch]].",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I81fc14a53fd5afd2dd61b9dcab25415295b88f88
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DeleteBatch
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DataTransfer)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ib7c88d82348789ba42edfb27db5369bf7d632b0b
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 3d3da36..8dc8e96 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -12,7 +12,7 @@
"Umherirrender"
]
},
-   "datatransfer-desc": "{{Desc|name=Data 
Transfer|url=http://www.mediawiki.org/wiki/Extension:Data_Transfer}}";,
+   "datatransfer-desc": "{{Desc|name=Data 
Transfer|url=https://www.mediawiki.org/wiki/Extension:Data_Transfer}}";,
"viewxml": "{{doc-special|ViewXML|unlisted=1}}",
"dt_viewxml_docu": "Used as heading of the form.\n\nThis message is 
followed by HTML  heading {{msg-mw|Dt viewxml 
categories}}.",
"dt_viewxml_categories": "{{Identical|Category}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib7c88d82348789ba42edfb27db5369bf7d632b0b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DataTransfer
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DidYouKnow)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I455491c835b81126abfc5884340e814241d871df
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 3de8291..43dac1c 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,9 +2,10 @@
"@metadata": {
"authors": [
"Beta16",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "didyouknow-desc": "{{desc|name=Did You 
Know|url=http://www.mediawiki.org/wiki/Extension:Did_You_Know}}";,
+   "didyouknow-desc": "{{desc|name=Did You 
Know|url=https://www.mediawiki.org/wiki/Extension:Did_You_Know}}";,
"didyouknow-header": "Message displayed as a header in the did you know 
box.\n{{Identical|Did you know}}"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I455491c835b81126abfc5884340e814241d871df
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DidYouKnow
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Diagnosis)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iaf9c29ed7d96deff28c29e4119cbd28043f601f0
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 9b154a6..afe9059 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,10 +1,11 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"diagnosis": "{{doc-special|Diagnosis}}",
-   "diagnosis-desc": 
"{{desc|name=Diagnosis|url=http://www.mediawiki.org/wiki/Extension:Diagnosis}}";,
+   "diagnosis-desc": 
"{{desc|name=Diagnosis|url=https://www.mediawiki.org/wiki/Extension:Diagnosis}}";,
"right-diagnosis-access": "{{doc-right|diagnosis-access}}"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iaf9c29ed7d96deff28c29e4119cbd28043f601f0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Diagnosis
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Description2)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I5cb95142400bdf7bd84f932351a30c341f7d0861
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 180ce8a..72a1361 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,8 +3,9 @@
"authors": [
"Purodha",
"Shirayuki",
-   "아라"
+   "아라",
+   "Umherirrender"
]
},
-   "description2-desc": 
"{{desc|name=Description2|url=http://www.mediawiki.org/wiki/Extension:Description2}}\n{{doc-important|Do
 not translate meta-tag name 'description'}}"
+   "description2-desc": 
"{{desc|name=Description2|url=https://www.mediawiki.org/wiki/Extension:Description2}}\n{{doc-important|Do
 not translate meta-tag name 'description'}}"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5cb95142400bdf7bd84f932351a30c341f7d0861
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Description2
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...EditPageTracking)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Id9ca9cf1972b057e2f6073945051cdfba0905048
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index af37665..084aa48 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Purodha",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "editpagetracking-desc": "{{desc|name=Edit Page 
Tracking|url=http://www.mediawiki.org/wiki/Extension:EditPageTracking}}";
+   "editpagetracking-desc": "{{desc|name=Edit Page 
Tracking|url=https://www.mediawiki.org/wiki/Extension:EditPageTracking}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Id9ca9cf1972b057e2f6073945051cdfba0905048
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EditPageTracking
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DisableAccount)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I3de81cccab338795fdd53e9de3eeec36e28b13ce
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 005ed1e..045feb9 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -8,7 +8,7 @@
"Umherirrender"
]
},
-   "disableaccount-desc": "{{desc|name=Disable 
Account|url=http://www.mediawiki.org/wiki/Extension:DisableAccount}}";,
+   "disableaccount-desc": "{{desc|name=Disable 
Account|url=https://www.mediawiki.org/wiki/Extension:DisableAccount}}";,
"right-disableaccount": "{{doc-right|disableaccount}}",
"disableaccount": "{{doc-special|DisableAccount|unlisted=1}}",
"disableaccount-user": "{{Identical|Username}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3de81cccab338795fdd53e9de3eeec36e28b13ce
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DisableAccount
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...EventLogging)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I22070ca218c812b5c9bb1a5c429f46c7d7c1022a
---
M i18n/core/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/core/qqq.json b/i18n/core/qqq.json
index 71fa759..8d7a8b6 100644
--- a/i18n/core/qqq.json
+++ b/i18n/core/qqq.json
@@ -3,10 +3,11 @@
"authors": [
"Metalhead64",
"Ori.livneh",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "eventlogging-desc": "{{desc|name=Event 
Logging|url=http://www.mediawiki.org/wiki/Extension:EventLogging}}";,
+   "eventlogging-desc": "{{desc|name=Event 
Logging|url=https://www.mediawiki.org/wiki/Extension:EventLogging}}";,
"eventlogging-invalid-json": "Error shown when an editor attempts to 
save a Schema article edit that is not valid JSON.\n{{Identical|Invalid JSON}}",
"eventlogging-revision-id": "The numeric ID of the displayed revision, 
shown in the page subtitle.\n\nParameters:\n* $1 - revision 
ID\n{{Identical|Revision}}",
"eventlogging-code-sample-logging-on-server-side": "Code sample for 
logging a server-side event",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I22070ca218c812b5c9bb1a5c429f46c7d7c1022a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EventLogging
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...EditSubpages)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I32b937d843ac8f2e5c48de6d8273f2cbb1c3771a
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 95c6a1f..3d2e08c 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -4,9 +4,10 @@
"Purodha",
"Shirayuki",
"Siebrand",
-   "The Evil IP address"
+   "The Evil IP address",
+   "Umherirrender"
]
},
-   "editsubpages-desc": "{{desc|name=Edit 
Subpages|url=http://www.mediawiki.org/wiki/Extension:EditSubpages}}";,
+   "editsubpages-desc": "{{desc|name=Edit 
Subpages|url=https://www.mediawiki.org/wiki/Extension:EditSubpages}}";,
"unlockedpages": "Leave all the wiki markup, including the spaces, as 
is. You can translate the text, including 'Leave this line exactly as it is'. 
The first line of this messages has one (1) leading space."
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I32b937d843ac8f2e5c48de6d8273f2cbb1c3771a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EditSubpages
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...EducationProgram)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I8375aad20de4c1903fcb56047aecf1bbb6ee2871
---
M EducationProgram.i18n.alias.php
M i18n/lv.json
M i18n/ps.json
M i18n/qqq.json
4 files changed, 5 insertions(+), 4 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/EducationProgram.i18n.alias.php b/EducationProgram.i18n.alias.php
index 9070a2f..527e47f 100644
--- a/EducationProgram.i18n.alias.php
+++ b/EducationProgram.i18n.alias.php
@@ -487,7 +487,6 @@
 
 /** Russian (русский) */
 $specialPageAliases['ru'] = array(
-   'Articles' => array( 'Статьи' ),
'MyCourses' => array( 'Мои_курсы' ),
'ManageCourses' => array( 'Управление_курсами' ),
'Institutions' => array( 'Учебные_заведения' ),
diff --git a/i18n/lv.json b/i18n/lv.json
index 0b6ce1c..4e19222 100644
--- a/i18n/lv.json
+++ b/i18n/lv.json
@@ -347,6 +347,7 @@
"ep-addstudents-invalid-users": "{{PLURAL:$1|Šie lietotāji|Šis 
lietotājs|Šie lietotāji}} nepastāv: $2.",
"ep-addstudents-btn": "Pievienot",
"ep-addstudents-success": "Jūs šim kursam pievienojāt $1 
{{PLURAL:$1|studentus|{{GENDER:$2|studentu}}|studentus}}.",
+   "ep-addstudents-alreadyenrolled": "{{PLURAL:$1|Šis students netika 
pievienots, jo {{GENDER:$3|viņš|viņa|viņi}}|Šie studenti netika pievienoti, jo 
viņi}} jau ir kursā: $2.",
"ep-addstudents-servercallerror": "Pievienojot studentus, notika kļūda: 
$1.",
"coursepage-edit-title-edit": "Labo kursu: $1",
"coursepage-edit-title-add": "Pievieno kursu: $1",
diff --git a/i18n/ps.json b/i18n/ps.json
index f0f1bc4..5ed4b03 100644
--- a/i18n/ps.json
+++ b/i18n/ps.json
@@ -72,7 +72,7 @@
"educationprogram-org-submit": "سپارل",
"ep-course-edit-start": "پيل نېټه",
"ep-course-edit-end": "پای نېټه",
-   "ep-course-edit-title": "د مخ سرليک",
+   "ep-course-edit-title": "مخ سرليک",
"ep-course-edit-name": "دورې نوم",
"vieworgaction-summary-name": "نوم",
"vieworgaction-summary-city": "ښار",
diff --git a/i18n/qqq.json b/i18n/qqq.json
index e9de685..d87eed2 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -17,10 +17,11 @@
"Utar",
"아라",
"Ragesoss",
-   "Liuxinyu970226"
+   "Liuxinyu970226",
+   "Umherirrender"
]
},
-   "educationprogram-desc": "{{desc|name=Education 
Program|url=http://www.mediawiki.org/wiki/Extension:Education_Program}}";,
+   "educationprogram-desc": "{{desc|name=Education 
Program|url=https://www.mediawiki.org/wiki/Extension:Education_Program}}";,
"ep-item-summary": "Table column header.\n{{Identical|Summary}}",
"ep-toplink": "Text of a link the the top menu (next to 
\"Preferences\")",
"ep-org-course-delete-comment": "Success message. Parameters:\n* $1 - 
an institution name\n* $2 - a user provided comment",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8375aad20de4c1903fcb56047aecf1bbb6ee2871
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EducationProgram
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Editcount)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ie55e1cc6c0665ac63bf4363046c2d588f7be18cb
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 3d6d4a0..ec6feea 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -4,11 +4,12 @@
"Jon Harald Søby",
"Purodha",
"Shirayuki",
-   "The Evil IP address"
+   "The Evil IP address",
+   "Umherirrender"
]
},
"editcount": "{{doc-special|Editcount|unlisted=1}}",
-   "editcount-desc": 
"{{desc|name=Editcount|url=http://www.mediawiki.org/wiki/Extension:Editcount}}";,
+   "editcount-desc": 
"{{desc|name=Editcount|url=https://www.mediawiki.org/wiki/Extension:Editcount}}";,
"editcount_username": "{{Identical|User}}",
"editcount_submit": "{{Identical|Submit}}",
"editcount_total": "{{Identical|Total}}"

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie55e1cc6c0665ac63bf4363046c2d588f7be18cb
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Editcount
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DonationInterface)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I3b527542ca66a2d4f3ff8f94cc7e1ac106188033
---
M gateway_common/i18n/interface/qqq.json
1 file changed, 2 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/gateway_common/i18n/interface/qqq.json 
b/gateway_common/i18n/interface/qqq.json
index 9ef7ac3..bf46038 100644
--- a/gateway_common/i18n/interface/qqq.json
+++ b/gateway_common/i18n/interface/qqq.json
@@ -27,8 +27,8 @@
]
},
"donate_interface": "{{Identical|Support Wikimedia}}",
-   "donate_interface-desc": "{{desc|name=Donation 
Interface|url=http://www.mediawiki.org/wiki/Extension:DonationInterface}}";,
-   "donate_interface-langonly-desc": "{{desc|name=Donation Interface - 
Language Only|url=http://www.mediawiki.org/wiki/Extension:DonationInterface}}";,
+   "donate_interface-desc": "{{desc|name=Donation 
Interface|url=https://www.mediawiki.org/wiki/Extension:DonationInterface}}";,
+   "donate_interface-langonly-desc": "{{desc|name=Donation Interface - 
Language Only|url=https://www.mediawiki.org/wiki/Extension:DonationInterface}}";,
"donate_interface-intro": "Message shown above the donate field 
prompting that tells people what to do.",
"donate_interface-amount": "Shown above the field where you choose the 
amount you want to donate.\n{{Identical|Amount}}",
"donate_interface-other-amount": "Field shown before the field where 
you input a custom amount to donate (not one of the preset amounts).",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3b527542ca66a2d4f3ff8f94cc7e1ac106188033
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DonationInterface
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Echo)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iace22c16736d5d07031b1e4baec8de39412c46e7
---
M i18n/kk-cyrl.json
M i18n/qqq.json
M i18n/sv.json
M i18n/zh-hant.json
4 files changed, 13 insertions(+), 12 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/kk-cyrl.json b/i18n/kk-cyrl.json
index b769658..63ea483 100644
--- a/i18n/kk-cyrl.json
+++ b/i18n/kk-cyrl.json
@@ -63,8 +63,8 @@
"notification-add-talkpage-topic2": "[[$3]] бетінде [[User:$1|$1]] 
\"$2\" деген жаңа тақырып  {{GENDER:$1|қосты}}.",
"notification-add-talkpage-topic-yours2": "[[User:$1|$1]] сізге 
хабарлама {{GENDER:$1|жіберді}}: \"[[$3#$2|$2]]\".",
"notification-add-comment-yours2": "[[User:$1|$1]] талқылау бетіндегі 
\"[[$3#$2|$2]]\" бөліміне {{GENDER:$1|пікірін білдірді}}.",
-   "notification-mention": "[[User:$1|$1]] $5 талқылау бетінің 
\"[[:$3#$2|$4]]\" бөлімінде сізді {{GENDER:$1|атап өтті}}.",
-   "notification-mention-flyout": "$1 $5 талқылау бетінің 
\"[[:$3#$2|$4]]\" бөлімінде сізді {{GENDER:$1|атап өтті}}.",
+   "notification-mention": "[[User:$1|$1]] $5 талқылау бетінің 
«[[:$3#$2|$4]]» бөлімінде сізді {{GENDER:$1|атап өтті}}.",
+   "notification-mention-flyout": "$1 $5 талқылау бетінің «[[:$3#$2|$4]]» 
бөлімінде сізді {{GENDER:$1|атап өтті}}.",
"notification-mention-nosection": "[[User:$1|$1]] [[:$3|$2 талқылау 
бетінде]] сізді {{GENDER:$1|атап өтті}}.",
"notification-mention-nosection-flyout": "$1 [[:$3|$2 талқылау 
бетінде]] сізді {{GENDER:$1|атап өтті}}.",
"notification-user-rights": "Сіздің қатысушы құқықтарыңызды 
[[User:$1|$1]] [[Special:Log/rights/$1|{{GENDER:$1|өзгерті}}]]. $2. 
[[Special:ListGroupRights|Толығырақ біліңіз]]",
@@ -82,7 +82,7 @@
"notification-reverted-email-subject2": "{{SITENAME}} сайтында сіздің 
{{PLURAL:$3|өңдемеңіз|өңдемелеріңіз}}{{GENDER:$1|қайтарылды}}",
"notification-reverted-email-batch-body2": "Сіздің {{PLURAL:$3|$2 
бетіндегі өңдемеңізді|$2 бетіндегі өңдемелеріңізді}} $1 есімді қатысушы 
{{GENDER:$1|жоққа шығарыды}}.",
"notification-mention-email-subject": "{{SITENAME}} сайтында $1 сізді 
{{GENDER:$1|атап өтті}}",
-   "notification-mention-email-batch-body": "$1 $4 талқылау бетінің \"$3\" 
бөлімінде сізді {{GENDER:$1|атап өтті}}.",
+   "notification-mention-email-batch-body": "$1 $4 талқылау бетінің «$3» 
бөлімінде сізді {{GENDER:$1|атап өтті}}.",
"notification-mention-nosection-email-batch-body": "$1 $2 талқылау 
бетінде сізді {{GENDER:$1|атап өтті}}.",
"notification-user-rights-email-subject": "{{SITENAME}} сайтында сіздің 
қатысушы құқықтарыңыз өзгерілді.",
"notification-user-rights-email-batch-body": "Сіздің қатысушы 
құқықтарыңызды $1 {{GENDER:$1|өзгерті}}. $2.",
diff --git a/i18n/qqq.json b/i18n/qqq.json
index a563694..147423d 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -21,10 +21,11 @@
"Urhixidur",
"రహ్మానుద్దీన్",
"Liuxinyu970226",
-   "Purodha"
+   "Purodha",
+   "Umherirrender"
]
},
-   "echo-desc": 
"{{desc|name=Echo|url=http://www.mediawiki.org/wiki/Extension:Echo}} The 
[https://www.mediawiki.org/wiki/Help:Notifications Mediawiki help] page gives 
notes on the terminology in this extension.",
+   "echo-desc": 
"{{desc|name=Echo|url=https://www.mediawiki.org/wiki/Extension:Echo}} The 
[https://www.mediawiki.org/wiki/Help:Notifications Mediawiki help] page gives 
notes on the terminology in this extension.",
"prefs-echo": "Name of preferences section for Echo 
notifications.\n{{Identical|Notification}}",
"prefs-emailsettings": "Header for the section of preferences that 
deals with how often notification emails are sent out and what address they are 
sent to.\n{{Identical|E-mail option}}",
"prefs-displaynotifications": "Header for the section of preferences 
that deals with how notifications are displayed",
diff --git a/i18n/sv.json b/i18n/sv.json
index b58786c..df831a5 100644
--- a/i18n/sv.json
+++ b/i18n/sv.json
@@ -76,10 +76,10 @@
"notification-add-talkpage-topic2": "[[User:$1|$1]] {{GENDER:$1|la in}} 
ett nytt ämne \"$2\" på [[$3]].",
"notification-add-talkpage-topic-yours2": "[[User:$1|$1]] 
{{GENDER:$1|skickade}} ett meddelande till dig: \"[[$3#$2|$2]]\".",
"notification-add-comment-yours2": "[[User:$1|$1]] 
{{GENDER:$1|kommenterade}} om \"[[$3#$2|$2]]\" på din diskussionssida.",
-   "notification-mention": "[[User:$1|$1]] nämnde dig på [[$3]] i 
avsnittet \"[[:$3#$2|$4]]\".",
-   "notification-mention-flyout": "[[User:$1|$1]] nämnde 

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Elastica)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I8c7344115d166ff6a0b4b16d608ea757e2d31136
---
M i18n/qqq.json
1 file changed, 6 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index ded3ceb..bb22468 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,4 +1,8 @@
 {
-   "@metadata": [],
-   "elastica-desc": 
"{{desc|name=Elastica|url=http://www.mediawiki.org/wiki/Extension:Elastica}}\n\"Elasticsearch\";
 is a full-text search engines. See http://www.elasticsearch.org/";
+   "@metadata": {
+   "authors": [
+   "Umherirrender"
+   ]
+   },
+   "elastica-desc": 
"{{desc|name=Elastica|url=https://www.mediawiki.org/wiki/Extension:Elastica}}\n\"Elasticsearch\";
 is a full-text search engines. See http://www.elasticsearch.org/";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8c7344115d166ff6a0b4b16d608ea757e2d31136
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Elastica
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ExtensionDistributor)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I530b646cb39f93331c107f1f2b3d6af62afa21c4
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 5953763..13d0714 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -7,12 +7,13 @@
"Shirayuki",
"The Evil IP address",
"Александр Сигачёв",
-   "Raymond"
+   "Raymond",
+   "Umherirrender"
]
},
"extensiondistributor": 
"{{doc-special|ExtensionDistributor}}\n{{Identical|Download}}",
"skindistributor": 
"{{doc-special|SkinDistributor}}\n{{Identical|Download}}",
-   "extensiondistributor-desc": "{{desc|name=Extension 
Distributor|url=http://www.mediawiki.org/wiki/Extension:ExtensionDistributor}}";,
+   "extensiondistributor-desc": "{{desc|name=Extension 
Distributor|url=https://www.mediawiki.org/wiki/Extension:ExtensionDistributor}}";,
"extdist-not-configured": "{{doc-important|Do not translate 
$wgExtDistAPIConfig.}}",
"extdist-list-missing-extensions": "Used as error message in 
[[Special:ExtensionDistributor]].",
"extdist-list-missing-skins": "Used as error message in 
[[Special:SkinDistributor]].",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I530b646cb39f93331c107f1f2b3d6af62afa21c4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ExtensionDistributor
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Disambiguator)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I34fd821f17b95c3773a15e0745724e1529aefcd0
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 2433c59..0faf926 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,10 +2,11 @@
"@metadata": {
"authors": [
"Shirayuki",
-   "Tacsipacsi"
+   "Tacsipacsi",
+   "Umherirrender"
]
},
-   "disambig-desc": 
"{{desc|name=Disambiguator|url=http://www.mediawiki.org/wiki/Extension:Disambiguator}}";,
+   "disambig-desc": 
"{{desc|name=Disambiguator|url=https://www.mediawiki.org/wiki/Extension:Disambiguator}}";,
"disambiguationpages": "{{doc-special|DisambiguationPages}}\nThe 
special page shows all disambiguation pages.\n{{Identical|Disambiguation 
page}}",
"disambiguationpages-summary": "{{doc-important|Do not translate 
__DISAMBIG__.}}\nHeader text explaining the 
purpose of the [[Special:DisambiguationPages]] page.\n\nSee also:\n* 
{{msg-mw|Disambiguationpagelinks-summary}}",
"disambiguationpagelinks": 
"{{doc-special|DisambiguationPageLinks}}\nThe special page shows all pages with 
links needing disambiguation.",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I34fd821f17b95c3773a15e0745724e1529aefcd0
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Disambiguator
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Drafts)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I25d9948676298a452ba8e18e63bb60d2208287fe
---
M i18n/gl.json
M i18n/qqq.json
2 files changed, 9 insertions(+), 3 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/gl.json b/i18n/gl.json
index e0ee859..bbdc7fd 100644
--- a/i18n/gl.json
+++ b/i18n/gl.json
@@ -1,7 +1,8 @@
 {
"@metadata": {
"authors": [
-   "Toliño"
+   "Toliño",
+   "Banjo"
]
},
"drafts": "Borrador",
@@ -23,5 +24,10 @@
"drafts-save-error": "Produciuse un erro ao gardar o borrador",
"drafts-enable": "Activar a función para gardar un borrador no 
formulario de edición",
"prefs-extension-drafts": "Borradores",
-   "tooltip-drafts-save": "Gardar como un borrador"
+   "tooltip-drafts-save": "Gardar como un borrador",
+   "apihelp-savedrafts-description": "Gardar un borrador.",
+   "apihelp-savedrafts-param-id": "O Identificador do borrador.",
+   "apihelp-savedrafts-param-title": "Título do borrador.",
+   "apihelp-savedrafts-param-text": "Texto do borrador.",
+   "apihelp-savedrafts-param-summary": "Resumo do borrador."
 }
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 4fd1294..7032530 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -10,7 +10,7 @@
]
},
"drafts": "{{doc-special|Drafts}}\n{{Identical|Draft}}",
-   "drafts-desc": 
"{{desc|name=Drafts|url=http://www.mediawiki.org/wiki/Extension:Drafts}}";,
+   "drafts-desc": 
"{{desc|name=Drafts|url=https://www.mediawiki.org/wiki/Extension:Drafts}}";,
"drafts-view": "Unused at this time.",
"drafts-view-summary": "Used in [[Special:Drafts]] when there is at 
least one draft saved. Parameters:\n* $1 - number of days. Default value: 30",
"drafts-view-article": "Name of column in Special:Drafts, when there 
are draft versions saved.\n\n{{Identical|Page}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I25d9948676298a452ba8e18e63bb60d2208287fe
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Drafts
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...EmailCapture)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ie36c6ad0e55e4fd8535b8a8c7e2d64e6899d164b
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 9f24ae7..2df308d 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -4,11 +4,12 @@
"Kghbln",
"Purodha",
"Shirayuki",
-   "Yekrats"
+   "Yekrats",
+   "Umherirrender"
]
},
"emailcapture": "{{doc-special|EmailCapture|unlisted=1}}\nThe Email 
Capture extension will capture email addresses, and allow users to verify them 
through email. \n\nFor more information, see [[mw:Extension:EmailCapture]].",
-   "emailcapture-desc": "{{desc|name=Email 
Capture|url=http://www.mediawiki.org/wiki/Extension:EmailCapture}}\nThe Email 
Capture extension will capture email addresses, and allow users to verify them 
through email.",
+   "emailcapture-desc": "{{desc|name=Email 
Capture|url=https://www.mediawiki.org/wiki/Extension:EmailCapture}}\nThe Email 
Capture extension will capture email addresses, and allow users to verify them 
through email.",
"emailcapture-failure": "Used as failure message in 
[[Special:EmailCapture]].\n\nSee also:\n* {{msg-mw|Emailcapture-success}}",
"emailcapture-invalid-code": "Used as error message in 
[[Special:EmailCapture]].",
"emailcapture-already-confirmed": "Used in [[Special:EmailCapture]].",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie36c6ad0e55e4fd8535b8a8c7e2d64e6899d164b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EmailCapture
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DynamicSidebar)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ie9313cb6de4142ff655d904bee3b21d9591d1ef2
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 1d7475a..1ab82c0 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -5,5 +5,5 @@
"Umherirrender"
]
},
-   "dynamicsidebar-desc": "{{desc|name=Dynamic 
Sidebar|url=http://www.mediawiki.org/wiki/Extension:DynamicSidebar}}";
+   "dynamicsidebar-desc": "{{desc|name=Dynamic 
Sidebar|url=https://www.mediawiki.org/wiki/Extension:DynamicSidebar}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ie9313cb6de4142ff655d904bee3b21d9591d1ef2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DynamicSidebar
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...EtherpadLite)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I391b25218de840b91c73546f0d38fa5d304bd432
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index e437ea1..cab3403 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,10 +3,11 @@
"authors": [
"Beta16",
"Shirayuki",
-   "Siebrand"
+   "Siebrand",
+   "Umherirrender"
]
},
-   "etherpadlite-desc": "{{desc|name=Etherpad 
Lite|url=http://www.mediawiki.org/wiki/Extension:EtherpadLite}}";,
+   "etherpadlite-desc": "{{desc|name=Etherpad 
Lite|url=https://www.mediawiki.org/wiki/Extension:EtherpadLite}}";,
"etherpadlite-tracking-category": "The name of a category for all pages 
which use the  parser extension tag. The 
category is automatically added unless the feature is disabled.",
"etherpadlite-tracking-category-desc": "Description on 
[[Special:TrackingCategories]] for the 
{{msg-mw|etherpadlite-tracking-category}} tracking category.",
"etherpadlite-invalid-pad-url": "Error if the URL did not meet 
validation (for example, if it didn't start with an allowed 
protocol).\n\nParameters:\n* $1 - the invalid URL",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I391b25218de840b91c73546f0d38fa5d304bd432
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/EtherpadLite
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DownloadCounter)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I65600175e0343926b0d9f043ca810f79e7c9bfdf
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 72f3b18..deae0ea 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "downloadcounter-desc": "{{desc|name=Download 
Counter|url=http://www.mediawiki.org/wiki/Extension:DownloadCounter}}";
+   "downloadcounter-desc": "{{desc|name=Download 
Counter|url=https://www.mediawiki.org/wiki/Extension:DownloadCounter}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I65600175e0343926b0d9f043ca810f79e7c9bfdf
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DownloadCounter
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...DiscussionThreading)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: If1820bac94820dff7c3075b237b8e3e94c76506a
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 02e4e4c..55095af 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -4,10 +4,11 @@
"Fryed-peach",
"Purodha",
"Shirayuki",
-   "The Evil IP address"
+   "The Evil IP address",
+   "Umherirrender"
]
},
-   "discussionthreading-desc": "{{desc|name=Discussion 
Threading|url=http://www.mediawiki.org/wiki/Extension:DiscussionThreading}}";,
+   "discussionthreading-desc": "{{desc|name=Discussion 
Threading|url=https://www.mediawiki.org/wiki/Extension:DiscussionThreading}}";,
"discussionthreading-replysection": "Used as link text.\n\nThe tooltip 
for the link is 
{{msg-mw|Discussionthreading-replysectionhint}}.\n{{Identical|Reply}}",
"discussionthreading-replysectionhint": "Used as tooltip for the 
link.\n\nThe link text is {{msg-mw|Discussionthreading-replysection}}.",
"discussionthreading-threadnewsection": "Used as link text.\n\nThe 
tooltip for the link is 
{{msg-mw|Discussionthreading-threadnewsectionhint}}.\n{{Identical|New}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: If1820bac94820dff7c3075b237b8e3e94c76506a
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/DiscussionThreading
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] config: Add more languages in config.default.js - change (mediawiki...cxserver)

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

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

Change subject: config: Add more languages in config.default.js
..

config: Add more languages in config.default.js

Change-Id: I8f11084caf1724e81546df5282cf529adf13f878
---
M config.defaults.js
1 file changed, 5 insertions(+), 5 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/services/cxserver 
refs/changes/91/199191/1

diff --git a/config.defaults.js b/config.defaults.js
index 1abf648..56b8678 100644
--- a/config.defaults.js
+++ b/config.defaults.js
@@ -22,8 +22,8 @@
cert: null,
// Service registry
registry: {
-   source: [ 'af', 'an', 'ar', 'az', 'bg', 'bs', 'ca', 'cr', 'cy', 
'en', 'eo', 'es', 'fr', 'gl', 'hi', 'hr', 'id', 'ja', 'kk', 'km', 'ky', 'min', 
'mk', 'ms', 'mt', 'nl', 'no', 'nn', 'oc', 'pa', 'pl', 'pt', 'ru', 'tr', 'tt', 
'ur', 'uz', 'vi', 'xh', 'zh' ],
-   target: [ 'af', 'an', 'ar', 'az', 'bg', 'bs', 'ca', 'cr', 'cy', 
'eo', 'es', 'fr', 'gl', 'hi', 'hr', 'id', 'ja', 'kk', 'km', 'ky', 'min', 'mk', 
'ms', 'mt', 'nl', 'no', 'nn', 'oc', 'pa', 'pl', 'pt', 'ru', 'tt', 'tr', 'ur', 
'uz', 'vi', 'xh', 'zh' ],
+   source: [ 'af', 'an', 'ar', 'az', 'bg', 'bs', 'ca', 'cr', 'cy', 
'en', 'eo', 'es', 'fr', 'gl', 'hi', 'hr', 'id', 'ja', 'ka', 'kk', 'km', 'ky', 
'kz', 'min', 'mk', 'ms', 'mt', 'nl', 'no', 'nn', 'oc', 'pa', 'pl', 'pt', 'ru', 
'sh', 'sl', 'tr', 'tt', 'uk', 'ur', 'uz', 'vi', 'xh', 'zh' ],
+   target: [ 'af', 'an', 'ar', 'az', 'bg', 'bs', 'ca', 'cr', 'cy', 
'eo', 'es', 'fr', 'gl', 'hi', 'hr', 'id', 'ja', 'ka', 'kk', 'km', 'ky', 'kz', 
'min', 'mk', 'ms', 'mt', 'nl', 'no', 'nn', 'oc', 'pa', 'pl', 'pt', 'ru', 'sh', 
'sl', 'tt', 'tr', 'uk', 'ur', 'uz', 'vi', 'xh', 'zh' ],
mt: {
Apertium: {
af: [ 'nl' ],
@@ -43,7 +43,7 @@
id: [ 'ms' ],
is: [ 'en' ],
kk: [ 'tt' ],
-   mk: [ 'bg', 'bs', 'hr', 'mk', 'sr' ],
+   mk: [ 'bg', 'bs', 'hr', 'sr' ],
ms: [ 'id' ],
mt: [ 'ar' ],
no: [ 'da', 'nn' ],
@@ -52,8 +52,8 @@
oc: [ 'es', 'ca' ],
pt: [ 'ca', 'es', 'gl' ],
ro: [ 'es' ],
-   sh: [ 'sl' ],
-   sl: [ 'bs', 'cr', 'hr', 'sr' ],
+   sh: [ 'mk', 'sl' ],
+   sl: [ 'bs', 'cr', 'hr', 'sh', 'sr' ],
sv: [ 'da', 'is' ],
tt: [ 'kk' ],
ur: [ 'hi' ]

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I8f11084caf1724e81546df5282cf529adf13f878
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/services/cxserver
Gerrit-Branch: master
Gerrit-Owner: KartikMistry 

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...FeaturedFeeds)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I8570cb38c70b2f2f4e42d91482eecf59cd0479d4
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 7a90b5d..740630f 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -8,7 +8,7 @@
"Umherirrender"
]
},
-   "ffeed-desc": "{{desc|name=Featured 
Feeds|url=http://www.mediawiki.org/wiki/Extension:FeaturedFeeds}}";,
+   "ffeed-desc": "{{desc|name=Featured 
Feeds|url=https://www.mediawiki.org/wiki/Extension:FeaturedFeeds}}";,
"ffeed-feed-not-found": "Used as error message. Parameters:\n* $1 - a 
feed name",
"ffeed-entry-not-found": "Used as error message. Parameters:\n* $1 is a 
date (localized, without time)",
"ffeed-enable-sidebar-links": "{{notranslate}}",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I8570cb38c70b2f2f4e42d91482eecf59cd0479d4
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FeaturedFeeds
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...FilterListUsers)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I811562e688cfc13df8cfc4ab882642e86088a0d8
---
M i18n/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 52ccd5e..9a063af 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -5,7 +5,7 @@
"Umherirrender"
]
},
-   "filterlistusers-desc": "{{desc|name=Filter List 
Users|url=http://www.mediawiki.org/wiki/Extension:FilterListUsers}}";,
+   "filterlistusers-desc": "{{desc|name=Filter List 
Users|url=https://www.mediawiki.org/wiki/Extension:FilterListUsers}}";,
"listusers-showall": "Used as checkbox label, shown only to privileged 
users.",
"right-viewallusers": "{{doc-right|viewallusers}}"
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I811562e688cfc13df8cfc4ab882642e86088a0d8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FilterListUsers
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ExternalArticles)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ib5f1e045df927bdb2a74eb525df147fb0f389646
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 559877e..0318ed5 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,8 +2,9 @@
"@metadata": {
"authors": [
"Raymond",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "externalarticles-desc": "{{desc|name=External 
Articles|url=http://www.mediawiki.org/wiki/Extension:ExternalArticles}}\n\"source\";
 refers \"source wikitext code\"."
+   "externalarticles-desc": "{{desc|name=External 
Articles|url=https://www.mediawiki.org/wiki/Extension:ExternalArticles}}\n\"source\";
 refers \"source wikitext code\"."
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Ib5f1e045df927bdb2a74eb525df147fb0f389646
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ExternalArticles
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...ExternalData)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I307d024a5bb1be9b8ce50cf26f85bce71b6452e2
---
M ExternalData.i18n.magic.php
M i18n/qqq.json
2 files changed, 16 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/ExternalData.i18n.magic.php b/ExternalData.i18n.magic.php
index a79d887..eb4631f 100644
--- a/ExternalData.i18n.magic.php
+++ b/ExternalData.i18n.magic.php
@@ -212,4 +212,17 @@
'display_external_table' => array( 0, '显示外部表单' ),
'store_external_table' => array( 0, '存储外部表单' ),
'clear_external_data' => array( 0, '清空外部数据' ),
+);
+
+/** Traditional Chinese (中文(繁體)‎) */
+$magicWords['zh-hant'] = array(
+   'get_web_data' => array( 0, '取得網路數據' ),
+   'get_file_data' => array( 0, '取得檔案數據' ),
+   'get_soap_data' => array( 0, '取得soap數據' ),
+   'get_ldap_data' => array( 0, '取得ldap數據' ),
+   'get_db_data' => array( 0, '取得資料庫數據' ),
+   'for_external_table' => array( 0, '用於外部表單' ),
+   'display_external_table' => array( 0, '顯示外部表單' ),
+   'store_external_table' => array( 0, '儲存外部表單' ),
+   'clear_external_data' => array( 0, '清空外部數據' ),
 );
\ No newline at end of file
diff --git a/i18n/qqq.json b/i18n/qqq.json
index c05673c..46fddcd 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,11 +3,12 @@
"authors": [
"Dead3y3",
"Fryed-peach",
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
"getdata": "{{doc-special|GetData}}",
-   "externaldata-desc": "{{desc|name=External 
Data|url=http://www.mediawiki.org/wiki/Extension:External_Data}}";,
+   "externaldata-desc": "{{desc|name=External 
Data|url=https://www.mediawiki.org/wiki/Extension:External_Data}}";,
"externaldata-no-param-specified": "The error message if a parameter to 
some parser function is not set. Parameters:\n* $1 - parameter name. any one of 
the following: url, data, filter, 
domain, db, from",
"externaldata-web-invalid-format": "The error message if #get_web_data 
is called with an invalid format value.\n\nParameters:\n* $1 - invalid file 
format. Valid formats are: \"xml\", \"xml with xpath\", \"csv\", \"csv with 
header\", \"json\", and \"gff\"",
"externaldata-ldap-unable-to-connect": "The error message if 
#get_ldap_data can't connect to the LDAP server.\n\nParameters:\n* $1 - the 
LDAP server name",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I307d024a5bb1be9b8ce50cf26f85bce71b6452e2
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/ExternalData
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...Babel)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Iaab9197199db012b570b39242db83ea846d745ca
---
M i18n/qqq.json
M i18n/zh-hant.json
2 files changed, 6 insertions(+), 7 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index e2ddd60..f3548dc 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -16,10 +16,9 @@
]
},
"babel": "Header of Babel box. Parameters:\n* $1 - (Optional) the name 
of the page it is used on, for GENDER support",
-   "babel-desc": 
"{{desc|name=Babel|url=http://www.mediawiki.org/wiki/Extension:Babel}}";,
+   "babel-desc": 
"{{desc|name=Babel|url=https://www.mediawiki.org/wiki/Extension:Babel}}";,
"babel-url": "{{doc-important|Do not translate the namespace 
\"Project:\".}}\nThe page name at which more information about the 
babel system can be found.",
"babel-footer-url": "Unless this message is empty, this is used as link 
target in the last entry,\nalso known as the footer, of the outer 
Babel-box,\nprovided that the installation chooses to have a footer.\nThe 
corresponding link anchor is the message 
[[MediaWiki:babel-footer/{{UILANGCODE}}|babel-footer]] 
{{msg-mw|Babel-footer|notext=}}.\n\nFor installations having a 'Babel users per 
language' category tree, its root should be entered here.\nWhen translating, 
you can copy the category name from existing Babel systems in your language, 
but you can as well use a more generic name and leave it to individual 
installations, how to deal with it.\n\nThere is no need to alter the name space 
name Category.",
-   "babel-autocreate-abort": "Used as error message. Parameters:\n* $1 - 
the message {{msg-mw|babel-url}}",
"babel-autocreate-reason": "Edit summary for an automatically created 
Babel category page. Parameters:\n* $1 is a page title for information on 
Babel.",
"babel-autocreate-text-levels": "Text describing a category, at the top 
of the category page.\n\n* $1 is the level (0 to 5, or N).\n* $2 is a language 
name.\n* $3 is a language code (optional; for customisation).",
"babel-autocreate-text-main": "Text describing a category, at the top 
of the category page.\n\n* $1 is a language name.\n* $2 is a language code 
(optional; for customisation).",
diff --git a/i18n/zh-hant.json b/i18n/zh-hant.json
index ab7697b..41d657f 100644
--- a/i18n/zh-hant.json
+++ b/i18n/zh-hant.json
@@ -8,25 +8,25 @@
"Waihorace",
"Wrightbus",
"Cwlin0416",
-   "Cwek"
+   "Cwek",
+   "LNDDYL"
]
},
"babel": "Babel 使用者資訊",
"babel-desc": "提供 #babel 分析函數可自動產生一個能夠使用自訂樣板的使用者語言資訊欄。",
"babel-url": "Project:Babel",
"babel-footer-url": ":Category:Babel - 使用者 (依語言)",
-   "babel-autocreate-abort": "您所指定的使用者會用於自動建立 [[$1|Babel]] 分類使用,無法被註冊使用。",
"babel-autocreate-reason": "自動建立 [[$1|Babel]] 分類頁面。",
"babel-autocreate-text-levels": "在此分類中的使用者代表其擁有等級 $1 的 $2 語言能力。",
-   "babel-autocreate-text-main": "在此分類中的使用者代表其了解語言 $1。",
-   "babel-0": "此使用者[[$1|不]]了解或很難理解 [[$2|$3]]。",
+   "babel-autocreate-text-main": "在此分類中的使用者代表其瞭解語言 $1。",
+   "babel-0": "此使用者[[$1|不]]瞭解或很難理解 [[$2|$3]]。",
"babel-1": "這位使用者會[[$1|基本]]水準的 [[$2|$3]]。",
"babel-2": "這位使用者會[[$1|中等]]水準的 [[$2|$3]]。",
"babel-3": "這位使用者會[[$1|進階]]水準的 [[$2|$3]]。",
"babel-4": "這位使用者會[[$1|接近母語]]水準的 [[$2|$3]]。",
"babel-5": "這位使用者會[[$1|專業]]水準的 [[$2|$3]]。",
"babel-N": "這位使用者會[[$1|母語]]水準的 [[$2|$3]]。",
-   "babel-0-n": "此使用者[[$1|不]]了解或很難理解 [[$2|繁體中文]]。",
+   "babel-0-n": "此使用者[[$1|不]]瞭解或很難理解 [[$2|繁體中文]]。",
"babel-1-n": "這位使用者會[[$1|基本]]水準的 [[$2|繁體中文]]。",
"babel-2-n": "這位使用者會[[$1|中等]]水準的 [[$2|繁體中文]]。",
"babel-3-n": "這位使用者會[[$1|進階]]水準的 [[$2|繁體中文]]。",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: Iaab9197199db012b570b39242db83ea846d745ca
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Babel
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...AWSSDK)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I5f5245c947a10a0d5242b91aa26846c5d1ca06b8
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 20bbfa8..e83bb0b 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,8 +1,9 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "awssdk-desc": "{{desc|name=AWS 
SDK|url=http://www.mediawiki.org/wiki/Extension:AWSSDK}}";
+   "awssdk-desc": "{{desc|name=AWS 
SDK|url=https://www.mediawiki.org/wiki/Extension:AWSSDK}}";
 }

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I5f5245c947a10a0d5242b91aa26846c5d1ca06b8
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/AWSSDK
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...BatchUserRights)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I3ecdd42b87d9a509795bd530ee85c02f66bf14e3
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index 107b654..2321362 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -3,11 +3,12 @@
"authors": [
"SVG",
"Shirayuki",
-   "The Evil IP address"
+   "The Evil IP address",
+   "Umherirrender"
]
},
"batchuserrights": "{{doc-special|BatchUserRights|unlisted=1}}",
-   "batchuserrights-desc": "{{desc|name=Batch User 
Rights|url=http://www.mediawiki.org/wiki/Extension:BatchUserRights}}";,
+   "batchuserrights-desc": "{{desc|name=Batch User 
Rights|url=https://www.mediawiki.org/wiki/Extension:BatchUserRights}}";,
"batchuserrights-names": "Names of users which should be added to the 
selected groups",
"batchuserrights-intro": "How to use description on 
Special:BatchUserRights",
"batchuserrights-single-progress-update": "Used as success message. 
Parameters:\n* $1 - number of groups\n* $2 - username",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I3ecdd42b87d9a509795bd530ee85c02f66bf14e3
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BatchUserRights
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...FlaggedRevs)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I29d448f1dedb91b5cafb3993dc856ff61e8f099f
---
M i18n/flaggedrevs/qqq.json
1 file changed, 1 insertion(+), 1 deletion(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/flaggedrevs/qqq.json b/i18n/flaggedrevs/qqq.json
index cc23338..640a5f1 100644
--- a/i18n/flaggedrevs/qqq.json
+++ b/i18n/flaggedrevs/qqq.json
@@ -39,7 +39,7 @@
"editor": "{{Flagged Revs}}\n{{Identical|Editor}}",
"flaggedrevs": "{{Flagged Revs}}\nGeneral title for the 
[[Translating:Flagged Revs extension|Flagged Revs]] extension.\n* \"flagged\" 
in the sense of \"has been seen, has been checked\"",
"flaggedrevs-watched-pending": "{{FlaggedRevs}}\nAppears on top of user 
watchlist ([[Special:Watchlist]]).",
-   "flaggedrevs-desc": "{{Flagged Revs}}\n\n{{desc|name=Flagged 
Revisions|url=http://www.mediawiki.org/wiki/Extension:FlaggedRevs}}";,
+   "flaggedrevs-desc": "{{Flagged Revs}}\n\n{{desc|name=Flagged 
Revisions|url=https://www.mediawiki.org/wiki/Extension:FlaggedRevs}}";,
"flaggedrevs-pref-UI": "{{Flagged Revs-small}}\nShown in 
[[Special:Preferences]], under {{msg-mw|prefs-flaggedrevs}}, as a label for the 
following alternative choices\n* {{msg-mw|flaggedrevs-pref-UI-0}}\n* 
{{msg-mw|flaggedrevs-pref-UI-1}}\nSee [[:Image:FlaggedRevs.jpg]] for an example 
image.",
"flaggedrevs-pref-UI-0": "{{Flagged Revs-small}}\nOption in 
[[Special:Preferences]], under {{msg-mw|prefs-flaggedrevs}}.\n\nSee 
{{msg-mw|flaggedrevs-pref-UI-1}} for the opposite message.\n\nSee 
[[:Image:FlaggedRevs.jpg]] for an example image.",
"flaggedrevs-pref-UI-1": "{{Flagged Revs-small}}\nOption in 
[[Special:Preferences]], under {{msg-mw|prefs-flaggedrevs}}.\n\nSee 
{{msg-mw|flaggedrevs-pref-UI-0}} for the opposite message.\n\nSee 
[[:Image:FlaggedRevs.jpg]] for an example image.",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I29d448f1dedb91b5cafb3993dc856ff61e8f099f
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/FlaggedRevs
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


[MediaWiki-commits] [Gerrit] Use generic jshint/jsonlint jobs for more repos - change (integration/config)

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

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

Change subject: Use generic jshint/jsonlint jobs for more repos
..

Use generic jshint/jsonlint jobs for more repos

Change-Id: I3f444a7a4e67f5acde467361fdcc4a5f5ad35b2d
---
M jjb/integration.yaml
M jjb/labs.yaml
M jjb/misc.yaml
M jjb/mobile.yaml
M jjb/wm-fundraising.yaml
M zuul/layout.yaml
6 files changed, 26 insertions(+), 40 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/integration/config 
refs/changes/90/199190/1

diff --git a/jjb/integration.yaml b/jjb/integration.yaml
index 9543675..2cbe843 100644
--- a/jjb/integration.yaml
+++ b/jjb/integration.yaml
@@ -127,7 +127,6 @@
 name: 'integration-docroot'
 jobs:
  - 'integration-docroot-deploy'
- - '{name}-jslint'
 
 - project:
 name: 'integration-jenkins'
diff --git a/jjb/labs.yaml b/jjb/labs.yaml
index 03c3d13..ead408b 100644
--- a/jjb/labs.yaml
+++ b/jjb/labs.yaml
@@ -15,12 +15,11 @@
 jobs:
  - '{name}-debian-glue':
  distribution: trusty
- - '{name}-jslint'
+ - '{name}-jslint'  # Unused?
 
 - project:
 name: 'labs-tools-grrrit'
 jobs:
- - '{name}-jslint'
  - '{name}-yamllint'
 
 - project:
diff --git a/jjb/misc.yaml b/jjb/misc.yaml
index 2090b3f..7668503 100644
--- a/jjb/misc.yaml
+++ b/jjb/misc.yaml
@@ -46,7 +46,6 @@
 - project:
 name: 'oojs-core'
 jobs:
- - '{name}-jslint'
  - 'oojs-core-jsduck-publish'
 
 - project:
@@ -55,5 +54,4 @@
 - zend
 - hhvm
 jobs:
- - '{name}-jslint'
  - 'oojs-ui-jsduck-publish'
diff --git a/jjb/mobile.yaml b/jjb/mobile.yaml
index cd616fc..d63fb3d 100644
--- a/jjb/mobile.yaml
+++ b/jjb/mobile.yaml
@@ -1,12 +1,6 @@
 - project:
-name: 'apps-ios-wikipedia'
-jobs:
-  - '{name}-jslint'
-
-- project:
 name: 'apps-android-wikipedia'
 jobs:
-  - '{name}-jslint'
   - '{name}-maven-checkstyle'
 
 # Build the mighty Commons application for Android Platforms
diff --git a/jjb/wm-fundraising.yaml b/jjb/wm-fundraising.yaml
index df45c09..3074de1 100644
--- a/jjb/wm-fundraising.yaml
+++ b/jjb/wm-fundraising.yaml
@@ -2,7 +2,6 @@
 name: 'wikimedia-fundraising-tools'
 
 jobs:
- - '{name}-jslint'
  - '{name}-yamllint'
  - python-jobs
 
@@ -23,9 +22,3 @@
 
 jobs:
  - python-jobs
-
-- project:
-name: 'wikimedia-fundraising-dash'
-
-jobs:
- - '{name}-jslint'
diff --git a/zuul/layout.yaml b/zuul/layout.yaml
index 1b2992b..088804e 100644
--- a/zuul/layout.yaml
+++ b/zuul/layout.yaml
@@ -2232,23 +2232,23 @@
   - apps-android-commons-build
 
   - name: apps/android/wikipedia
-check:
-  - apps-android-wikipedia-jslint
+template:
+  - name: lint-js
 test:
-  - apps-android-wikipedia-jslint
   - tox-flake8
   - apps-android-wikipedia-maven-checkstyle
 gate-and-submit:
-  - apps-android-wikipedia-jslint
   - tox-flake8
   - apps-android-wikipedia-maven-checkstyle
 
   - name: apps/ios/wikipedia
 check-voter:
-  - apps-ios-wikipedia-jslint
+  - jshint
+  - jsonlint
   - phplint
 gate-and-submit:
-  - apps-ios-wikipedia-jslint
+  - jshint
+  - jsonlint
   - phplint
 
   - name: labs/incubator
@@ -2290,10 +2290,11 @@
 
   - name: labs/tools/grrrit
 check-voter:
- - labs-tools-grrrit-jslint
- - labs-tools-grrrit-yamllint
+ - jshint
+ - jsonlint
 gate-and-submit:
- - labs-tools-grrrit-jslint
+ - jshint
+ - jsonlint
  - labs-tools-grrrit-yamllint
 
   - name: labs/tools/wikibugs2
@@ -2309,13 +2310,16 @@
   - name: integration/docroot
 check-voter:
  - phplint
- - integration-docroot-jslint
+ - jshint
+ - jsonlint
 test:
  - phplint
- - integration-docroot-jslint
+ - jshint
+ - jsonlint
 gate-and-submit:
  - phplint
- - integration-docroot-jslint
+ - jshint
+ - jsonlint
 postmerge:
  - integration-docroot-deploy
 
@@ -2810,22 +2814,19 @@
   - name: wikimedia/fundraising/dash
 template:
   - name: npm
-check:
-  - wikimedia-fundraising-dash-jslint
-test:
-  - wikimedia-fundraising-dash-jslint
-gate-and-submit:
-  - wikimedia-fundraising-dash-jslint
+  - name: lint-js
 
   - name: wikimedia/fundraising/tools
 template:
  - name: 'python-lint'
prefix: 'wikimedia-fundraising-tools'
 check-voter:
-  - wikimedia-fundraising-tools-jslint
+  - jshint
+  - jsonlint
   - wikimedia-fundraising-tools-yamllint
 gate-and-submit:
-  - wikimedia-fundraising-tools-jslint
+  - jshint
+  - jsonlint
   - wikimedia-fundraising-tools-yamllint
 
   - name: wikimedia/fundraising/crm
@@ -7220,7 +7221,8 @@
 template:
   - name: npm
 check:
-  - oojs-core-jslint
+  - jshint
+  - jsonlint
 test:
   - jsduck
 gate-and-submit:
@@ -7233

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...BetaFeatures)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I73a43300ecd2a70938a42a4c0fce900451a86070
---
M i18n/hr.json
A i18n/ne.json
M i18n/qqq.json
3 files changed, 19 insertions(+), 7 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/hr.json b/i18n/hr.json
index aca80f3..c697a9a 100644
--- a/i18n/hr.json
+++ b/i18n/hr.json
@@ -1,17 +1,20 @@
 {
"@metadata": {
"authors": [
-   "MaGa"
+   "MaGa",
+   "Roberta F."
]
},
+   "betafeatures-auto-enroll": "Automatski omogući beta mogućnosti",
+   "betafeatures-section-desc": "Ovo {{PLURAL:$1|je nova mogućnost|su nove 
mogućnosti}} na projektu {{SITENAME}}. Molimo {{PLURAL:$1|iskušajte 
ju|iskušajte ih}} i napišite nam svoje mišljenje kako bismo {{PLURAL:$1|je|ih}} 
poboljšali na osnovi Vaših povratnih informacija.",
+   "betafeatures-tooltip": "Predstavljamo beta mogućnosti! Novo poglavlje 
u postavkama Vam omogućava testiranje i mogućnost povratne informacije o novim 
značajkama prije nego ih postavimo kao osnovne. Isprobajte nešto novo!",
+   "betafeatures-toplink": "Beta",
"mw-ui-feature-discuss": "rasprava",
"mw-ui-feature-info": "informacije",
-   "mw-ui-feature-user-count": "{{PLURAL:$1|Ovu mogućnost omogućio je 
jedan suradnik.|Ovu mogućnost omogućilo je $1 suradnika.|0=Ovu mogućnost nije 
omogućio niti jedan suradnik.}}",
"mw-ui-feature-requirements-betafeatures": "Zahtijeva uključivanje 
{{PLURAL:$1|sljedeće mogućnosti|sljedećih mogućnosti}}:",
"mw-ui-feature-requirements-javascript": "Ova mogućnost zahtijeva 
JavaScript.",
"mw-ui-feature-requirements-skins": "Moguće jedino sa sljedećim 
{{PLURAL:$1|izgledom|izgledima}}:",
+   "mw-ui-feature-user-count": "{{PLURAL:$1|Ovu mogućnost omogućio je 
jedan suradnik.|Ovu mogućnost omogućilo je $1 suradnika.|0=Ovu mogućnost nije 
omogućio niti jedan suradnik.}}",
"prefs-betafeatures": "Beta mogućnosti",
-   "betafeatures-auto-enroll": "Automatski omogući beta mogućnosti",
-   "betafeatures-section-desc": "Ovo {{PLURAL:$1|je nova mogućnost|su nove 
mogućnosti}} na projektu {{SITENAME}}. Molimo {{PLURAL:$1|iskušajte 
ju|iskušajte ih}} i napišite nam svoje mišljenje kako bismo {{PLURAL:$1|je|ih}} 
poboljšali na osnovi Vaših povratnih informacija.",
-   "betafeatures-tooltip": "Predstavljamo beta mogućnosti! Novo poglavlje 
u postavkama Vam omogućava testiranje i mogućnost povratne informacije o novim 
značajkama prije nego ih postavimo kao osnovne. Isprobajte nešto novo!"
+   "tooltip-pt-betafeatures": "Beta-mogućnosti"
 }
diff --git a/i18n/ne.json b/i18n/ne.json
new file mode 100644
index 000..d89ad14
--- /dev/null
+++ b/i18n/ne.json
@@ -0,0 +1,8 @@
+{
+   "@metadata": {
+   "authors": [
+   "बिप्लब आनन्द"
+   ]
+   },
+   "betafeatures-toplink": "बिटा"
+}
diff --git a/i18n/qqq.json b/i18n/qqq.json
index d5e9f34..ab2fbec 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -5,14 +5,15 @@
"Nemo bis",
"Raymond",
"Shirayuki",
-   "Liuxinyu970226"
+   "Liuxinyu970226",
+   "Umherirrender"
]
},
"apihelp-query+betafeatures-description": 
"{{doc-apihelp-description|query+betafeatures}}",
"apihelp-query+betafeatures-example-1": 
"{{doc-apihelp-example|query+betafeatures}}",
"apihelp-query+betafeatures-param-counts": 
"{{doc-apihelp-param|query+betafeatures|counts}}",
"betafeatures-auto-enroll": "Label for a checkbox that automatically 
enrolls the user in all the experiments happening on the wiki.\n\nDescription 
for this checkbox is:\n* {{msg-mw|Betafeatures-auto-enroll-desc}}",
-   "betafeatures-desc": "{{desc|name=Beta 
Features|url=http://www.mediawiki.org/wiki/Extension:BetaFeatures}}";,
+   "betafeatures-desc": "{{desc|name=Beta 
Features|url=https://www.mediawiki.org/wiki/Extension:BetaFeatures}}";,
"betafeatures-extension-type": "Section header on 
[[Special:Version]].\n{{Identical|Beta feature}}",
"betafeatures-section-desc": "Used as description for the checkbox in 
[[Special:Preferences]].\n\nFollowed by the checkbox which has the label 
{{msg-mw|Betafeatures-auto-enroll}}.\n\nParameters:\n* $1 - number of beta 
features",
"betafeatures-test-check-field": "Used as label for the checkbox, used 
to test the extension.\n\nThe description for this checkbox is 
{{msg-mw|Betafeatures-test-feature-field}}.",

-- 
To view, visit https://gerrit.wikimedia.org

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...BlueSpiceExtensions)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: Ia8f7d703b88d6e709f19e4aa0188d227d8e80030
---
A ArticleInfo/i18n/frr.json
M Blog/i18n/gl.json
M Blog/i18n/lb.json
M Checklist/i18n/gl.json
M InsertCategory/i18n/gl.json
M InsertLink/i18n/ps.json
M Notifications/i18n/gl.json
A PermissionManager/i18n/frr.json
M RSSFeeder/i18n/gl.json
M RSSStandards/i18n/gl.json
M ResponsibleEditors/i18n/gl.json
M Review/i18n/gl.json
A SaferEdit/i18n/gl.json
A SecureFileStore/i18n/gl.json
M ShoutBox/i18n/gl.json
M SmartList/i18n/gl.json
M Statistics/i18n/ps.json
17 files changed, 219 insertions(+), 12 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/ArticleInfo/i18n/frr.json b/ArticleInfo/i18n/frr.json
new file mode 100644
index 000..4055a2e
--- /dev/null
+++ b/ArticleInfo/i18n/frr.json
@@ -0,0 +1,9 @@
+{
+   "@metadata": {
+   "authors": [
+   "Murma174"
+   ]
+   },
+   "bs-articleinfo-templates": "Föörlaagen",
+   "bs-articleinfo-statebarbodytemplates": "Föörlaagen"
+}
diff --git a/Blog/i18n/gl.json b/Blog/i18n/gl.json
index ba35de7..6edc856 100644
--- a/Blog/i18n/gl.json
+++ b/Blog/i18n/gl.json
@@ -25,6 +25,9 @@
"bs-blog-pref-showpermalink": "Mostrar ligazón permanente",
"bs-blog-pref-sortby": "Ordenar por:",
"bs-blog-pref-imagerendermode": "Mostrar imaxes como:",
+   "bs-blog-pref-imagefloatdirection": "Fluxo do texto: posición da imaxe",
"bs-blog-pref-maxentrycharacters": "Número de palabras por entrada:",
-   "bs-blog-tag-blog-desc": "Mostrar entradas de blog en cada páxina."
+   "bs-blog-tag-blog-desc": "Mostrar entradas de blog en cada páxina.",
+   "bs-blog-tag-blogtime-desc": "Esta etiqueta proporciónalle a 
oportunidade de fixar un selo de tempo personalizado para as entradas do blog.",
+   "bs-blog-tag-blogtime-err": "O formato debe ser MMDDHHmm p. ex. 
para 12 de xaneiro de 2013 ás 15:43 o selo de tempo debe ser: 201301121543"
 }
diff --git a/Blog/i18n/lb.json b/Blog/i18n/lb.json
index a234af2..0f5f1b8 100644
--- a/Blog/i18n/lb.json
+++ b/Blog/i18n/lb.json
@@ -11,5 +11,6 @@
"bs-blog-blog": "Blog",
"bs-blog-pref-moreinnewwindow": "Eng nei Fënster opmaache fir méi ze 
liesen",
"bs-blog-pref-sortby": "Zortéieren no:",
-   "bs-blog-pref-imagerendermode": "Biller weisen als:"
+   "bs-blog-pref-imagerendermode": "Biller weisen als:",
+   "bs-blog-tag-blogtime-err": "De Format ass MMDDSSmm espou datt z. 
Bsp. fir den 12. Januar 2013 ëm 15:43 den Zäitstempel 201301121543 ass"
 }
diff --git a/Checklist/i18n/gl.json b/Checklist/i18n/gl.json
index dfe91c4..160892a 100644
--- a/Checklist/i18n/gl.json
+++ b/Checklist/i18n/gl.json
@@ -23,5 +23,6 @@
"bs-checklist-dlg-new-title": "Engadir lista nova",
"bs-checklist-dlg-new-prompt": "Engadir un título para a lista",
"bs-checklist-alert": "Atención!",
-   "bs-checklist-confirm-dirty-title": "Hai cambios sen gardar!"
+   "bs-checklist-confirm-dirty-title": "Hai cambios sen gardar!",
+   "bs-checklist-confirm-dirty-text": "Fixo modificacións na lista que 
aínda non se gardaron. Está seguro de que quere perder os cambios?"
 }
diff --git a/InsertCategory/i18n/gl.json b/InsertCategory/i18n/gl.json
index d4f29a3..93a3b1d 100644
--- a/InsertCategory/i18n/gl.json
+++ b/InsertCategory/i18n/gl.json
@@ -4,6 +4,7 @@
"Elisardojm"
]
},
+   "bs-insertcategory-desc": "Xanela para engadir unha ligazón a unha 
categoría",
"bs-insertcategory-insertcat": "Inserir categoría",
"prefs-insertcategory": "Inserir categoría",
"bs-insertcategory-pref-withparents": "Inserir categoría cos seus pais",
diff --git a/InsertLink/i18n/ps.json b/InsertLink/i18n/ps.json
index b3183e6..7fce1fe 100644
--- a/InsertLink/i18n/ps.json
+++ b/InsertLink/i18n/ps.json
@@ -4,5 +4,6 @@
"Ahmed-Najib-Biabani-Ibrahimkhel"
]
},
+   "bs-insertlink-label-page": "مخ",
"bs-insertlink-label-searchfile": "پلټل..."
 }
diff --git a/Notifications/i18n/gl.json b/Notifications/i18n/gl.json
index 66dc711..1acda3f 100644
--- a/Notifications/i18n/gl.json
+++ b/Notifications/i18n/gl.json
@@ -17,6 +17,7 @@
"bs-echo-page-delete": "A páxina [[:$1]] foi borrada",
"bs-echo-page-move": "A páxina [[:$1]] foi movida",
"bs-echo-page-newuser": "Creouse o usuario $1.",
+   "bs-echo-page-shoutbox": "Unha nova mensaxe de ShoutBox no sitio 
[[:$1]].",
"bs-notifications-email-new-subject": "$2 {{GENDER:$2|creou}} a páxina 
$1",
"bs-notifications-email-new": "{{GENDER:$2|Creouse}} a páxina \"$

[MediaWiki-commits] [Gerrit] Localisation updates from https://translatewiki.net. - change (mediawiki...BiblioPlus)

2015-03-23 Thread jenkins-bot (Code Review)
jenkins-bot has submitted this change and it was merged.

Change subject: Localisation updates from https://translatewiki.net.
..


Localisation updates from https://translatewiki.net.

Change-Id: I1b2cdc2b2b6538afefefbe8e3ff2e4c7309607dd
---
M i18n/qqq.json
1 file changed, 3 insertions(+), 2 deletions(-)

Approvals:
  L10n-bot: Looks good to me, approved
  Legoktm: Looks good to me, approved
  jenkins-bot: Verified



diff --git a/i18n/qqq.json b/i18n/qqq.json
index c5af351..e1e39e6 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -1,10 +1,11 @@
 {
"@metadata": {
"authors": [
-   "Shirayuki"
+   "Shirayuki",
+   "Umherirrender"
]
},
-   "biblioplus-desc": "{{desc|name=Biblio 
Plus|url=http://www.mediawiki.org/wiki/Extension:BiblioPlus}}";,
+   "biblioplus-desc": "{{desc|name=Biblio 
Plus|url=https://www.mediawiki.org/wiki/Extension:BiblioPlus}}";,
"biblioplus-doi-tooltip": "Message in the tooltip when hovering over a 
reference in the References section.",
"biblioplus-pmid-tooltip": "Message in the tooltip when hovering over a 
reference in the References section.",
"biblioplus-isbn-tooltip": "Message in the tooltip when hovering over 
an ISBN link in the References section.",

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

Gerrit-MessageType: merged
Gerrit-Change-Id: I1b2cdc2b2b6538afefefbe8e3ff2e4c7309607dd
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BiblioPlus
Gerrit-Branch: master
Gerrit-Owner: L10n-bot 
Gerrit-Reviewer: L10n-bot 
Gerrit-Reviewer: Legoktm 
Gerrit-Reviewer: jenkins-bot <>

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


  1   2   3   4   5   6   7   >