jenkins-bot has submitted this change and it was merged.
Change subject: [i18n] 'checkimages-source-tag-comment' is i18n not L10N ......................................................................
[i18n] 'checkimages-source-tag-comment' is i18n not L10N
Since ab709f90be766b3d569f5d json file is no longer a localized string. Fallback may be used.
Change-Id: I4d1b3ac67651b6b082be6ed91be8af97a7fa4241 --- M scripts/checkimages.py 1 file changed, 1 insertion(+), 2 deletions(-)
Approvals: John Vandenberg: Looks good to me, approved jenkins-bot: Verified
diff --git a/scripts/checkimages.py b/scripts/checkimages.py index 213ab96..555d14f 100755 --- a/scripts/checkimages.py +++ b/scripts/checkimages.py @@ -555,8 +555,7 @@ self.pageHidden = i18n.translate(self.site, PageWithHiddenTemplates) self.pageAllowed = i18n.translate(self.site, PageWithAllowedTemplates) self.comment = i18n.twtranslate(self.site.lang, - 'checkimages-source-tag-comment', - fallback=False) + 'checkimages-source-tag-comment') # Adding the bot's nickname at the notification text if needed. self.bots = i18n.translate(self.site, bot_list) if self.bots:
pywikibot-commits@lists.wikimedia.org