Umherirrender has uploaded a new change for review. ( 
https://gerrit.wikimedia.org/r/385795 )

Change subject: Add missing qqq message documentation
......................................................................

Add missing qqq message documentation

Activate banana checker


Change-Id: I6adafe44f838bff9f3e50e19cd5eb7c2ebbf1888
---
M Gruntfile.js
M i18n/qqq.json
M package.json
3 files changed, 76 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/BlogPage 
refs/changes/95/385795/1

diff --git a/Gruntfile.js b/Gruntfile.js
index 265c39e..16c4c55 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -2,6 +2,7 @@
 module.exports = function ( grunt ) {
        grunt.loadNpmTasks( 'grunt-contrib-jshint' );
        grunt.loadNpmTasks( 'grunt-jsonlint' );
+       grunt.loadNpmTasks( 'grunt-banana-checker' );
 
        grunt.initConfig( {
                jshint: {
@@ -12,6 +13,9 @@
                                '**/*.js'
                        ]
                },
+               banana: {
+                       all: 'i18n/'
+               },
                jsonlint: {
                        all: [
                                '**/*.json',
@@ -21,6 +25,6 @@
                }
        } );
 
-       grunt.registerTask( 'test', [ 'jsonlint', 'jshint' ] );
+       grunt.registerTask( 'test', [ 'jsonlint', 'jshint', 'banana' ] );
        grunt.registerTask( 'default', 'test' );
 };
diff --git a/i18n/qqq.json b/i18n/qqq.json
index 49621f1..2877b18 100644
--- a/i18n/qqq.json
+++ b/i18n/qqq.json
@@ -2,5 +2,73 @@
        "@metadata": {
                "authors": []
        },
-       "blogpage-desc": 
"{{desc|name=BlogPage|url=https://www.mediawiki.org/wiki/Extension:BlogPage}}";
-}
\ No newline at end of file
+       "blogpage-desc": 
"{{desc|name=BlogPage|url=https://www.mediawiki.org/wiki/Extension:BlogPage}}";,
+       "apihelp-blogpage-description": "{{doc-apihelp-description|blogpage}}",
+       "apihelp-blogpage-summary": "{{doc-apihelp-summary|blogpage}}",
+       "apihelp-blogpage-param-pageName": 
"{{doc-apihelp-param|blogpage|pageName}}",
+       "apihelp-blogpage-example-1": "{{doc-apihelp-example}}",
+       "blog-and": "A word combination word",
+       "blog-anonymous-name": "A user name",
+       "blog-author-comments": "A list item",
+       "blog-author-more-by": "A header text",
+       "blog-author-points": "May unused",
+       "blog-author-title": "A header text",
+       "blog-author-votes": "A list item",
+       "blog-by": "A word combination word",
+       "blog-by-user-category": "A category name",
+       "blog-comments-of-day": "A header text",
+       "blog-created": "A text with date and time of last edit",
+       "blog-created-ago": "A text with date and time of last edit",
+       "blog-in-the-news": "A header text",
+       "blog-last-edited": "A text with date and time of last edit",
+       "blog-login": "Shown for anon user",
+       "blog-login-edit": "Shown for anon user",
+       "blog-new-articles": "A header text",
+       "blog-permission-required": "An error message",
+       "blog-popular-articles": "A header text",
+       "blog-multiple-authors": "A hint text when there are more results",
+       "blog-recent-editors": "A header text",
+       "blog-recent-editors-message": "A description message",
+       "blog-recent-voters": "A header text",
+       "blog-recent-voters-message": "A description message",
+       "blog-view-archive-link": "A link text",
+       "game-unit-quiz-title": "A page header",
+       "game-unit-poll-title": "A page header",
+       "game-unit-picturegame-title": "A page header",
+       "articlelists": "{{doc-special}}",
+       "ah-no-results": "A hint for an empty result",
+       "ah-popular-articles": "A page title",
+       "ah-new-articles": "A page title",
+       "ah-rss-feed": "A link text",
+       "ah-write-article": "A link text",
+       "ah-todays-articles": "A link text",
+       "ah-most-votes": "A header text",
+       "ah-what-talking-about": "A header text",
+       "articleshome": "{{doc-special}}",
+       "createblogpost": "{{doc-special}}",
+       "blog-create-rules": "{{ignore}}",
+       "blog-tagcloud-blacklist": "{{ignore}}",
+       "blog-create-category-help": "A help text",
+       "blog-create-title": "A page header",
+       "blog-create-text": "A description text",
+       "blog-create-categories": "A title text",
+       "blog-create-button": "A button text",
+       "blog-create-summary": "An edit summary",
+       "blog-create-error-need-content": "An error message",
+       "blog-create-error-need-title": "An error message",
+       "blog-create-error-page-exists": "An error message",
+       "blog-js-create-error-need-content": "An error message",
+       "blog-js-create-error-need-title": "An error message",
+       "blog-js-create-error-page-exists": "An error message",
+       "blog-more": "A link text",
+       "blog-time-ago": "Phrase for indicating how long ago something 
happened.",
+       "blog-time-days": "Phrase for indicating how long ago something 
happened.",
+       "blog-time-hours": "Phrase for indicating how long ago something 
happened.",
+       "blog-time-minutes": "Phrase for indicating how long ago something 
happened.",
+       "blog-time-seconds": "Phrase for indicating how long ago something 
happened.",
+       "action-createblogpost": "{{doc-action|createblogpost}}",
+       "right-createblogpost": "{{doc-right|createblogpost}}",
+       "blog-user-articles-title": "A header",
+       "blog-user-articles-votes": "A list item",
+       "blog-user-article-comment": "A link text"
+}
diff --git a/package.json b/package.json
index c4d2619..a43466c 100644
--- a/package.json
+++ b/package.json
@@ -5,6 +5,7 @@
   },
   "devDependencies": {
     "grunt": "1.0.1",
+    "grunt-banana-checker": "0.6.0",
     "grunt-contrib-jshint": "0.11.3",
     "grunt-jsonlint": "1.0.7"
   }

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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6adafe44f838bff9f3e50e19cd5eb7c2ebbf1888
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/BlogPage
Gerrit-Branch: master
Gerrit-Owner: Umherirrender <umherirrender_de...@web.de>

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

Reply via email to