Miguel2706 has submitted this change and it was merged. Change subject: Some consistency tweaks in preparation for adding extension to translatewiki.net ......................................................................
Some consistency tweaks in preparation for adding extension to translatewiki.net * Use UTF-8 * Use standard headers * Remove non standard headers in front of the languages. Will be rebuild from translatewiki.net scripts * Remove . from end of the description message * Comment out two messages which seems unused. ** If they are used please comment in again and document the usage in the message documention section (qqq), see ** https://www.mediawiki.org/wiki/I18n#Message_documentation Change-Id: If643a1032a9f27156a145b5f2cafcd2fbb6a2506 (cherry picked from commit 8f8567eabf05024d1b8cdccb4c289697eb752c8e) --- M ads.i18n.php 1 file changed, 37 insertions(+), 39 deletions(-) Approvals: Miguel2706: Verified; Looks good to me, approved diff --git a/ads.i18n.php b/ads.i18n.php index b35d250..8358231 100644 --- a/ads.i18n.php +++ b/ads.i18n.php @@ -1,39 +1,37 @@ -<?php -/********************************************************************* -** -** This file is part of the Ads extension for MediaWiki -* @file -* @ingroup Extensions -* @author Miguel Peláez <miguel2706outlook.com> -* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later -* @link http://www.mediawiki.org/wiki/Extension:Ads Documentation -*/ - -*********************************************************************/ -$messages = array(); - -/* *** English *** */ -$messages['en'] = array( - 'ads' => 'ads', - 'ads-desc' => 'Inserts Ads in the navigation bar.', - 'ads-title' => 'Ads', -); - -/* *** Deutsch *** */ -$messages['de'] = array( - 'ads' => 'ads', - 'ads-desc' => 'Fügt Anzeigen in der Navigationsleiste.', - 'ads-title' => 'Werbung', -); - -/* *** Français *** */ -$messages['fr'] = array( - 'ads' => 'ads', - 'ads-desc' => 'Inserts annonces dans la barre de navigation.', - 'ads-title' => 'publicité', -/* *** Español*** */ -$messages['es'] = array( - 'ads' => 'ads', - 'ads-desc' => 'Inserta anuncios en la barra de navegación.', - 'ads-title' => 'Publicidad', -); +<?php +/** + * This file is part of the Ads extension for MediaWiki + * @file + * @ingroup Extensions + * @author Miguel Peláez <miguel2706outlook.com> + * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later + * @link http://www.mediawiki.org/wiki/Extension:Ads Documentation +*/ + +$messages = array(); + +/** English + * @author Miguel Peláez + */ +$messages['en'] = array( + # 'ads' => 'Ads', // FIXME: Seems unused + 'ads-desc' => 'Inserts ads in the navigation bar', + # 'ads-title' => 'Ads', // FIXME: Seems unused +); + +$messages['de'] = array( + 'ads' => 'ads', + 'ads-desc' => 'Fügt Anzeigen in der Navigationsleiste', + 'ads-title' => 'Werbung', +); + +$messages['fr'] = array( + 'ads' => 'ads', + 'ads-desc' => 'Inserts annonces dans la barre de navigation', + 'ads-title' => 'publicité', + +$messages['es'] = array( + 'ads' => 'ads', + 'ads-desc' => 'Inserta anuncios en la barra de navegación', + 'ads-title' => 'Publicidad', +); -- To view, visit https://gerrit.wikimedia.org/r/68855 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: merged Gerrit-Change-Id: If643a1032a9f27156a145b5f2cafcd2fbb6a2506 Gerrit-PatchSet: 3 Gerrit-Project: mediawiki/extensions/Ads Gerrit-Branch: master Gerrit-Owner: Raimond Spekking <[email protected]> Gerrit-Reviewer: Miguel2706 <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
