Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/MobileFormatter.php |
— | — | @@ -64,6 +64,7 @@ |
65 | 65 | * @param Title $title: Title to which $html belongs |
66 | 66 | * @param string $format: 'XHTML' or 'WML' |
67 | 67 | * @param WmlContext $wmlContext: Context for creation of WML cards, can be omitted if $format == 'XHTML' |
| 68 | + * @throws MWException |
68 | 69 | */ |
69 | 70 | public function __construct( $html, $title, $format, WmlContext $wmlContext = null ) { |
70 | 71 | parent::__construct( $html ); |
— | — | @@ -349,7 +350,7 @@ |
350 | 351 | $commonAttributes = array( 'mp-tfa', 'mp-itn' ); |
351 | 352 | |
352 | 353 | $content = $mainPage->createElement( 'div' ); |
353 | | - $content->setAttribute( 'id', 'content' ); |
| 354 | + $content->setAttribute( 'id', 'mainpage' ); |
354 | 355 | |
355 | 356 | if ( $zeroLandingPage ) { |
356 | 357 | $content->appendChild( $zeroLandingPage ); |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/DeviceDetection.php |
— | — | @@ -17,7 +17,7 @@ |
18 | 18 | /** |
19 | 19 | * @return array |
20 | 20 | */ |
21 | | - public function availableFormats() { |
| 21 | + public function getAvailableFormats() { |
22 | 22 | $formats = array ( |
23 | 23 | 'html' => array ( |
24 | 24 | 'view_format' => 'html', |
— | — | @@ -247,11 +247,21 @@ |
248 | 248 | } |
249 | 249 | |
250 | 250 | /** |
| 251 | + * @param $userAgent |
| 252 | + * @param string $acceptHeader |
| 253 | + * @return array |
| 254 | + */ |
| 255 | + public function detectDevice( $userAgent, $acceptHeader = '' ) { |
| 256 | + $formatName = $this->detectFormatName( $userAgent, $acceptHeader ); |
| 257 | + return $this->getDevice( $formatName ); |
| 258 | + } |
| 259 | + |
| 260 | + /** |
251 | 261 | * @param $formatName |
252 | 262 | * @return array |
253 | 263 | */ |
254 | | - public function format( $formatName ) { |
255 | | - $format = $this->availableFormats(); |
| 264 | + public function getDevice( $formatName ) { |
| 265 | + $format = $this->getAvailableFormats(); |
256 | 266 | return ( isset( $format[$formatName] ) ) ? $format[$formatName] : array(); |
257 | 267 | } |
258 | 268 | |
— | — | @@ -260,7 +270,7 @@ |
261 | 271 | * @param $acceptHeader string |
262 | 272 | * @return string |
263 | 273 | */ |
264 | | - public function formatName( $userAgent, $acceptHeader = '' ) { |
| 274 | + public function detectFormatName( $userAgent, $acceptHeader = '' ) { |
265 | 275 | $formatName = ''; |
266 | 276 | |
267 | 277 | if ( preg_match( '/Android/', $userAgent ) ) { |
— | — | @@ -334,4 +344,18 @@ |
335 | 345 | } |
336 | 346 | return $formatName; |
337 | 347 | } |
| 348 | + |
| 349 | + /** |
| 350 | + * @return array: List of all device-specific stylesheets |
| 351 | + */ |
| 352 | + public function getCssFiles() { |
| 353 | + $devices = $this->getAvailableFormats(); |
| 354 | + $files = array(); |
| 355 | + foreach ( $devices as $dev ) { |
| 356 | + if ( isset( $dev['css_file_name'] ) ) { |
| 357 | + $files[] = $dev['css_file_name']; |
| 358 | + } |
| 359 | + } |
| 360 | + return array_unique( $files ); |
| 361 | + } |
338 | 362 | } |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/skins/SkinMobile.php |
— | — | @@ -19,6 +19,7 @@ |
20 | 20 | function outputPage( OutputPage $out = null ) { |
21 | 21 | wfProfileIn( __METHOD__ ); |
22 | 22 | $out = $this->getOutput(); |
| 23 | + $out->setRobotpolicy( 'noindex,nofollow' ); |
23 | 24 | $this->extMobileFrontend->beforePageDisplayHTML( $out ); |
24 | 25 | echo $this->extMobileFrontend->DOMParse( $out ); |
25 | 26 | wfProfileOut( __METHOD__ ); |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/MobileFrontend.body.php |
— | — | @@ -8,9 +8,7 @@ |
9 | 9 | * @var Title |
10 | 10 | */ |
11 | 11 | public static $title; |
12 | | - public static $messages = array(); |
13 | 12 | public static $htmlTitle; |
14 | | - public static $device; |
15 | 13 | public static $randomPageUrl; |
16 | 14 | public static $format; |
17 | 15 | public static $search; |
— | — | @@ -23,10 +21,8 @@ |
24 | 22 | public static $hideSearchBox = false; |
25 | 23 | public static $hideLogo = false; |
26 | 24 | public static $hideFooter = false; |
27 | | - public static $languageUrls; |
28 | 25 | public static $wsLoginToken = ''; |
29 | 26 | public static $wsLoginFormAction = ''; |
30 | | - public static $isFilePage; |
31 | 27 | public static $zeroRatedBanner; |
32 | 28 | public static $useFormatCookieName; |
33 | 29 | |
— | — | @@ -55,6 +51,7 @@ |
56 | 52 | |
57 | 53 | private $forceMobileView = false; |
58 | 54 | private $contentTransformations = true; |
| 55 | + private $device; |
59 | 56 | |
60 | 57 | public function __construct() { |
61 | 58 | global $wgMFConfigProperties; |
— | — | @@ -229,48 +226,16 @@ |
230 | 227 | } |
231 | 228 | |
232 | 229 | public function getMsg() { |
233 | | - global $wgContLang, $wgRequest, $wgServer, $wgMobileRedirectFormAction, $wgOut, $wgLanguageCode; |
| 230 | + global $wgRequest, $wgServer, $wgMobileRedirectFormAction; |
234 | 231 | wfProfileIn( __METHOD__ ); |
235 | 232 | |
236 | 233 | self::$viewNormalSiteURL = $this->getDesktopUrl( wfExpandUrl( $wgRequest->escapeAppendQuery( 'mobileaction=toggle_view_desktop' ) ) ); |
237 | 234 | |
238 | | - $languageUrls = array(); |
239 | | - |
240 | | - $languageUrls[] = array( |
241 | | - 'href' => $wgRequest->getFullRequestURL(), |
242 | | - 'text' => self::$htmlTitle, |
243 | | - 'language' => $wgContLang->getLanguageName( $wgLanguageCode ), |
244 | | - 'class' => 'interwiki-' . $wgLanguageCode, |
245 | | - 'lang' => $wgLanguageCode, |
246 | | - ); |
247 | | - |
248 | | - foreach ( $wgOut->getLanguageLinks() as $l ) { |
249 | | - $tmp = explode( ':', $l, 2 ); |
250 | | - $class = 'interwiki-' . $tmp[0]; |
251 | | - $lang = $tmp[0]; |
252 | | - unset( $tmp ); |
253 | | - $nt = Title::newFromText( $l ); |
254 | | - if ( $nt ) { |
255 | | - $languageUrl = $this->getMobileUrl( $nt->getFullURL() ); |
256 | | - $languageUrls[] = array( |
257 | | - 'href' => $languageUrl, |
258 | | - 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' |
259 | | - ? $wgContLang->getLanguageName( $nt->getInterwiki() ) |
260 | | - : $l ), |
261 | | - 'language' => $wgContLang->getLanguageName( $lang ), |
262 | | - 'class' => $class, |
263 | | - 'lang' => $lang, |
264 | | - ); |
265 | | - } |
266 | | - } |
267 | | - |
268 | | - self::$languageUrls = $languageUrls; |
269 | | - |
270 | 235 | self::$mobileRedirectFormAction = ( $wgMobileRedirectFormAction !== false ) |
271 | 236 | ? $wgMobileRedirectFormAction |
272 | 237 | : "{$wgServer}/w/mobileRedirect.php"; |
273 | 238 | |
274 | | - self::$randomPageUrl = $this->getRelativeURL( SpecialPage::getTitleFor( 'Randompage' )->getLocalUrl() ); |
| 239 | + self::$randomPageUrl = SpecialPage::getTitleFor( 'Randompage' )->getLocalUrl(); |
275 | 240 | wfProfileOut( __METHOD__ ); |
276 | 241 | return true; |
277 | 242 | } |
— | — | @@ -311,7 +276,7 @@ |
312 | 277 | * @return bool |
313 | 278 | */ |
314 | 279 | public function beforePageDisplayHTML( &$out ) { |
315 | | - global $wgRequest, $wgUser; |
| 280 | + global $wgRequest; |
316 | 281 | wfProfileIn( __METHOD__ ); |
317 | 282 | |
318 | 283 | // Note: The WebRequest Class calls are made in this block because |
— | — | @@ -342,10 +307,6 @@ |
343 | 308 | $acceptHeader = isset( $_SERVER["HTTP_ACCEPT"] ) ? $_SERVER["HTTP_ACCEPT"] : ''; |
344 | 309 | self::$title = $out->getTitle(); |
345 | 310 | |
346 | | - if ( self::$title->getNamespace() == NS_FILE ) { |
347 | | - self::$isFilePage = true; |
348 | | - } |
349 | | - |
350 | 311 | self::$htmlTitle = $out->getHTMLTitle(); |
351 | 312 | $this->disableImages = $wgRequest->getCookie( 'disableImages' ); |
352 | 313 | self::$displayNoticeId = $wgRequest->getText( 'noticeid', '' ); |
— | — | @@ -355,20 +316,20 @@ |
356 | 317 | self::$search = $wgRequest->getText( 'search' ); |
357 | 318 | self::$searchField = $wgRequest->getText( 'search', '' ); |
358 | 319 | |
359 | | - $device = new DeviceDetection(); |
| 320 | + $detector = new DeviceDetection(); |
360 | 321 | |
361 | 322 | if ( $xDevice ) { |
362 | 323 | $formatName = $xDevice; |
363 | 324 | } else { |
364 | | - $formatName = $device->formatName( $userAgent, $acceptHeader ); |
| 325 | + $formatName = $detector->detectFormatName( $userAgent, $acceptHeader ); |
365 | 326 | } |
366 | 327 | |
367 | | - self::$device = $device->format( $formatName ); |
| 328 | + $this->device = $detector->getDevice( $formatName ); |
368 | 329 | $this->checkUserStatus(); |
369 | 330 | $this->setDefaultLogo(); |
370 | 331 | |
371 | 332 | // honor useformat=mobile-wap if it's set, otherwise determine by device |
372 | | - $viewFormat = ( $this->getUseFormat() == 'mobile-wap' ) ? 'mobile-wap' : self::$device['view_format']; |
| 333 | + $viewFormat = ( $this->getUseFormat() == 'mobile-wap' ) ? 'mobile-wap' : $this->device['view_format']; |
373 | 334 | $this->contentFormat = self::parseContentFormat( $viewFormat ); |
374 | 335 | |
375 | 336 | $this->getMsg(); |
— | — | @@ -496,6 +457,44 @@ |
497 | 458 | return true; |
498 | 459 | } |
499 | 460 | |
| 461 | + private function getLanguageUrls() { |
| 462 | + global $wgRequest, $wgContLang, $wgLanguageCode, $wgOut; |
| 463 | + |
| 464 | + wfProfileIn( __METHOD__ ); |
| 465 | + $languageUrls = array(); |
| 466 | + |
| 467 | + $languageUrls[] = array( |
| 468 | + 'href' => $wgRequest->getFullRequestURL(), |
| 469 | + 'text' => self::$htmlTitle, |
| 470 | + 'language' => $wgContLang->getLanguageName( $wgLanguageCode ), |
| 471 | + 'class' => 'interwiki-' . $wgLanguageCode, |
| 472 | + 'lang' => $wgLanguageCode, |
| 473 | + ); |
| 474 | + |
| 475 | + foreach ( $wgOut->getLanguageLinks() as $l ) { |
| 476 | + $tmp = explode( ':', $l, 2 ); |
| 477 | + $class = 'interwiki-' . $tmp[0]; |
| 478 | + $lang = $tmp[0]; |
| 479 | + unset( $tmp ); |
| 480 | + $nt = Title::newFromText( $l ); |
| 481 | + if ( $nt ) { |
| 482 | + $languageUrl = $this->getMobileUrl( $nt->getFullURL() ); |
| 483 | + $languageUrls[] = array( |
| 484 | + 'href' => $languageUrl, |
| 485 | + 'text' => ( $wgContLang->getLanguageName( $nt->getInterwiki() ) != '' |
| 486 | + ? $wgContLang->getLanguageName( $nt->getInterwiki() ) |
| 487 | + : $l ), |
| 488 | + 'language' => $wgContLang->getLanguageName( $lang ), |
| 489 | + 'class' => $class, |
| 490 | + 'lang' => $lang, |
| 491 | + ); |
| 492 | + } |
| 493 | + } |
| 494 | + wfProfileOut( __METHOD__ ); |
| 495 | + |
| 496 | + return $languageUrls; |
| 497 | + } |
| 498 | + |
500 | 499 | /** |
501 | 500 | * @return Mixed |
502 | 501 | */ |
— | — | @@ -525,24 +524,6 @@ |
526 | 525 | } |
527 | 526 | |
528 | 527 | /** |
529 | | - * @param $url string |
530 | | - * @return string |
531 | | - */ |
532 | | - private function getRelativeURL( $url ) { |
533 | | - wfProfileIn( __METHOD__ ); |
534 | | - $parsedUrl = parse_url( $url ); |
535 | | - // Validates value as IP address |
536 | | - if ( !empty( $parsedUrl['host'] ) && !IP::isValid( $parsedUrl['host'] ) ) { |
537 | | - $baseUrl = $parsedUrl['scheme'] . '://' . $parsedUrl['host']; |
538 | | - $baseUrl = str_replace( $baseUrl, '', $url ); |
539 | | - wfProfileOut( __METHOD__ ); |
540 | | - return $baseUrl; |
541 | | - } |
542 | | - wfProfileOut( __METHOD__ ); |
543 | | - return $url; |
544 | | - } |
545 | | - |
546 | | - /** |
547 | 528 | * Disables caching if the request is coming from a trusted proxy |
548 | 529 | * @return bool |
549 | 530 | */ |
— | — | @@ -762,7 +743,7 @@ |
763 | 744 | $html = $out->getHTML(); |
764 | 745 | |
765 | 746 | wfProfileIn( __METHOD__ . '-formatter-init' ); |
766 | | - $formatter = new MobileFormatter( MobileFormatter::wrapHTML( "<div id='content'>$html</div>" ), self::$title, $this->contentFormat, $this->wmlContext ); |
| 747 | + $formatter = new MobileFormatter( MobileFormatter::wrapHTML( $html ), self::$title, $this->contentFormat, $this->wmlContext ); |
767 | 748 | $doc = $formatter->getDoc(); |
768 | 749 | wfProfileOut( __METHOD__ . '-formatter-init' ); |
769 | 750 | |
— | — | @@ -812,12 +793,12 @@ |
813 | 794 | wfProfileIn( __METHOD__ . '-getText' ); |
814 | 795 | $formatter->setIsMainPage( self::$title->isMainPage() ); |
815 | 796 | if ( $this->contentFormat == 'XHTML' |
816 | | - && self::$device['supports_javascript'] === true |
| 797 | + && $this->device['supports_javascript'] === true |
817 | 798 | && empty( self::$search ) ) |
818 | 799 | { |
819 | 800 | $formatter->enableExpandableSections(); |
820 | 801 | } |
821 | | - $contentHtml = $formatter->getText( 'content' ); |
| 802 | + $contentHtml = $formatter->getText(); |
822 | 803 | wfProfileOut( __METHOD__ . '-getText' ); |
823 | 804 | |
824 | 805 | wfProfileIn( __METHOD__ . '-templates' ); |
— | — | @@ -849,7 +830,6 @@ |
850 | 831 | if ( !empty( self::$displayNoticeId ) ) { |
851 | 832 | if ( intval( self::$displayNoticeId ) === 2 ) { |
852 | 833 | $sopaNoticeTemplate = new SopaNoticeTemplate(); |
853 | | - $sopaNoticeTemplate->set( 'messages', self::$messages ); |
854 | 834 | $noticeHtml = $sopaNoticeTemplate->getHTML(); |
855 | 835 | } |
856 | 836 | } |
— | — | @@ -899,7 +879,7 @@ |
900 | 880 | } |
901 | 881 | |
902 | 882 | public function getFooterTemplate() { |
903 | | - global $wgExtensionAssetsPath, $wgLanguageCode, $wgRequest, $wgContLang; |
| 883 | + global $wgExtensionAssetsPath, $wgLanguageCode, $wgContLang; |
904 | 884 | wfProfileIn( __METHOD__ ); |
905 | 885 | if ( self::$isBetaGroupMember ) { |
906 | 886 | list( $loginHtml, $logoutHtml ) = $this->getLoginLinks(); |
— | — | @@ -908,7 +888,6 @@ |
909 | 889 | } |
910 | 890 | $footerTemplate = new FooterTemplate(); |
911 | 891 | $options = array( |
912 | | - 'messages' => self::$messages, |
913 | 892 | 'leaveFeedbackURL' => SpecialPage::getTitleFor( 'MobileFeedback' ) |
914 | 893 | ->getLocalURL( array( 'returnto' => self::$title->getPrefixedText() ) ), |
915 | 894 | 'viewNormalSiteURL' => self::$viewNormalSiteURL, |
— | — | @@ -939,11 +918,10 @@ |
940 | 919 | 'searchField' => self::$searchField, |
941 | 920 | 'mainPageUrl' => Title::newMainPage()->getLocalUrl(), |
942 | 921 | 'randomPageUrl' => self::$randomPageUrl, |
943 | | - 'messages' => self::$messages, |
944 | 922 | 'hideSearchBox' => self::$hideSearchBox, |
945 | 923 | 'hideLogo' => self::$hideLogo, |
946 | | - 'buildLanguageSelection' => self::buildLanguageSelection(), |
947 | | - 'device' => self::$device, |
| 924 | + 'buildLanguageSelection' => $this->buildLanguageSelection(), |
| 925 | + 'device' => $this->device, |
948 | 926 | 'wgExtensionAssetsPath' => $wgExtensionAssetsPath, |
949 | 927 | 'wgMobileFrontendLogo' => $wgMobileFrontendLogo, |
950 | 928 | ); |
— | — | @@ -960,25 +938,29 @@ |
961 | 939 | } else { |
962 | 940 | $wgOut->addModuleStyles( 'ext.mobileFrontend' ); |
963 | 941 | } |
| 942 | + $wgOut->addModuleStyles( "ext.mobileFrontend.{$this->device['css_file_name']}" ); |
| 943 | + $isFilePage = self::$title->getNamespace() == NS_FILE; |
| 944 | + if ( $isFilePage ) { |
| 945 | + $wgOut->addModuleStyles( 'ext.mobileFrontend.filePage' ); |
| 946 | + } |
964 | 947 | $cssLinks = $wgOut->buildCssLinks(); |
965 | 948 | $applicationTemplate = new ApplicationTemplate(); |
966 | 949 | $options = array( |
967 | 950 | 'dir' => $wgContLang->getDir(), |
968 | 951 | 'code' => $wgContLang->getCode(), |
| 952 | + 'title' => self::$title, |
| 953 | + 'pageTitle' => $wgOut->getPageTitle(), |
969 | 954 | 'placeholder' => wfMsg( 'mobile-frontend-placeholder' ), |
970 | 955 | 'dismissNotification' => wfMsg( 'mobile-frontend-dismiss-notification' ), |
971 | 956 | 'wgAppleTouchIcon' => $wgAppleTouchIcon, |
972 | 957 | 'isBetaGroupMember' => self::$isBetaGroupMember, |
973 | 958 | 'minifyJS' => self::$minifyJS, |
974 | | - 'device' => self::$device, |
| 959 | + 'device' => $this->device, |
975 | 960 | 'cssLinks' => $cssLinks, |
976 | 961 | 'wgExtensionAssetsPath' => $wgExtensionAssetsPath, |
977 | 962 | 'wgScriptPath' => $wgScriptPath, |
978 | | - 'isFilePage' => self::$isFilePage, |
| 963 | + 'isFilePage' => $isFilePage, |
979 | 964 | 'zeroRatedBanner' => self::$zeroRatedBanner, |
980 | | - 'showText' => wfMsg( 'mobile-frontend-show-button' ), |
981 | | - 'hideText' => wfMsg( 'mobile-frontend-hide-button' ), |
982 | | - 'configure-empty-homepage' => wfMsg( 'mobile-frontend-empty-homepage' ), |
983 | 965 | 'useFormatCookieName' => 'stopMobileRedirect', |
984 | 966 | 'useFormatCookieDuration' => $this->getUseFormatCookieDuration(), |
985 | 967 | 'useFormatCookiePath' => $wgCookiePath, |
— | — | @@ -989,12 +971,12 @@ |
990 | 972 | return $applicationTemplate; |
991 | 973 | } |
992 | 974 | |
993 | | - public static function buildLanguageSelection() { |
| 975 | + public function buildLanguageSelection() { |
994 | 976 | global $wgLanguageCode; |
995 | 977 | wfProfileIn( __METHOD__ ); |
996 | 978 | $output = Html::openElement( 'select', |
997 | 979 | array( 'id' => 'languageselection' ) ); |
998 | | - foreach ( self::$languageUrls as $languageUrl ) { |
| 980 | + foreach ( $this->getLanguageUrls() as $languageUrl ) { |
999 | 981 | if ( $languageUrl['lang'] == $wgLanguageCode ) { |
1000 | 982 | $output .= Html::element( 'option', |
1001 | 983 | array( 'value' => $languageUrl['href'], 'selected' => 'selected' ), |
— | — | @@ -1005,7 +987,7 @@ |
1006 | 988 | $languageUrl['language'] ); |
1007 | 989 | } |
1008 | 990 | } |
1009 | | - $output .= Html::closeElement( 'select', array() ); |
| 991 | + $output .= Html::closeElement( 'select' ); |
1010 | 992 | wfProfileOut( __METHOD__ ); |
1011 | 993 | return $output; |
1012 | 994 | } |
— | — | @@ -1073,6 +1055,7 @@ |
1074 | 1056 | */ |
1075 | 1057 | public function getMobileUrl( $url, $forceHttps = false ) { |
1076 | 1058 | if ( $this->shouldDisplayMobileView() ) { |
| 1059 | + $subdomainTokenReplacement = null; |
1077 | 1060 | if ( wfRunHooks( 'GetMobileUrl', array( &$subdomainTokenReplacement ) ) ) { |
1078 | 1061 | if ( !empty( $subdomainTokenReplacement ) ) { |
1079 | 1062 | global $wgMobileUrlTemplate; |
— | — | @@ -1551,6 +1534,26 @@ |
1552 | 1535 | } |
1553 | 1536 | } |
1554 | 1537 | |
| 1538 | + /** |
| 1539 | + * ResourceLoaderRegisterModules hook handler |
| 1540 | + * @see https://www.mediawiki.org/wiki/Manual:Hooks/ResourceLoaderRegisterModules |
| 1541 | + * @param array $modules |
| 1542 | + * @return bool |
| 1543 | + */ |
| 1544 | + public function resourceLoaderRegisterModules( ResourceLoader &$resourceLoader ) { |
| 1545 | + $detector = new DeviceDetection(); |
| 1546 | + foreach ( $detector->getCssFiles() as $file ) { |
| 1547 | + $resourceLoader->register("ext.mobileFrontend.$file", |
| 1548 | + array( |
| 1549 | + 'styles' => array( "stylesheets/{$file}.css" ), |
| 1550 | + 'localBasePath' => dirname( __FILE__ ), |
| 1551 | + 'remoteExtPath' => 'MobileFrontend', |
| 1552 | + ) |
| 1553 | + ); |
| 1554 | + } |
| 1555 | + return true; |
| 1556 | + } |
| 1557 | + |
1555 | 1558 | public function getVersion() { |
1556 | 1559 | return __CLASS__ . ': $Id$'; |
1557 | 1560 | } |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/javascripts/toggle.js |
— | — | @@ -57,7 +57,7 @@ |
58 | 58 | } |
59 | 59 | } |
60 | 60 | checkHash(); |
61 | | - for ( a = u( '.content_block a' ) || [], i = 0; i < a.length; i++ ) { |
| 61 | + for ( a = document.getElementsByTagName( 'a' ), i = 0; i < a.length; i++ ) { |
62 | 62 | u( a[i] ).bind( 'click', checkHash ); |
63 | 63 | } |
64 | 64 | } |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/javascripts/beta_opensearch.js |
— | — | @@ -7,6 +7,7 @@ |
8 | 8 | sb = document.getElementById( 'searchbox' ), |
9 | 9 | content = document.getElementById( 'content' ), |
10 | 10 | footer = document.getElementById( 'footer' ), |
| 11 | + blankImg = MobileFrontend.setting('scriptPath') + '/extensions/MobileFrontend/stylesheets/images/blank.gif', |
11 | 12 | clearSearch = document.getElementById( 'clearsearch' ), |
12 | 13 | focused = false, |
13 | 14 | u = MobileFrontend.utils; |
— | — | @@ -14,7 +15,7 @@ |
15 | 16 | apiUrl = MobileFrontend.setting( 'scriptPath' ) + apiUrl; |
16 | 17 | |
17 | 18 | function onfocus() { |
18 | | - var rrd, rrdD; |
| 19 | + var rrd; |
19 | 20 | sb = document.getElementById( 'searchbox' ); |
20 | 21 | header = document.getElementById( 'header' ); |
21 | 22 | content = document.getElementById( 'content' ); |
— | — | @@ -25,13 +26,11 @@ |
26 | 27 | |
27 | 28 | rrd = document.getElementById( 'remove-results' ); |
28 | 29 | if ( !rrd ) { |
29 | | - rrd = document.createElement( 'a' ); |
30 | | - rrd.setAttribute( 'href', '#' ); |
| 30 | + rrd = document.createElement( 'img' ); |
31 | 31 | rrd.setAttribute( 'id', 'remove-results' ); |
32 | | - u( rrd ).bind( 'click', removeResults ); |
33 | | - rrdD = document.createElement( 'div' ); |
34 | | - rrdD.setAttribute( 'id', 'left-arrow' ); |
35 | | - rrd.appendChild( rrdD ); |
| 32 | + u( rrd ).bind( 'click', removeResults ); |
| 33 | + rrd.setAttribute( 'src', blankImg ); |
| 34 | + rrd.setAttribute( 'alt', MobileFrontend.message( 'remove-results' ) ); |
36 | 35 | header.insertBefore( rrd, header.firstChild ); |
37 | 36 | } |
38 | 37 | focused = true; |
— | — | @@ -138,9 +137,6 @@ |
139 | 138 | term = htmlEntities( document.getElementById( 'search' ).value ), |
140 | 139 | section, escapedTerm, suggestionsResult, link, label; |
141 | 140 | |
142 | | - if ( search ) { |
143 | | - search.focus(); |
144 | | - } |
145 | 141 | if ( !sections || sections.length < 1 ) { |
146 | 142 | results.innerHTML = '<ul class="suggestions-results" title="No Results"><li class="suggestions-result">No Results</li></div>'; |
147 | 143 | } else { |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/javascripts/application.js |
— | — | @@ -8,10 +8,11 @@ |
9 | 9 | } |
10 | 10 | |
11 | 11 | function init() { |
12 | | - var languageSelection, contentEl = document.getElementById( 'content' ); |
| 12 | + var languageSelection, contentEl = document.getElementById( 'content' ), |
| 13 | + mainPage = document.getElementById( 'mainpage' ); |
13 | 14 | utilities( document.body ).addClass( 'jsEnabled' ); |
14 | 15 | |
15 | | - if( contentEl && contentEl.childNodes.length === 0 ) { |
| 16 | + if( mainPage && mainPage.childNodes.length === 0 && message( 'empty-homepage' ) ) { |
16 | 17 | contentEl.innerHTML = message( 'empty-homepage' ); |
17 | 18 | } |
18 | 19 | |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/MobileFrontend.php |
— | — | @@ -104,7 +104,7 @@ |
105 | 105 | * |
106 | 106 | * If this value is not set, it will default to $wgCookieExpiration |
107 | 107 | */ |
108 | | -$wgMobileFrontendFormatCookieExpiry; |
| 108 | +$wgMobileFrontendFormatCookieExpiry = null; |
109 | 109 | |
110 | 110 | /** |
111 | 111 | * URL for script used to disable mobile site |
— | — | @@ -124,7 +124,7 @@ |
125 | 125 | * |
126 | 126 | * This is entirely optional. |
127 | 127 | */ |
128 | | -$wgMobileResourceVersion; |
| 128 | +$wgMobileResourceVersion = ''; |
129 | 129 | |
130 | 130 | $wgExtMobileFrontend = null; |
131 | 131 | |
— | — | @@ -162,6 +162,7 @@ |
163 | 163 | $wgHooks['TestCanonicalRedirect'][] = array( &$wgExtMobileFrontend, 'testCanonicalRedirect' ); |
164 | 164 | $wgHooks['ResourceLoaderTestModules'][] = array( &$wgExtMobileFrontend, 'addTestModules' ); |
165 | 165 | $wgHooks['GetCacheVaryCookies'][] = array( &$wgExtMobileFrontend, 'getCacheVaryCookies' ); |
| 166 | + $wgHooks['ResourceLoaderRegisterModules'][] = array( &$wgExtMobileFrontend, 'resourceLoaderRegisterModules' ); |
166 | 167 | } |
167 | 168 | |
168 | 169 | /** |
— | — | @@ -214,3 +215,8 @@ |
215 | 216 | 'localBasePath' => dirname( __FILE__ ), |
216 | 217 | 'remoteExtPath' => 'MobileFrontend', |
217 | 218 | ); |
| 219 | +$wgResourceModules['ext.mobileFrontend.filePage'] = array( |
| 220 | + 'styles' => array( 'stylesheets/filepage.css' ), |
| 221 | + 'localBasePath' => dirname( __FILE__ ), |
| 222 | + 'remoteExtPath' => 'MobileFrontend', |
| 223 | +); |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/templates/FooterTemplate.php |
— | — | @@ -11,7 +11,7 @@ |
12 | 12 | $copyright = $skin->getCopyright(); |
13 | 13 | |
14 | 14 | $regularSite = wfMsg( 'mobile-frontend-regular-site' ); |
15 | | - $copyright = $copyright; |
| 15 | + |
16 | 16 | $termsUsage = wfMsg( 'mobile-frontend-terms-use' ); |
17 | 17 | $copyrightSymbol = $this->data['copyright-symbol']; |
18 | 18 | |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/templates/ApplicationTemplate.php |
— | — | @@ -28,29 +28,21 @@ |
29 | 29 | |
30 | 30 | $noticeHtml = ( isset( $this->data['noticeHtml'] ) ) ? $this->data['noticeHtml'] : ''; |
31 | 31 | |
32 | | - $cssFileName = ( isset( $this->data['device']['css_file_name'] ) ) ? $this->data['device']['css_file_name'] : 'default'; |
33 | | - |
34 | 32 | $startScriptTag = '<script type="text/javascript" src="'; |
35 | 33 | $endScriptTag = '"></script>'; |
36 | 34 | $javaScriptPath = $this->data['wgExtensionAssetsPath'] . '/MobileFrontend/javascripts/'; |
37 | 35 | |
38 | 36 | $jQuerySupport = $this->data['device']['supports_jquery']; |
39 | | - $jQueryScript = $jQuerySupport ? $startScriptTag . $javaScriptPath . 'jquery-1.7.1.min.js' . $endScriptTag : ''; |
| 37 | + $jQueryScript = $jQuerySupport ? $startScriptTag . $javaScriptPath . 'jquery-1.7.2.min.js' . $endScriptTag : ''; |
40 | 38 | $filePageScript = ( $this->data['isFilePage'] ) ? $startScriptTag . $javaScriptPath . 'filepage.js?version=' . $wgMobileResourceVersion . $endScriptTag : ''; |
41 | 39 | |
42 | | - $startLinkTag = "<link href='{$this->data['wgExtensionAssetsPath']}/MobileFrontend/stylesheets/"; |
43 | | - $endLinkTag = "' media='all' rel='Stylesheet' type='text/css' />"; |
44 | | - $filePageStyle = ( $this->data['isFilePage'] ) ? $startLinkTag . 'filepage.css' . $endLinkTag : ''; |
45 | | - $buttonHideText = Xml::escapeJsString( $this->data['hideText'] ); |
46 | | - $buttonShowText = Xml::escapeJsString( $this->data['showText'] ); |
47 | | - $configureHomepage = $this->data['configure-empty-homepage']; |
48 | 40 | $robots = isset( $this->data['robots'] ) ? "\n {$this->data['robots']}" : ''; |
49 | 41 | |
50 | 42 | $jsconfig = array( |
51 | 43 | 'messages' => array( |
52 | | - 'expand-section' => $buttonShowText, |
53 | | - 'collapse-section' => $buttonHideText, |
54 | | - 'empty-homepage' => $configureHomepage, |
| 44 | + 'expand-section' => wfMsg( 'mobile-frontend-show-button' ), |
| 45 | + 'collapse-section' => wfMsg( 'mobile-frontend-hide-button' ), |
| 46 | + 'remove-results' => wfMsg( 'mobile-frontend-wml-back' ), |
55 | 47 | ), |
56 | 48 | 'settings' => array( |
57 | 49 | 'scriptPath' => ( $this->data['wgScriptPath'] ), |
— | — | @@ -60,6 +52,14 @@ |
61 | 53 | 'useFormatCookiePath' => ( $this->data['useFormatCookiePath'] ), |
62 | 54 | ), |
63 | 55 | ); |
| 56 | + if ( $this->data['title']->isMainPage() ) { |
| 57 | + $jsconfig['messages']['empty-homepage'] = wfMsg( 'mobile-frontend-empty-homepage' ); |
| 58 | + $firstHeading = Html::element( 'h1', array( 'id' => 'firstHeading' ), |
| 59 | + $this->data['pageTitle'] |
| 60 | + ); |
| 61 | + } else { |
| 62 | + $firstHeading = ''; |
| 63 | + } |
64 | 64 | $configuration = FormatJSON::encode( $jsconfig ); |
65 | 65 | |
66 | 66 | if( $this->data['isBetaGroupMember'] && $jQuerySupport ) { |
— | — | @@ -76,10 +76,7 @@ |
77 | 77 | <title>{$this->data['htmlTitle']}</title> |
78 | 78 | <meta http-equiv="content-type" content="text/html; charset=utf-8" />{$robots} |
79 | 79 | {$this->data['cssLinks']} |
80 | | - <link href='{$this->data['wgExtensionAssetsPath']}/MobileFrontend/stylesheets/{$cssFileName}.css?version={$wgMobileResourceVersion}' media='all' rel='Stylesheet' type='text/css' /> |
81 | | - {$filePageStyle} |
82 | 80 | <meta name="viewport" content="initial-scale=1.0, user-scalable=yes"> |
83 | | - <meta name="ROBOTS" content="NOINDEX, NOFOLLOW"> |
84 | 81 | {$appleTouchIconTag} |
85 | 82 | {$jQueryScript} |
86 | 83 | <script type="text/javascript"> |
— | — | @@ -91,8 +88,11 @@ |
92 | 89 | {$this->data['searchWebkitHtml']} |
93 | 90 | <div class='show' id='content_wrapper'> |
94 | 91 | {$noticeHtml} |
| 92 | + <div id="content"> |
| 93 | + {$firstHeading} |
95 | 94 | {$this->data['contentHtml']} |
96 | 95 | </div> |
| 96 | + </div> |
97 | 97 | {$this->data['footerHtml']} |
98 | 98 | <!--[if gt IE 9]><!--> |
99 | 99 | {$startScriptTag}{$javaScriptPath}application.{$resourceSuffix}js?version={$wgMobileResourceVersion}{$endScriptTag} |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/templates/SearchTemplate.php |
— | — | @@ -15,6 +15,7 @@ |
16 | 16 | $randomButton = wfMessage( 'mobile-frontend-random-button' )->escaped(); |
17 | 17 | $clearText = Sanitizer::encodeAttribute( wfMsg( 'mobile-frontend-clear-search' ) ); |
18 | 18 | $placeholder = Sanitizer::encodeAttribute( wfMsg( 'mobile-frontend-placeholder' ) ); |
| 19 | + $goButton = wfMessage( 'mobile-frontend-search-submit' ); |
19 | 20 | |
20 | 21 | $scriptUrl = wfScript(); |
21 | 22 | $searchBoxDisplayNone = ( $this->data['hideSearchBox'] ) ? ' style="display: none;" ' : ''; |
— | — | @@ -35,9 +36,14 @@ |
36 | 37 | <input type="hidden" value="Special:Search" name="title" /> |
37 | 38 | <div id="sq" class="divclearable"> |
38 | 39 | <input type="search" name="search" id="search" size="22" value="{$searchField}" autocomplete="off" maxlength="1024" class="search" placeholder="{$placeholder}" /> |
39 | | - <div class="clearlink" id="clearsearch" title="{$clearText}"></div> |
| 40 | + <img src="{$this->data['wgExtensionAssetsPath']}/MobileFrontend/stylesheets/images/blank.gif" |
| 41 | + alt="{$clearText}" |
| 42 | + class="clearlink" id="clearsearch" title="{$clearText}"> |
40 | 43 | </div> |
41 | | - <button id='goButton' class='goButton' type='submit'></button> |
| 44 | + <button id='goButton' class='goButton' type='submit'> |
| 45 | + <img src="{$this->data['wgExtensionAssetsPath']}/MobileFrontend/stylesheets/images/blank.gif" |
| 46 | + alt="{$goButton}" title="{$goButton}"> |
| 47 | + </button> |
42 | 48 | </form> |
43 | 49 | </div> |
44 | 50 | <div class='nav' id='nav' {$logoDisplayNone}> |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/tests/DeviceDetectionTest.php |
— | — | @@ -10,7 +10,7 @@ |
11 | 11 | */ |
12 | 12 | public function testFormatName( $format, $userAgent ) { |
13 | 13 | $detector = new DeviceDetection(); |
14 | | - $this->assertEquals( $format, $detector->formatName( $userAgent ) ); |
| 14 | + $this->assertEquals( $format, $detector->detectFormatName( $userAgent ) ); |
15 | 15 | } |
16 | 16 | |
17 | 17 | public function provideTestFormatName() { |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/tests/MobileFrontendTest.php |
— | — | @@ -37,17 +37,10 @@ |
38 | 38 | $this->assertEquals( '.wikipedia.org', $getBaseDomain->invokeArgs( $wgExtMobileFrontend, array() ) ); |
39 | 39 | } |
40 | 40 | |
41 | | - public function testGetRelativeURL() { |
42 | | - global $wgExtMobileFrontend; |
43 | | - $getRelativeURL = self::getMethod( 'getRelativeURL' ); |
44 | | - $url = 'http://en.wikipedia.org/wiki/Positional_astronomy'; |
45 | | - $this->assertEquals( '/wiki/Positional_astronomy', $getRelativeURL->invokeArgs( $wgExtMobileFrontend, array( $url ) ) ); |
46 | | - } |
47 | | - |
48 | 41 | public function testDisableCaching() { |
49 | 42 | global $wgRequest, $wgExtMobileFrontend, $wgSquidServers; |
50 | 43 | $disableCaching = self::getMethod( 'disableCaching' ); |
51 | | - |
| 44 | + |
52 | 45 | $wgSquidServers = array( '10.64.0.131' ); |
53 | 46 | $_SERVER['REMOTE_ADDR'] = '10.64.0.131'; |
54 | 47 | $disableCaching->invokeArgs( $wgExtMobileFrontend, array() ); |
— | — | @@ -63,21 +56,21 @@ |
64 | 57 | $sendXDeviceVaryHeader->invokeArgs( $wgExtMobileFrontend, array() ); |
65 | 58 | $this->assertEquals( $_SERVER['HTTP_X_DEVICE'], $wgRequest->response()->getheader( 'X-Device' ) ); |
66 | 59 | } |
67 | | - |
| 60 | + |
68 | 61 | public function testGetMobileUrl() { |
69 | 62 | global $wgMobileUrlTemplate, $wgExtMobileFrontend; |
70 | 63 | $wgMobileUrlTemplate = "%h0.m.%h1.%h2"; |
71 | 64 | $this->assertEquals( 'http://en.m.wikipedia.org/wiki/Article', $wgExtMobileFrontend->getMobileUrl( 'http://en.wikipedia.org/wiki/Article' ) ); |
72 | 65 | } |
73 | | - |
| 66 | + |
74 | 67 | public function testParseMobileUrlTemplate() { |
75 | 68 | global $wgMobileUrlTemplate, $wgExtMobileFrontend; |
76 | 69 | $wgMobileUrlTemplate = "%h0.m.%h1.%h2/path/morepath"; |
77 | 70 | $this->assertEquals( '%h0.m.%h1.%h2', $wgExtMobileFrontend->parseMobileUrlTemplate( 'host' ) ); |
78 | 71 | $this->assertEquals( '/path/morepath', $wgExtMobileFrontend->parseMobileUrlTemplate( 'path' ) ); |
79 | | - $this->assertEquals( array( 'host' => '%h0.m.%h1.%h2', 'path' => '/path/morepath' ), $wgExtMobileFrontend->parseMobileUrlTemplate()); |
| 72 | + $this->assertEquals( array( 'host' => '%h0.m.%h1.%h2', 'path' => '/path/morepath' ), $wgExtMobileFrontend->parseMobileUrlTemplate() ); |
80 | 73 | } |
81 | | - |
| 74 | + |
82 | 75 | public function testUpdateMobileUrlHost() { |
83 | 76 | global $wgMobileUrlTemplate, $wgExtMobileFrontend; |
84 | 77 | $updateMobileUrlHost = self::getMethod( "updateMobileUrlHost" ); |
— | — | @@ -86,8 +79,26 @@ |
87 | 80 | $updateMobileUrlHost->invokeArgs( $wgExtMobileFrontend, array( &$parsedUrl ) ); |
88 | 81 | $this->assertEquals( "http://en.m.wikipedia.org/wiki/Gustavus_Airport", wfAssembleUrl( $parsedUrl ) ); |
89 | 82 | } |
90 | | - |
| 83 | + |
91 | 84 | /** |
| 85 | + * @dataProvider updateDesktopUrlQueryProvider |
| 86 | + */ |
| 87 | + public function testUpdateDesktopUrlQuery( $mobile, $desktop ) { |
| 88 | + global $wgExtMobileFrontend; |
| 89 | + $updateDesktopUrlQuery = self::getMethod( "updateDesktopUrlQuery" ); |
| 90 | + $parsedUrl = wfParseUrl( $mobile ); |
| 91 | + $updateDesktopUrlQuery->invokeArgs( $wgExtMobileFrontend, array( &$parsedUrl ) ); |
| 92 | + $url = wfAssembleUrl( $parsedUrl ); |
| 93 | + $this->assertEquals( $desktop, $url ); |
| 94 | + } |
| 95 | + |
| 96 | + public function updateDesktopUrlQueryProvider() { |
| 97 | + return array( |
| 98 | + array( 'http://en.m.wikipedia.org/wiki/Gustavus_Airport?useformat=mobile&mobileaction=toggle_desktop_view', 'http://en.m.wikipedia.org/wiki/Gustavus_Airport?mobileaction=toggle_desktop_view' ), |
| 99 | + ); |
| 100 | + } |
| 101 | + |
| 102 | + /** |
92 | 103 | * @dataProvider updateDesktopUrlHostProvider |
93 | 104 | */ |
94 | 105 | public function testUpdateDesktopUrlHost( $mobile, $desktop ) { |
— | — | @@ -105,44 +116,44 @@ |
106 | 117 | array( 'http://bm.m.wikipedia.org/wiki/Nyɛ_fɔlɔ', 'http://bm.wikipedia.org/wiki/Nyɛ_fɔlɔ' ), |
107 | 118 | ); |
108 | 119 | } |
109 | | - |
| 120 | + |
110 | 121 | public function testUpdateMobileUrlPath() { |
111 | 122 | global $wgMobileUrlTemplate, $wgExtMobileFrontend, $wgScriptPath; |
112 | 123 | $wgScriptPath = '/wiki'; |
113 | 124 | $updateMobileUrlHost = self::getMethod( "updateMobileUrlPath" ); |
114 | 125 | $wgMobileUrlTemplate = "/mobile/%p"; |
115 | | - |
| 126 | + |
116 | 127 | // check for constructing a templated URL |
117 | 128 | $parsedUrl = wfParseUrl( "http://en.wikipedia.org/wiki/Gustavus_Airport" ); |
118 | 129 | $updateMobileUrlHost->invokeArgs( $wgExtMobileFrontend, array( &$parsedUrl ) ); |
119 | 130 | $this->assertEquals( "http://en.wikipedia.org/wiki/mobile/Gustavus_Airport", wfAssembleUrl( $parsedUrl ) ); |
120 | | - |
| 131 | + |
121 | 132 | // check for maintaining an already templated URL |
122 | 133 | $parsedUrl = wfParseUrl( "http://en.wikipedia.org/wiki/mobile/Gustavus_Airport" ); |
123 | 134 | $updateMobileUrlHost->invokeArgs( $wgExtMobileFrontend, array( &$parsedUrl ) ); |
124 | 135 | $this->assertEquals( "http://en.wikipedia.org/wiki/mobile/Gustavus_Airport", wfAssembleUrl( $parsedUrl ) ); |
125 | 136 | } |
126 | | - |
| 137 | + |
127 | 138 | /** |
128 | 139 | * @dataProvider updateMobileUrlQueryStringProvider |
129 | 140 | */ |
130 | 141 | public function testUpdateMobileUrlQueryString( $assert, $useFormat ) { |
131 | | - global $wgRequest, $wgExtMobileFrontend; |
132 | | - |
| 142 | + global $wgExtMobileFrontend; |
| 143 | + |
133 | 144 | $testMethod = ( $assert ) ? 'assertTrue' : 'assertFalse'; |
134 | 145 | $url = 'http://en.wikipedia.org/wiki/Article/?something=bananas'; |
135 | 146 | if ( !empty( $useFormat ) ) $url .= "&useformat=" . $useFormat; |
136 | 147 | $wgExtMobileFrontend->setUseFormat( $useFormat ); |
137 | | - |
| 148 | + |
138 | 149 | $parsedUrl = wfParseUrl( $url ); |
139 | | - |
| 150 | + |
140 | 151 | $updateMobileUrlQueryString = self::getMethod( 'updateMobileUrlQueryString' ); |
141 | | - $updateMobileUrlQueryString->invokeArgs( $wgExtMobileFrontend, array( &$parsedUrl) ); |
142 | | - |
| 152 | + $updateMobileUrlQueryString->invokeArgs( $wgExtMobileFrontend, array( &$parsedUrl ) ); |
| 153 | + |
143 | 154 | $targetUrl = wfAssembleUrl( $parsedUrl ); |
144 | 155 | $this->$testMethod( $url == $targetUrl, $targetUrl ); |
145 | 156 | } |
146 | | - |
| 157 | + |
147 | 158 | public function updateMobileUrlQueryStringProvider() { |
148 | 159 | return array( |
149 | 160 | array( true, 'mobile' ), |
— | — | @@ -150,43 +161,43 @@ |
151 | 162 | array( true, '' ), |
152 | 163 | ); |
153 | 164 | } |
154 | | - |
| 165 | + |
155 | 166 | /** |
156 | 167 | * @dataProvider isMobileDeviceProvider |
157 | 168 | */ |
158 | 169 | public function testIsMobileDevice( $isDevice, $msg, $xDevice = null ) { |
159 | | - global $wgReqeust, $wgExtMobileFrontend; |
| 170 | + global $wgExtMobileFrontend; |
160 | 171 | $isMobileDevice = self::getMethod( 'isMobileDevice' ); |
161 | | - |
| 172 | + |
162 | 173 | $testMethod = ( $isDevice ) ? 'assertTrue' : 'assertFalse'; |
163 | | - |
164 | | - if ( !is_null( $xDevice )) { |
| 174 | + |
| 175 | + if ( !is_null( $xDevice ) ) { |
165 | 176 | $_SERVER[ 'HTTP_X_DEVICE' ] = $xDevice; |
166 | 177 | } |
167 | | - |
| 178 | + |
168 | 179 | $this->$testMethod( $isMobileDevice->invokeArgs( $wgExtMobileFrontend, array() ), $msg ); |
169 | 180 | } |
170 | | - |
| 181 | + |
171 | 182 | public function isMobileDeviceProvider() { |
172 | 183 | return array( |
173 | 184 | array( false, 'Nothing set' ), |
174 | 185 | array( true, 'HTTP_X_DEVICE = webkit', 'webkit' ), |
175 | 186 | ); |
176 | 187 | } |
177 | | - |
| 188 | + |
178 | 189 | /** |
179 | 190 | * @dataProvider isFauxMobileDeviceProvider |
180 | 191 | */ |
181 | | - public function testIsFauxMobileDevice( $isFauxDevice, $msg, $useformat=null ) { |
182 | | - global $wgRequest, $wgExtMobileFrontend; |
| 192 | + public function testIsFauxMobileDevice( $isFauxDevice, $msg, $useformat = null ) { |
| 193 | + global $wgExtMobileFrontend; |
183 | 194 | $isFauxMobileDevice = self::getMethod( 'isFauxMobileDevice' ); |
184 | | - |
| 195 | + |
185 | 196 | $testMethod = ( $isFauxDevice ) ? 'assertTrue' : 'assertFalse'; |
186 | | - |
| 197 | + |
187 | 198 | $wgExtMobileFrontend->setUseFormat( $useformat ); |
188 | 199 | $this->$testMethod( $isFauxMobileDevice->invokeArgs( $wgExtMobileFrontend, array() ), $msg ); |
189 | 200 | } |
190 | | - |
| 201 | + |
191 | 202 | public function isFauxMobileDeviceProvider() { |
192 | 203 | return array( |
193 | 204 | array( false, 'Nothing set' ), |
— | — | @@ -195,17 +206,17 @@ |
196 | 207 | array( false, 'useformat=yourmom', 'yourmom' ), |
197 | 208 | ); |
198 | 209 | } |
199 | | - |
| 210 | + |
200 | 211 | /** |
201 | 212 | * @dataProvider shouldDisplayMobileViewProvider |
202 | 213 | */ |
203 | | - public function testShouldDisplayMobileView( $shouldDisplay, $xDevice=null, $requestVal=array(), $msg=null ) { |
| 214 | + public function testShouldDisplayMobileView( $shouldDisplay, $xDevice = null, $requestVal = array(), $msg = null ) { |
204 | 215 | global $wgRequest, $wgExtMobileFrontend; |
205 | 216 | $shouldDisplayMobileView = self::getMethod( 'shouldDisplayMobileView' ); |
206 | | - |
| 217 | + |
207 | 218 | $testMethod = ( $shouldDisplay ) ? 'assertTrue' : 'assertFalse'; |
208 | | - |
209 | | - if ( count( $requestVal )) { |
| 219 | + |
| 220 | + if ( count( $requestVal ) ) { |
210 | 221 | foreach ( $requestVal as $key => $val ) { |
211 | 222 | if ( $key == 'useformat' ) { |
212 | 223 | $wgExtMobileFrontend->setUseFormat( $val ); |
— | — | @@ -214,15 +225,15 @@ |
215 | 226 | } |
216 | 227 | } |
217 | 228 | } |
218 | | - |
219 | | - if ( !is_null( $xDevice )) { |
| 229 | + |
| 230 | + if ( !is_null( $xDevice ) ) { |
220 | 231 | $_SERVER[ 'HTTP_X_DEVICE' ] = $xDevice; |
221 | 232 | } |
222 | | - |
| 233 | + |
223 | 234 | $this->$testMethod( $shouldDisplayMobileView->invokeArgs( $wgExtMobileFrontend, array() ), $msg ); |
224 | | - |
| 235 | + |
225 | 236 | // clean up |
226 | | - if ( count( $requestVal )) { |
| 237 | + if ( count( $requestVal ) ) { |
227 | 238 | foreach ( $requestVal as $key => $val ) { |
228 | 239 | if ( $key == 'useformat' ) { |
229 | 240 | continue; |
— | — | @@ -232,7 +243,7 @@ |
233 | 244 | } |
234 | 245 | } |
235 | 246 | } |
236 | | - |
| 247 | + |
237 | 248 | public function shouldDisplayMobileViewProvider() { |
238 | 249 | return array( |
239 | 250 | array( false, null, array() ), |
— | — | @@ -248,11 +259,11 @@ |
249 | 260 | array( false, null, array( 'useformat' => 'mobile', 'action' => 'history' ) ), |
250 | 261 | ); |
251 | 262 | } |
252 | | - |
| 263 | + |
253 | 264 | /** |
254 | 265 | * @dataProvider getXDeviceProvider |
255 | 266 | */ |
256 | | - public function testGetXDevice( $xDevice=null ) { |
| 267 | + public function testGetXDevice( $xDevice = null ) { |
257 | 268 | global $wgExtMobileFrontend; |
258 | 269 | if ( is_null( $xDevice ) ) { |
259 | 270 | $assert = ''; |
— | — | @@ -265,21 +276,21 @@ |
266 | 277 | } |
267 | 278 | $this->assertEquals( $assert, $wgExtMobileFrontend->getXDevice() ); |
268 | 279 | } |
269 | | - |
| 280 | + |
270 | 281 | public function getXDeviceProvider() { |
271 | 282 | return array( |
272 | 283 | array( 'webkit' ), |
273 | 284 | array( null ), |
274 | 285 | ); |
275 | 286 | } |
276 | | - |
| 287 | + |
277 | 288 | /** |
278 | 289 | * @dataProvider getMobileActionProvider |
279 | 290 | */ |
280 | | - public function testGetMobileAction( $mobileaction=null ) { |
| 291 | + public function testGetMobileAction( $mobileaction = null ) { |
281 | 292 | global $wgRequest, $wgExtMobileFrontend; |
282 | 293 | |
283 | | - if ( is_null( $mobileaction )) { |
| 294 | + if ( is_null( $mobileaction ) ) { |
284 | 295 | $assert = ''; |
285 | 296 | $wgRequest->unsetVal( 'mobileaction' ); |
286 | 297 | } else { |
— | — | @@ -289,38 +300,38 @@ |
290 | 301 | |
291 | 302 | $this->assertEquals( $assert, $wgExtMobileFrontend->getMobileAction() ); |
292 | 303 | } |
293 | | - |
| 304 | + |
294 | 305 | public function getMobileActionProvider() { |
295 | 306 | return array( |
296 | 307 | array( null ), |
297 | 308 | array( 'view_normal_site' ), |
298 | 309 | ); |
299 | 310 | } |
300 | | - |
| 311 | + |
301 | 312 | /** |
302 | 313 | * @dataProvider getActionProvider |
303 | 314 | */ |
304 | | - public function testGetAction( $action=null ) { |
| 315 | + public function testGetAction( $action = null ) { |
305 | 316 | global $wgRequest, $wgExtMobileFrontend; |
306 | | - |
307 | | - if ( is_null( $action )) { |
| 317 | + |
| 318 | + if ( is_null( $action ) ) { |
308 | 319 | $assert = ''; |
309 | 320 | $wgRequest->unsetVal( 'action' ); |
310 | 321 | } else { |
311 | 322 | $wgRequest->setVal( 'action', $action ); |
312 | 323 | $assert = $action; |
313 | 324 | } |
314 | | - |
| 325 | + |
315 | 326 | $this->assertEquals( $assert, $wgExtMobileFrontend->getAction() ); |
316 | 327 | } |
317 | | - |
| 328 | + |
318 | 329 | public function getActionProvider() { |
319 | 330 | return array( |
320 | 331 | array( null ), |
321 | 332 | array( 'edit' ), |
322 | 333 | ); |
323 | 334 | } |
324 | | - |
| 335 | + |
325 | 336 | /** |
326 | 337 | * @dataProvider getUseFormatProvider |
327 | 338 | */ |
— | — | @@ -330,7 +341,7 @@ |
331 | 342 | $wgExtMobileFrontend->setUseFormat( $explicit ); |
332 | 343 | $this->assertEquals( $expected, $wgExtMobileFrontend->getUseFormat() ); |
333 | 344 | } |
334 | | - |
| 345 | + |
335 | 346 | public function getUseFormatProvider() { |
336 | 347 | return array( |
337 | 348 | array( 'mobile', null, 'mobile' ), |
— | — | @@ -339,17 +350,17 @@ |
340 | 351 | array( 'desktop', 'mobile', 'desktop' ), |
341 | 352 | ); |
342 | 353 | } |
343 | | - |
| 354 | + |
344 | 355 | public function testGetUseFormatCookieExpiry() { |
345 | 356 | global $wgExtMobileFrontend, $wgCookieExpiration, $wgMobileFrontendFormatCookieExpiry; |
346 | 357 | $getUseFormatCookieExpiry = self::getMethod( 'getUseFormatCookieExpiry' ); |
347 | | - |
| 358 | + |
348 | 359 | $origMFCookieExpiry = $wgMobileFrontendFormatCookieExpiry; |
349 | 360 | $startTime = time(); |
350 | 361 | $wgMobileFrontendFormatCookieExpiry = 60; |
351 | 362 | $mfCookieExpected = $startTime + 60; |
352 | 363 | $this->assertTrue( $mfCookieExpected == $getUseFormatCookieExpiry->invokeArgs( $wgExtMobileFrontend, array( $startTime ) ), 'Using MobileFrontend expiry.' ); |
353 | | - |
| 364 | + |
354 | 365 | $wgMobileFrontendFormatCookieExpiry = null; |
355 | 366 | $defaultMWCookieExpected = $startTime + $wgCookieExpiration; |
356 | 367 | $this->assertTrue( $defaultMWCookieExpected == $getUseFormatCookieExpiry->invokeArgs( $wgExtMobileFrontend, array( $startTime ) ), 'Using default MediaWiki cookie expiry.' ); |
— | — | @@ -357,21 +368,21 @@ |
358 | 369 | // reset global back to original value |
359 | 370 | $wgMobileFrontendFormatCookieExpiry = $origMFCookieExpiry; |
360 | 371 | } |
361 | | - |
| 372 | + |
362 | 373 | public function testSetPropertiesFromArray() { |
363 | 374 | global $wgExtMobileFrontend; |
364 | 375 | $props = array( |
365 | 376 | 'xDevice' => 'android', |
366 | | - 'blargh' => 'bananas', |
| 377 | + 'blargh' => 'bananas', |
367 | 378 | 'minifyJS' => false, |
368 | 379 | ); |
369 | 380 | $wgExtMobileFrontend->setPropertiesFromArray( $props ); |
370 | 381 | $this->assertEquals( $wgExtMobileFrontend::$minifyJS, false ); |
371 | 382 | $this->assertEquals( $wgExtMobileFrontend->getXDevice(), 'android' ); |
372 | 383 | // ensure 'balrgh' didnt get set since it was not a pre-defined property |
373 | | - $this->assertFalse( property_exists( $wgExtMobileFrontend, 'blargh' )); |
| 384 | + $this->assertFalse( property_exists( $wgExtMobileFrontend, 'blargh' ) ); |
374 | 385 | } |
375 | | - |
| 386 | + |
376 | 387 | /** |
377 | 388 | * @outputBuffering enabled |
378 | 389 | */ |
— | — | @@ -382,7 +393,7 @@ |
383 | 394 | setcookie( 'foobar', 'pants' ); |
384 | 395 | $this->asertEquals( $_COOKIE[ 'foobar' ], 'pants' ); |
385 | 396 | } |
386 | | - |
| 397 | + |
387 | 398 | /** |
388 | 399 | * NB this will not work as PHPUnit seems to not make it possible to set |
389 | 400 | * and retrieve cookies. Note above test, testCookie() - both assertions |
— | — | @@ -392,7 +403,7 @@ |
393 | 404 | * @outputBuffering enabled |
394 | 405 | */ |
395 | 406 | /*public function testCheckUseFormatCookie() { |
396 | | - |
| 407 | + |
397 | 408 | } |
398 | 409 | */ |
399 | 410 | } |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/specials/SpecialMobileFeedback.php |
— | — | @@ -9,7 +9,7 @@ |
10 | 10 | global $wgExtMobileFrontend; |
11 | 11 | |
12 | 12 | $this->setHeaders(); |
13 | | - $this->getOutput()->setPageTitle( $this->msg( 'mobile-frontend-leave-feedback-title' ) ); |
| 13 | + $this->getOutput()->setPageTitle( $this->msg( 'mobile-frontend-leave-feedback-page-title' ) ); |
14 | 14 | $wgExtMobileFrontend->setForceMobileView( true ); |
15 | 15 | $wgExtMobileFrontend->setContentTransformations( false ); |
16 | 16 | |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/MobileFrontend.i18n.php |
— | — | @@ -78,6 +78,7 @@ |
79 | 79 | ); |
80 | 80 | |
81 | 81 | /** Message documentation (Message documentation) |
| 82 | + * @author Amire80 |
82 | 83 | * @author EugeneZelenko |
83 | 84 | * @author Fryed-peach |
84 | 85 | * @author Raymond |
— | — | @@ -87,25 +88,43 @@ |
88 | 89 | * @author Yekrats |
89 | 90 | */ |
90 | 91 | $messages['qqq'] = array( |
| 92 | + 'mobile-frontend-search-submit' => 'Label for the button near the search box.', |
| 93 | + 'mobile-frontend-featured-article' => 'The title that will appear before the element with the mf-tfa selector.', |
| 94 | + 'mobile-frontend-home-button' => 'This is the label of one of the buttons that appear if you click the wiki logo near the search box. |
| 95 | + |
| 96 | +This buttons takes the user to the home page.', |
| 97 | + 'mobile-frontend-random-button' => 'This is the label of one of the buttons that appear if you click the wiki logo near the search box. |
| 98 | + |
| 99 | +This buttons takes the user to a random page.', |
| 100 | + 'mobile-frontend-back-to-top-of-section' => 'This is a link that appears at the end of a page section.', |
91 | 101 | 'mobile-frontend-show-button' => '{{Identical|Show}}', |
92 | 102 | 'mobile-frontend-hide-button' => '{{Identical|Hide}}', |
93 | 103 | 'mobile-frontend-empty-homepage' => 'Message to display when an empty homepage is encountered', |
94 | 104 | 'mobile-frontend-regular-site' => 'When on the mobile site, this text links to the normal page for desktop computers', |
95 | 105 | 'mobile-frontend-wml-continue' => '{{Identical|Continue}}', |
96 | 106 | 'mobile-frontend-wml-back' => '{{Identical|Back}}', |
| 107 | + 'mobile-frontend-view' => 'This is a link that appears at the bottom of a desktop view wiki page near {{msg-mw|privacy}} and {{msg-mw|disclaimers}}. Clicking it takes the user to a mobile view of the page.', |
| 108 | + 'mobile-frontend-view-desktop' => 'This is a link that appears at the bottom of the mobile page. Clicking it takes the user to the desktop page. It appears near the message {{msg-mw|Mobile-frontend-view-mobile}} and should be worded similarly.', |
| 109 | + 'mobile-frontend-view-mobile' => 'This appears at the bottom of the mobile page, meaning that the current view is mobile. It appears near the message {{msg-mw|Mobile-frontend-view-desktop}} and should be worded similarly.', |
| 110 | + 'mobile-frontend-opt-in-message' => 'This is as a heading in the special beta opt in page.', |
97 | 111 | 'mobile-frontend-opt-in-yes-button' => '{{Identical|Yes}}', |
98 | 112 | 'mobile-frontend-opt-in-no-button' => '{{Identical|No}}', |
| 113 | + 'mobile-frontend-opt-in-title' => 'This is used as the HTML title of the special page, which appears as the browser window title.', |
99 | 114 | 'mobile-frontend-opt-out-yes-button' => '{{Identical|Yes}}', |
100 | 115 | 'mobile-frontend-opt-out-no-button' => '{{Identical|No}}', |
| 116 | + 'mobile-frontend-enable-images-prefix' => 'This is a label that appears before {{msg-mw|Mobile-frontend-off}} and {{msg-mw|Mobile-frontend-on}}.', |
| 117 | + 'mobile-frontend-off' => 'Refers to images - means that they are not shown. Appears after {{msg-mw|Mobile-frontend-enable-images-prefix}}.', |
| 118 | + 'mobile-frontend-on' => 'Refers to images - means that they are shown. Appears after {{msg-mw|Mobile-frontend-enable-images-prefix}}.', |
| 119 | + 'mobile-frontend-news-items' => 'The title that will appear before the element with the mf-itn selector.', |
| 120 | + 'mobile-frontend-leave-feedback-title' => 'Special page title', |
101 | 121 | 'mobile-frontend-leave-feedback-notice' => 'Parameters: |
102 | 122 | * "$1" is a link to the page where the feedback will be posted.', |
103 | 123 | 'mobile-frontend-leave-feedback-subject' => '{{Identical|Subject}}', |
104 | 124 | 'mobile-frontend-leave-feedback-message' => '{{Identical|Message}}', |
105 | | - 'mobile-frontend-leave-feedback-title' => 'Special page title', |
106 | 125 | 'mobile-frontend-feedback-page' => '{{optional}}', |
107 | 126 | 'mobile-frontend-feedback-no-subject' => 'Used for section heading on the feedback page if user entered no subject', |
108 | 127 | 'mobile-frontend-feedback-no-message' => 'Error message on feedback form', |
109 | | - 'mobile-frontend-feedback-edit-summary' => 'Edit summary, $1 is feedback subject. Don\'t translate the special page name', |
| 128 | + 'mobile-frontend-feedback-edit-summary' => "Edit summary, $1 is feedback subject. Don't translate the special page name", |
110 | 129 | 'mobile-frontend-language' => '{{Identical|Language}}', |
111 | 130 | 'mobile-frontend-username' => 'Field label for entry of username in Wikimedia mobile user interface. |
112 | 131 | |
— | — | @@ -121,9 +140,9 @@ |
122 | 141 | 'mobile-frontend-about-link-text' => 'Custom version of "About {{Sitename}}" link text for mobile footer, intended to be as brief as possible to take up as little screen real estate as possible', |
123 | 142 | 'mobile-frontend-footer-more' => 'Label for more button in footer', |
124 | 143 | 'mobile-frontend-footer-less' => 'Label for less button in footer', |
125 | | - 'mobile-frontend-footer-contact' => 'Label for contact in footer', |
126 | 144 | 'mobile-frontend-footer-sitename' => 'Name of site', |
127 | 145 | 'mobile-frontend-footer-license' => 'License shown in footer', |
| 146 | + 'mobile-frontend-footer-contact' => 'Label for contact in footer', |
128 | 147 | 'mobile-frontend-unknown-option' => 'Error message shown by Special:MobileOptions', |
129 | 148 | ); |
130 | 149 | |
— | — | @@ -162,10 +181,6 @@ |
163 | 182 | 'mobile-frontend-show-button' => 'Wys', |
164 | 183 | 'mobile-frontend-hide-button' => 'Versteek', |
165 | 184 | 'mobile-frontend-regular-site' => 'Wys blad op die gewone {{SITENAME}}', |
166 | | - 'mobile-frontend-error-page-title' => "Ons het 'n probleem!", |
167 | | - 'mobile-frontend-error-page-text' => '{{SITENAME}} mobiel is onder ontwikkeling en daar word hard gewerk om alle probleme op te los. |
168 | | -Ons het hierdie fout ontvang en sal dit spoedig regmaak. |
169 | | -Besoek ons binnekort weer!', |
170 | 185 | 'mobile-frontend-wml-continue' => 'Gaan voort ...', |
171 | 186 | 'mobile-frontend-wml-back' => 'Terug ...', |
172 | 187 | 'mobile-frontend-view' => 'Mobiele weergawe', |
— | — | @@ -218,8 +233,6 @@ |
219 | 234 | $messages['an'] = array( |
220 | 235 | 'mobile-frontend-desc' => 'Interficie mobil', |
221 | 236 | 'mobile-frontend-search-submit' => 'Ir-ie', |
222 | | - 'mobile-frontend-search-results' => "Resultaus d'a busca", |
223 | | - 'mobile-frontend-no-article-found' => "No s'ha trobau garra articlo", |
224 | 237 | 'mobile-frontend-featured-article' => 'Articlo destacau de hue', |
225 | 238 | 'mobile-frontend-home-button' => 'Portalada', |
226 | 239 | 'mobile-frontend-random-button' => 'Aliatorio', |
— | — | @@ -227,7 +240,6 @@ |
228 | 241 | 'mobile-frontend-show-button' => 'Amostrar', |
229 | 242 | 'mobile-frontend-hide-button' => 'Amagar', |
230 | 243 | 'mobile-frontend-regular-site' => 'Veyer ista pachina en a {{SITENAME}} normal', |
231 | | - 'mobile-frontend-author-link' => "Veyer iste fichero de datos audiovisuals en a versión regular de {{SITENAME}} ta veyer a información sobre l'autoría, licencia y descripcions adicionals.", |
232 | 244 | 'mobile-frontend-wml-continue' => 'Continar...', |
233 | 245 | 'mobile-frontend-wml-back' => 'Enta zaga ...', |
234 | 246 | 'mobile-frontend-view' => 'Versión ta mobils', |
— | — | @@ -344,24 +356,37 @@ |
345 | 357 | 'mobile-frontend-regular-site' => 'Qra had ṣ-ṣefḫa fe l-Wikipédya l-ĝadi', |
346 | 358 | ); |
347 | 359 | |
| 360 | +/** Assamese (অসমীয়া) |
| 361 | + * @author Bishnu Saikia |
| 362 | + */ |
| 363 | +$messages['as'] = array( |
| 364 | + 'mobile-frontend-search-submit' => 'যাওক', |
| 365 | + 'mobile-frontend-home-button' => 'বেটুপাত', |
| 366 | + 'mobile-frontend-show-button' => 'দেখুৱাওক', |
| 367 | + 'mobile-frontend-hide-button' => 'লুকুৱাওক', |
| 368 | + 'mobile-frontend-wml-continue' => 'অব্যাহত ...', |
| 369 | + 'mobile-frontend-leave-feedback-message' => 'বাৰ্তা', |
| 370 | +); |
| 371 | + |
348 | 372 | /** Asturian (Asturianu) |
349 | 373 | * @author Xuacu |
350 | 374 | */ |
351 | 375 | $messages['ast'] = array( |
352 | 376 | 'mobile-frontend-desc' => 'Interfaz pa móviles', |
353 | 377 | 'mobile-frontend-search-submit' => 'Dir', |
354 | | - 'mobile-frontend-no-article-found' => "Nun s'alcontró l'artículu", |
355 | 378 | 'mobile-frontend-featured-article' => 'Artículu destacáu güei', |
356 | 379 | 'mobile-frontend-home-button' => 'Entamu', |
357 | 380 | 'mobile-frontend-random-button' => 'Al debalu', |
358 | 381 | 'mobile-frontend-back-to-top-of-section' => 'Tornar atrás una seición', |
359 | 382 | 'mobile-frontend-show-button' => 'Amosar', |
360 | 383 | 'mobile-frontend-hide-button' => 'Anubrir', |
| 384 | + 'mobile-frontend-empty-homepage' => 'Esta páxina d\'aniciu ta por configurar. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Lleer más equí</a>', |
361 | 385 | 'mobile-frontend-regular-site' => "Vista d'escritoriu", |
362 | | - 'mobile-frontend-error-page-text' => "{{SITENAME}} móvil entá s'alcuentra en desendolcu activu y tamos trabayando duro pa iguar tolos fallos internos. Venimos de recibir avisu d'esti fallu y vamos a igualu bien aína. ¡Vuelvi pronto pa comprobalo!", |
363 | 386 | 'mobile-frontend-wml-continue' => 'Continuar...', |
364 | 387 | 'mobile-frontend-wml-back' => 'Volver...', |
365 | 388 | 'mobile-frontend-view' => 'Vista pa móvil', |
| 389 | + 'mobile-frontend-view-desktop' => 'Escritoriu', |
| 390 | + 'mobile-frontend-view-mobile' => 'Móvil', |
366 | 391 | 'mobile-frontend-opt-in-message' => '¿Quies probar la versión beta pa móvil?', |
367 | 392 | 'mobile-frontend-opt-in-yes-button' => 'sí', |
368 | 393 | 'mobile-frontend-opt-in-no-button' => 'non', |
— | — | @@ -374,14 +399,20 @@ |
375 | 400 | 'mobile-frontend-opt-out-explain' => 'Al dexar la beta pa móviles, desactivarás toles carauterístiques esperimentales y tornarás a la interfaz para móvil clásica.', |
376 | 401 | 'mobile-frontend-disable-images' => 'Desactivar les imaxes nel sitiu pa móvil', |
377 | 402 | 'mobile-frontend-enable-images' => 'Activar les imaxes nel sitiu pa móvil', |
| 403 | + 'mobile-frontend-enable-images-prefix' => 'Imaxes', |
| 404 | + 'mobile-frontend-off' => 'DESACTIVAES', |
| 405 | + 'mobile-frontend-on' => 'ACTIVAES', |
378 | 406 | 'mobile-frontend-news-items' => 'Actualidá', |
379 | | - 'mobile-frontend-leave-feedback-title' => 'Dexanos los tos comentarios tocante a la esperiencia cola versión pa móvil', |
| 407 | + 'mobile-frontend-leave-feedback-title' => 'Comentarios sobre la versión pa móvil', |
380 | 408 | 'mobile-frontend-leave-feedback-notice' => "Los tos comentarios nos ayuden a meyorar la to esperiencia na versión pa móvil. Los mesmos s'asoleyen de mou públicu (xunto col to nome d'usuariu, versión de restolador y sistema operativu) na páxina "\$1". Procura escoyer una llinia d'asuntu informativa; p. ex., \"Problemes de formatu con tables anches\". Los tos comentarios tan suxetos a los nuesos términos d'usu.", |
381 | | - 'mobile-frontend-leave-feedback-subject' => 'Asuntu', |
382 | | - 'mobile-frontend-leave-feedback-message' => 'Mensaxe', |
| 409 | + 'mobile-frontend-leave-feedback-subject' => 'Asuntu:', |
| 410 | + 'mobile-frontend-leave-feedback-message' => 'Mensaxe:', |
383 | 411 | 'mobile-frontend-leave-feedback-submit' => 'Unviar comentarios', |
384 | 412 | 'mobile-frontend-leave-feedback-link-text' => 'Comentarios a la estensión MobileFrontend', |
385 | 413 | 'mobile-frontend-leave-feedback' => 'Comentarios sobre la versión pa móvil', |
| 414 | + 'mobile-frontend-feedback-no-subject' => '(ensin asuntu)', |
| 415 | + 'mobile-frontend-feedback-no-message' => 'Escribi un mensaxe equí', |
| 416 | + 'mobile-frontend-feedback-edit-summary' => "$1 - espublizáu automaticamente usando la [[Special:MobileFeedback|ferramienta de comentarios sobro'l sitiu pa móvil]]", |
386 | 417 | 'mobile-frontend-leave-feedback-thanks' => '¡Gracies polos tos comentarios!', |
387 | 418 | 'mobile-frontend-language' => 'Llingua', |
388 | 419 | 'mobile-frontend-username' => "Nome d'usuariu:", |
— | — | @@ -390,6 +421,15 @@ |
391 | 422 | 'mobile-frontend-placeholder' => 'Escribi equí la gueta...', |
392 | 423 | 'mobile-frontend-dismiss-notification' => 'anubrir esta notificación', |
393 | 424 | 'mobile-frontend-clear-search' => 'Llimpiar', |
| 425 | + 'mobile-frontend-privacy-link-text' => 'Intimidá', |
| 426 | + 'mobile-frontend-about-link-text' => 'Tocante a', |
| 427 | + 'mobile-frontend-footer-more' => 'más', |
| 428 | + 'mobile-frontend-footer-less' => 'menos', |
| 429 | + 'mobile-frontend-footer-sitename' => 'Uiquipedia', |
| 430 | + 'mobile-frontend-footer-license' => 'Conteníu disponible baxo llicencia <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 431 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Condiciones d\'usu</a>', |
| 432 | + 'mobile-frontend-footer-contact' => 'Contautu', |
| 433 | + 'mobile-frontend-unknown-option' => 'Opción non reconocida "$1".', |
394 | 434 | ); |
395 | 435 | |
396 | 436 | /** Azerbaijani (Azərbaycanca) |
— | — | @@ -465,16 +505,12 @@ |
466 | 506 | 'mobile-frontend-desc' => 'Daméglicht dé fyr móbile Endgräte óptimierde Dorstejung vah Seiten', |
467 | 507 | 'mobile-frontend-search-submit' => 'Lós', |
468 | 508 | 'mobile-frontend-featured-article' => 'Artiké vam Toog', |
469 | | - 'mobile-frontend-in-the-news' => "A' d' Noochrichten", |
470 | 509 | 'mobile-frontend-home-button' => 'Start', |
471 | 510 | 'mobile-frontend-random-button' => 'Zuafoi', |
472 | 511 | 'mobile-frontend-back-to-top-of-section' => 'Oah Kapitel zruck springer', |
473 | 512 | 'mobile-frontend-show-button' => 'Auhzoang', |
474 | 513 | 'mobile-frontend-hide-button' => 'Vastecker', |
475 | 514 | 'mobile-frontend-regular-site' => 'Za da klassischen {{SITENAME}}-Auhsicht wexeln', |
476 | | - 'mobile-frontend-error-page-text' => "Dé móbile Auhsicht vah {{SITENAME}} befindt sé nóh a' da Entwicklung und mia bemian ins, nóh bsteehernde interne Feeler z' behém. Mir san ywer dén Feeler informierd worn und werns Próblém in Kyrze lésen. Bittscheh vasuachs spaader nóhamoi.", |
477 | | - 'mobile-frontend-explain-disable' => "Bist da dert sicher, daas d' dé móbile Auhsicht vah {{SITENAME}} deaktiviern mecherdst? Waunn du <b>Deaktiviern</b> wejst, werst ob iatz ba am Bsuach vah {{SITENAME}} nimmer autómaatisch af d' móbile Auhsicht vah {{SITENAME}} weidergloatt.", |
478 | | - 'mobile-frontend-author-link' => "Dé Daatei a' da reegulärn Auhsicht vah {{SITENAME}} auhzoang, um Informazióner ywer Autórn, Lizenzner und daweiterde Bschreiwunger z' seeng.", |
479 | 515 | 'mobile-frontend-wml-continue' => 'Weider ...', |
480 | 516 | 'mobile-frontend-wml-back' => 'Zruck ...', |
481 | 517 | 'mobile-frontend-view' => 'Móbile Auhsicht', |
— | — | @@ -527,10 +563,13 @@ |
528 | 564 | 'mobile-frontend-back-to-top-of-section' => 'Вярнуцца да папярэдняй сэкцыі', |
529 | 565 | 'mobile-frontend-show-button' => 'Паказаць', |
530 | 566 | 'mobile-frontend-hide-button' => 'Схаваць', |
| 567 | + 'mobile-frontend-empty-homepage' => 'Трэба наладзіць галоўную старонку. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Даведацца болей</a>', |
531 | 568 | 'mobile-frontend-regular-site' => 'Поўная вэрсія', |
532 | 569 | 'mobile-frontend-wml-continue' => 'Далей …', |
533 | 570 | 'mobile-frontend-wml-back' => 'Вярнуцца …', |
534 | 571 | 'mobile-frontend-view' => 'Мабільная вэрсія', |
| 572 | + 'mobile-frontend-view-desktop' => 'Для кампутара', |
| 573 | + 'mobile-frontend-view-mobile' => 'Для тэлефону', |
535 | 574 | 'mobile-frontend-opt-in-message' => 'Далучыцца да праверкі бэта-вэрсіі мабільнага інтэрфэйсу?', |
536 | 575 | 'mobile-frontend-opt-in-yes-button' => 'так', |
537 | 576 | 'mobile-frontend-opt-in-no-button' => 'не', |
— | — | @@ -543,14 +582,20 @@ |
544 | 583 | 'mobile-frontend-opt-out-explain' => 'Пакінуўшы праверку бэта-вэрсіі мабільнага інтэрфэйсу, Вы выключыце ўсе экспэрымэнтальныя магчымасьці і вернецеся да звычайнага мабільнага інтэрфэйсу.', |
545 | 584 | 'mobile-frontend-disable-images' => 'Забараніць выявы на сайце для мабільных тэлефонаў', |
546 | 585 | 'mobile-frontend-enable-images' => 'Дазволіць выявы на сайце для мабільных тэлефонаў', |
| 586 | + 'mobile-frontend-enable-images-prefix' => 'Выявы', |
| 587 | + 'mobile-frontend-off' => 'ВЫКЛ', |
| 588 | + 'mobile-frontend-on' => 'УКЛ', |
547 | 589 | 'mobile-frontend-news-items' => 'Навіны', |
548 | | - 'mobile-frontend-leave-feedback-title' => 'Даслаць водгук пра карыстаньне мабільным інтэрфэйсам', |
| 590 | + 'mobile-frontend-leave-feedback-title' => 'Водгук па мабільным сайце', |
549 | 591 | 'mobile-frontend-leave-feedback-notice' => 'Ваш водгук дапаможа нам палепшыць карыстаньне мабільнай вэрсіяй. Ён будзе апублікаваны публічна (разам з Вашым імем карыстальніка, вэрсіяй браўзэра і апэрацыйнай сыстэмай) на старонцы "$1". Калі ласка, паспрабуйце выбраць інфармацыйную назву, напрыклад «Праблемы фарматаваньня шырокіх табліцаў». Ваш водгук павінен адпавядаць нашым умовам выкарыстаньня.', |
550 | | - 'mobile-frontend-leave-feedback-subject' => 'Тэма', |
551 | | - 'mobile-frontend-leave-feedback-message' => 'Паведамленьне', |
| 592 | + 'mobile-frontend-leave-feedback-subject' => 'Тэма:', |
| 593 | + 'mobile-frontend-leave-feedback-message' => 'Паведамленьне:', |
552 | 594 | 'mobile-frontend-leave-feedback-submit' => 'Даслаць водгук', |
553 | 595 | 'mobile-frontend-leave-feedback-link-text' => 'Водгук пра Мабільны інтэрфэйс', |
554 | 596 | 'mobile-frontend-leave-feedback' => 'Пакінуць водгук', |
| 597 | + 'mobile-frontend-feedback-no-subject' => '(бяз тэмы)', |
| 598 | + 'mobile-frontend-feedback-no-message' => 'Увядзіце сюды паведамленьне, калі ласка', |
| 599 | + 'mobile-frontend-feedback-edit-summary' => '$1 — адпраўлены аўтаматычна са [[Special:MobileFeedback|старонкі водгукаў]]', |
555 | 600 | 'mobile-frontend-leave-feedback-thanks' => 'Дзякуй за Ваш водгук!', |
556 | 601 | 'mobile-frontend-language' => 'Мова', |
557 | 602 | 'mobile-frontend-username' => 'Імя ўдзельніка:', |
— | — | @@ -559,6 +604,15 @@ |
560 | 605 | 'mobile-frontend-placeholder' => 'Увядзіце пошукавы выраз тут…', |
561 | 606 | 'mobile-frontend-dismiss-notification' => 'схаваць паведамленьне', |
562 | 607 | 'mobile-frontend-clear-search' => 'Ачысьціць', |
| 608 | + 'mobile-frontend-privacy-link-text' => 'Прыватнасьць', |
| 609 | + 'mobile-frontend-about-link-text' => 'Пра праграму', |
| 610 | + 'mobile-frontend-footer-more' => 'болей', |
| 611 | + 'mobile-frontend-footer-less' => 'меней', |
| 612 | + 'mobile-frontend-footer-sitename' => 'Вікіпэдыя', |
| 613 | + 'mobile-frontend-footer-license' => 'Зьмест даступны на ўмовах ліцэнзіі <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 614 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Умовы_выкарыстаньня?useformat=mobile">Умовы выкарыстаньня</a>', |
| 615 | + 'mobile-frontend-footer-contact' => 'Кантакты', |
| 616 | + 'mobile-frontend-unknown-option' => 'Нераспазнаны парамэтар «$1».', |
563 | 617 | ); |
564 | 618 | |
565 | 619 | /** Bulgarian (Български) |
— | — | @@ -640,19 +694,13 @@ |
641 | 695 | $messages['br'] = array( |
642 | 696 | 'mobile-frontend-desc' => 'Talbenn evit an hezougoù', |
643 | 697 | 'mobile-frontend-search-submit' => 'Mont', |
644 | | - 'mobile-frontend-search-results' => "Disoc'hoù klask", |
645 | 698 | 'mobile-frontend-featured-article' => 'Un tamm sell war...', |
646 | | - 'mobile-frontend-in-the-news' => "Er C'heleier", |
647 | 699 | 'mobile-frontend-home-button' => 'Degemer', |
648 | 700 | 'mobile-frontend-random-button' => 'Dargouezhek', |
649 | 701 | 'mobile-frontend-back-to-top-of-section' => 'Lammat ur rann war-gil', |
650 | 702 | 'mobile-frontend-show-button' => 'Diskouez', |
651 | 703 | 'mobile-frontend-hide-button' => 'Kuzhat', |
652 | 704 | 'mobile-frontend-regular-site' => 'Diskouez ar bajenn-mañ war ar {{SITENAME}} boas', |
653 | | - 'mobile-frontend-are-you-sure' => "Ha sur oc'h ?", |
654 | | - 'mobile-frontend-explain-disable' => "Ha sur oc'h e fell deoc'h diweredekaat stumm hezoug {{SITENAME}} ? Ma tibabit <b>Diweredekaat</b>, ne viot ket adkaset war-zu ar stumm hezoug eus {{SITENAME}} ken pa'z eot war {{SITENAME}}.", |
655 | | - 'mobile-frontend-nav-top' => "Krec'h", |
656 | | - 'mobile-frontend-contact-us' => "M'o peus goulennoù pe evezhiadennoù deuit e darempred ganeomp d'ar chomlec'h mobile@wikipedia.org", |
657 | 705 | 'mobile-frontend-wml-continue' => "Kenderc'hel...", |
658 | 706 | 'mobile-frontend-wml-back' => 'Distreiñ...', |
659 | 707 | 'mobile-frontend-view' => 'Gwel evit an hezoug', |
— | — | @@ -684,6 +732,12 @@ |
685 | 733 | 'mobile-frontend-placeholder' => 'Merkit ar pezh a glaskit amañ...', |
686 | 734 | 'mobile-frontend-dismiss-notification' => 'disteuler ar gemennadenn-mañ', |
687 | 735 | 'mobile-frontend-clear-search' => 'Riñsañ', |
| 736 | + 'mobile-frontend-privacy-link-text' => 'Prevezded', |
| 737 | + 'mobile-frontend-about-link-text' => 'Diwar-benn', |
| 738 | + 'mobile-frontend-footer-more' => "muioc'h", |
| 739 | + 'mobile-frontend-footer-less' => "nebeutoc'h", |
| 740 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 741 | + 'mobile-frontend-footer-contact' => 'Darempred', |
688 | 742 | ); |
689 | 743 | |
690 | 744 | /** Bosnian (Bosanski) |
— | — | @@ -711,7 +765,6 @@ |
712 | 766 | $messages['ca'] = array( |
713 | 767 | 'mobile-frontend-desc' => 'Interfície mòbil', |
714 | 768 | 'mobile-frontend-search-submit' => 'Vés-hi', |
715 | | - 'mobile-frontend-no-article-found' => "No s'ha trobat cap article", |
716 | 769 | 'mobile-frontend-featured-article' => "Article destacat d'avui", |
717 | 770 | 'mobile-frontend-home-button' => 'Inici', |
718 | 771 | 'mobile-frontend-random-button' => 'Aleatori', |
— | — | @@ -719,10 +772,6 @@ |
720 | 773 | 'mobile-frontend-show-button' => 'Mostra', |
721 | 774 | 'mobile-frontend-hide-button' => 'Amaga', |
722 | 775 | 'mobile-frontend-regular-site' => 'Mostra la pàgina en la versió habitual', |
723 | | - 'mobile-frontend-error-page-text' => "El web {{SITENAME}} mòbil encara està en desenvolupament i estem treballant per a resoldre tots els errors interns. Hem estat notificats d'aquest error i el repararem aviat. Torneu-ho a provar més endavant!", |
724 | | - 'mobile-frontend-are-you-sure' => "N'esteu segur?", |
725 | | - 'mobile-frontend-explain-disable' => "Esteu segur que voleu inhabilitar la versió mòbil del web {{SITENAME}}? Si trieu <b>Inhabilita</b>, a partir d'aleshores, quan visiteu el web {{SITENAME}}, no se us redirigirà a la versió mòbil.", |
726 | | - 'mobile-frontend-author-link' => "Vegeu el fitxer multimèdia al web {{SITENAME}} habitual per consultar la informació de l'autoria, la llicència i les descripcions addicionals.", |
727 | 776 | 'mobile-frontend-wml-continue' => 'Continua ...', |
728 | 777 | 'mobile-frontend-wml-back' => 'Enrere ...', |
729 | 778 | 'mobile-frontend-view' => 'Versió per a mòbils', |
— | — | @@ -844,6 +893,11 @@ |
845 | 894 | 'mobile-frontend-placeholder' => 'Sem napište hledaný výraz…', |
846 | 895 | 'mobile-frontend-dismiss-notification' => 'zavřít toto oznámení', |
847 | 896 | 'mobile-frontend-clear-search' => 'Smazat', |
| 897 | + 'mobile-frontend-privacy-link-text' => 'Ochrana soukromí', |
| 898 | + 'mobile-frontend-about-link-text' => 'O aplikaci', |
| 899 | + 'mobile-frontend-footer-sitename' => 'Wikipedie', |
| 900 | + 'mobile-frontend-footer-license' => 'Obsah je dostupný pod <a href="http://wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a><br /><a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Podm%C3%ADnky_u%C5%BEit%C3%AD?useformat=mobile">Podmínky užití</a>', |
| 901 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
848 | 902 | ); |
849 | 903 | |
850 | 904 | /** Church Slavic (Словѣ́ньскъ / ⰔⰎⰑⰂⰡⰐⰠⰔⰍⰟ) */ |
— | — | @@ -861,24 +915,18 @@ |
862 | 916 | $messages['cy'] = array( |
863 | 917 | 'mobile-frontend-desc' => 'Rhaglen pen blaen i declynnau symudol', |
864 | 918 | 'mobile-frontend-search-submit' => 'Eler', |
865 | | - 'mobile-frontend-search-results' => "Canlyniadau'r chwilio", |
866 | | - 'mobile-frontend-no-article-found' => "Dim Erthygl I'w Gael", |
867 | 919 | 'mobile-frontend-featured-article' => 'Erthygl y Dydd', |
868 | 920 | 'mobile-frontend-home-button' => 'Hafan', |
869 | 921 | 'mobile-frontend-random-button' => 'Ar hap', |
870 | 922 | 'mobile-frontend-back-to-top-of-section' => 'Neidio Un Adran Am Nôl', |
871 | 923 | 'mobile-frontend-show-button' => 'Dangos', |
872 | 924 | 'mobile-frontend-hide-button' => 'Cuddio', |
873 | | - 'mobile-frontend-regular-site' => 'Gweld y dudalen hon ar y {{SITENAME}} arferol', |
874 | | - 'mobile-frontend-error-page-text' => "Y mae {{SITENAME}} symudol yn dal i gael ei ddatblygu ac rydym wrthi'n ddiwyd yn cywiro'r gwallau mewnol. Rydym wedi cael gwybod am y gwall hwn ac fe fyddwn yn ei gywiro'n fuan. Rhowch gynnig arall arni yn y man.", |
875 | | - 'mobile-frontend-are-you-sure' => "Ydych chi'n bendant am wneud hyn ?", |
876 | | - 'mobile-frontend-explain-disable' => "Ydych chi'n bendant am analluogi fersiwn {{SITENAME}} ar gyfer ffonau symudol? Os y dewiswch <b>Analluogi</b>, yna pan ymwelwch â Wicipedia, ni chewch eich ailgyfeirio at y wedd hon o {{SITENAME}} ar gyfer ffonau symudol.", |
877 | | - 'mobile-frontend-download-full-version' => "Islwytho'r fersiwn cyflawn", |
| 925 | + 'mobile-frontend-regular-site' => 'Gweld y fersiwn i gyfrifiadur', |
878 | 926 | 'mobile-frontend-wml-continue' => 'Parhau ...', |
879 | 927 | 'mobile-frontend-wml-back' => 'Nôl ...', |
880 | 928 | 'mobile-frontend-news-items' => 'Ar y Newyddion', |
881 | | - 'mobile-frontend-leave-feedback-subject' => 'Pwnc', |
882 | | - 'mobile-frontend-leave-feedback-message' => 'Neges', |
| 929 | + 'mobile-frontend-leave-feedback-subject' => 'Pwnc:', |
| 930 | + 'mobile-frontend-leave-feedback-message' => 'Neges:', |
883 | 931 | 'mobile-frontend-leave-feedback-submit' => 'Cyflwyner yr Adborth', |
884 | 932 | 'mobile-frontend-leave-feedback-thanks' => 'Diolch am eich adborth!', |
885 | 933 | 'mobile-frontend-language' => 'Iaith', |
— | — | @@ -930,6 +978,7 @@ |
931 | 979 | ); |
932 | 980 | |
933 | 981 | /** German (Deutsch) |
| 982 | + * @author Geitost |
934 | 983 | * @author Kghbln |
935 | 984 | * @author Metalhead64 |
936 | 985 | */ |
— | — | @@ -942,10 +991,13 @@ |
943 | 992 | 'mobile-frontend-back-to-top-of-section' => 'Einen Abschnitt zurück springen', |
944 | 993 | 'mobile-frontend-show-button' => 'Anzeigen', |
945 | 994 | 'mobile-frontend-hide-button' => 'Ausblenden', |
| 995 | + 'mobile-frontend-empty-homepage' => 'Diese Homepage muss konfiguriert werden. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Hier weiterlesen</a>', |
946 | 996 | 'mobile-frontend-regular-site' => 'Klassische Ansicht', |
947 | 997 | 'mobile-frontend-wml-continue' => 'Weiter ...', |
948 | 998 | 'mobile-frontend-wml-back' => 'Zurück ...', |
949 | 999 | 'mobile-frontend-view' => 'Mobile Ansicht', |
| 1000 | + 'mobile-frontend-view-desktop' => 'Arbeitsfläche', |
| 1001 | + 'mobile-frontend-view-mobile' => 'Mobil', |
950 | 1002 | 'mobile-frontend-opt-in-message' => 'Am Beta-Test teilnehmen?', |
951 | 1003 | 'mobile-frontend-opt-in-yes-button' => 'Ja', |
952 | 1004 | 'mobile-frontend-opt-in-no-button' => 'Nein', |
— | — | @@ -958,14 +1010,20 @@ |
959 | 1011 | 'mobile-frontend-opt-out-explain' => 'Mit dem Ende der Teilnahme am Beta-Test werden die experimentellen Funktionen deaktiviert und die klassischen Funktionen aktiviert.', |
960 | 1012 | 'mobile-frontend-disable-images' => 'Bilder in der mobilen Ansicht deaktivieren', |
961 | 1013 | 'mobile-frontend-enable-images' => 'Bilder in der mobilen Ansicht aktivieren', |
| 1014 | + 'mobile-frontend-enable-images-prefix' => 'Bilder', |
| 1015 | + 'mobile-frontend-off' => 'AUS', |
| 1016 | + 'mobile-frontend-on' => 'AN', |
962 | 1017 | 'mobile-frontend-news-items' => 'In den Nachrichten', |
963 | | - 'mobile-frontend-leave-feedback-title' => 'Gib uns bitte eine Rückmeldung zu deinen Erfahrungen mit der mobilen Ansicht', |
| 1018 | + 'mobile-frontend-leave-feedback-title' => 'Rückmeldung zur mobilen Ansicht', |
964 | 1019 | 'mobile-frontend-leave-feedback-notice' => 'Deine Rückmeldung hilft uns dabei, die mobile Ansicht weiter zu verbessern. Sie wird öffentlich auf der Seite "$1" angezeigt. Dabei werden dein Benutzername, die Version des von dir genutzten Browsers sowie das von dir genutzte Betriebssystem angegeben. Bitte wähle einen informativen und aussagekräftigen Betreff, wie bswp. „Probleme bei der Anzeige von Tabellen“. Deine Rückmeldung unterliegt dabei unseren Nutzungsbedingungen.', |
965 | | - 'mobile-frontend-leave-feedback-subject' => 'Betreff', |
966 | | - 'mobile-frontend-leave-feedback-message' => 'Nachricht', |
| 1020 | + 'mobile-frontend-leave-feedback-subject' => 'Betreff:', |
| 1021 | + 'mobile-frontend-leave-feedback-message' => 'Nachricht:', |
967 | 1022 | 'mobile-frontend-leave-feedback-submit' => 'Rückmeldung senden', |
968 | 1023 | 'mobile-frontend-leave-feedback-link-text' => 'Rückmeldung zur mobilen Ansicht', |
969 | 1024 | 'mobile-frontend-leave-feedback' => 'Rückmeldung geben', |
| 1025 | + 'mobile-frontend-feedback-no-subject' => '(kein Betreff)', |
| 1026 | + 'mobile-frontend-feedback-no-message' => 'Bitte gib deine Nachricht an dieser Stelle ein', |
| 1027 | + 'mobile-frontend-feedback-edit-summary' => '$1 - automatisch gespeicherte [[Special:MobileFeedback|Rückmeldung]]', |
970 | 1028 | 'mobile-frontend-leave-feedback-thanks' => 'Vielen Dank für deine Rückmeldung.', |
971 | 1029 | 'mobile-frontend-language' => 'Sprache', |
972 | 1030 | 'mobile-frontend-username' => 'Benutzername:', |
— | — | @@ -974,6 +1032,15 @@ |
975 | 1033 | 'mobile-frontend-placeholder' => 'Gib hier deine Suche ein ...', |
976 | 1034 | 'mobile-frontend-dismiss-notification' => 'diese Benachrichtigung schließen', |
977 | 1035 | 'mobile-frontend-clear-search' => 'Leeren', |
| 1036 | + 'mobile-frontend-privacy-link-text' => 'Datenschutz', |
| 1037 | + 'mobile-frontend-about-link-text' => 'Über', |
| 1038 | + 'mobile-frontend-footer-more' => 'mehr', |
| 1039 | + 'mobile-frontend-footer-less' => 'weniger', |
| 1040 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 1041 | + 'mobile-frontend-footer-license' => 'Die Inhalte sind verfügbar unter der Lizenz <a href="https://www.mediawiki.org//de.m.wikipedia.org/wiki/Wikipedia:Lizenzbestimmungen_Commons_Attribution-ShareAlike_3.0_Unported?useformat=mobile">CC BY-SA 3.0</a>', |
| 1042 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Nutzungsbedingungen?useformat=mobile">Nutzungsbedingungen</a>', |
| 1043 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
| 1044 | + 'mobile-frontend-unknown-option' => 'Unbekannte Option „$1“.', |
978 | 1045 | ); |
979 | 1046 | |
980 | 1047 | /** Swiss High German (Schweizer Hochdeutsch) |
— | — | @@ -990,6 +1057,7 @@ |
991 | 1058 | 'mobile-frontend-opt-in-explain' => 'Durch die Teilnahme am Beta-Test erhalten Sie Zugriff auf experimentelle Funktionen, die allerdings auch Probleme und Fehler verursachen können.', |
992 | 1059 | 'mobile-frontend-leave-feedback-title' => 'Geben Sie uns bitte eine Rückmeldung zu Ihren Erfahrungen mit der mobilen Ansicht', |
993 | 1060 | 'mobile-frontend-leave-feedback-notice' => 'Ihre Rückmeldung hilft uns dabei, die mobile Ansicht weiter zu verbessern. Sie wird öffentlich auf der Seite "$1" angezeigt. Dabei werden Ihr Benutzername, die Version des von Ihnen genutzten Browsers sowie das von Ihnen genutzte Betriebssystem angegeben. Bitte wählen Sie einen informativen und aussagekräftigen Betreff, wie bswp. „Probleme bei der Anzeige von Tabellen“. Ihre Rückmeldung unterliegt dabei unseren Nutzungsbedingungen.', |
| 1061 | + 'mobile-frontend-feedback-no-message' => 'Bitte geben Sie Ihre Nachricht an dieser Stelle ein', |
994 | 1062 | 'mobile-frontend-leave-feedback-thanks' => 'Vielen Dank für Ihre Rückmeldung.', |
995 | 1063 | 'mobile-frontend-placeholder' => 'Geben Sie hier Ihre Suche ein ...', |
996 | 1064 | ); |
— | — | @@ -1000,9 +1068,41 @@ |
1001 | 1069 | */ |
1002 | 1070 | $messages['diq'] = array( |
1003 | 1071 | 'mobile-frontend-search-submit' => 'Şo', |
| 1072 | + 'mobile-frontend-home-button' => 'Keye', |
1004 | 1073 | 'mobile-frontend-random-button' => 'Raştamae', |
1005 | 1074 | 'mobile-frontend-show-button' => 'Bımocne', |
1006 | 1075 | 'mobile-frontend-hide-button' => 'Bınımne', |
| 1076 | + 'mobile-frontend-empty-homepage' => 'Ena keyepela timarkerdışi rê şırê <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">tiyay buwanê</a>', |
| 1077 | + 'mobile-frontend-regular-site' => 'Verqaydê serêmasi', |
| 1078 | + 'mobile-frontend-wml-continue' => 'Peyniya cı...', |
| 1079 | + 'mobile-frontend-wml-back' => 'Peyd be...', |
| 1080 | + 'mobile-frontend-view' => 'Mobil asayış', |
| 1081 | + 'mobile-frontend-view-desktop' => 'Serêmasi', |
| 1082 | + 'mobile-frontend-view-mobile' => 'Mobil', |
| 1083 | + 'mobile-frontend-opt-in-yes-button' => 'E', |
| 1084 | + 'mobile-frontend-opt-in-no-button' => 'Nê', |
| 1085 | + 'mobile-frontend-opt-out-yes-button' => 'E', |
| 1086 | + 'mobile-frontend-opt-out-no-button' => 'Nê', |
| 1087 | + 'mobile-frontend-enable-images-prefix' => 'Resım', |
| 1088 | + 'mobile-frontend-off' => 'RACNE', |
| 1089 | + 'mobile-frontend-on' => 'AKE', |
| 1090 | + 'mobile-frontend-news-items' => 'Xeberi', |
| 1091 | + 'mobile-frontend-leave-feedback-title' => 'Mobil site ra peyd rıştış', |
| 1092 | + 'mobile-frontend-leave-feedback-subject' => 'Muhtewa:', |
| 1093 | + 'mobile-frontend-leave-feedback-message' => 'Mesac:', |
| 1094 | + 'mobile-frontend-leave-feedback-submit' => 'Peyxeberdar Bırşe', |
| 1095 | + 'mobile-frontend-feedback-no-subject' => '(muhtewa çıno)', |
| 1096 | + 'mobile-frontend-language' => 'Zuwan', |
| 1097 | + 'mobile-frontend-username' => 'Namey karberi:', |
| 1098 | + 'mobile-frontend-password' => 'Parola:', |
| 1099 | + 'mobile-frontend-login' => 'Ronıştış ak', |
| 1100 | + 'mobile-frontend-clear-search' => 'Bestern', |
| 1101 | + 'mobile-frontend-privacy-link-text' => 'Nımıtış', |
| 1102 | + 'mobile-frontend-about-link-text' => 'Sılasnayış', |
| 1103 | + 'mobile-frontend-footer-more' => 'Vêşi', |
| 1104 | + 'mobile-frontend-footer-less' => 'Kemi', |
| 1105 | + 'mobile-frontend-footer-sitename' => 'Wikipediya', |
| 1106 | + 'mobile-frontend-footer-contact' => 'İrtibat', |
1007 | 1107 | ); |
1008 | 1108 | |
1009 | 1109 | /** Lower Sorbian (Dolnoserbski) |
— | — | @@ -1017,10 +1117,13 @@ |
1018 | 1118 | 'mobile-frontend-back-to-top-of-section' => 'Wótrězk slědk skócyś', |
1019 | 1119 | 'mobile-frontend-show-button' => 'Pokazaś', |
1020 | 1120 | 'mobile-frontend-hide-button' => 'Schowaś', |
| 1121 | + 'mobile-frontend-empty-homepage' => 'Toś ten startowy bok musy se konfigurěrowaś. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Dalšne informacije how</a>', |
1021 | 1122 | 'mobile-frontend-regular-site' => 'Klasiski naglěd', |
1022 | 1123 | 'mobile-frontend-wml-continue' => 'Dalej ...', |
1023 | 1124 | 'mobile-frontend-wml-back' => 'Slědk ...', |
1024 | 1125 | 'mobile-frontend-view' => 'Mobilny naglěd', |
| 1126 | + 'mobile-frontend-view-desktop' => 'Desktop', |
| 1127 | + 'mobile-frontend-view-mobile' => 'Mobilny', |
1025 | 1128 | 'mobile-frontend-opt-in-message' => 'Na betatesće se wobźěliś?', |
1026 | 1129 | 'mobile-frontend-opt-in-yes-button' => 'jo', |
1027 | 1130 | 'mobile-frontend-opt-in-no-button' => 'ně', |
— | — | @@ -1033,14 +1136,20 @@ |
1034 | 1137 | 'mobile-frontend-opt-out-explain' => 'Gaž wobźělenje na mobilnem betatesće skóńcyš, znjemóžnijoš wšykne eksperimentelne funkcije a wrośijoš se ke klasiskim funkcijam.', |
1035 | 1138 | 'mobile-frontend-disable-images' => 'Wobraze w mobilnem naglěźe znjemóžniś', |
1036 | 1139 | 'mobile-frontend-enable-images' => 'Wobraze w mobilnem naglěźe zmóžniś', |
| 1140 | + 'mobile-frontend-enable-images-prefix' => 'wobraze', |
| 1141 | + 'mobile-frontend-off' => 'WUŠALTOWANY', |
| 1142 | + 'mobile-frontend-on' => 'ZAŠALTOWANY', |
1037 | 1143 | 'mobile-frontend-news-items' => 'W nowosćach', |
1038 | | - 'mobile-frontend-leave-feedback-title' => 'Daj nam swóje nazgónjenja z mobilnym sedłom k wěsći', |
| 1144 | + 'mobile-frontend-leave-feedback-title' => 'Komentary wó mobilnem sedle', |
1039 | 1145 | 'mobile-frontend-leave-feedback-notice' => 'Twóje komentary pomagaju nam mobilne sedło pólěpšyś. Wozjawja se z wužywarskim mjenim, wersiju wobglědowaka a źěłowym systemom na boku "$1". Pšosym wubjeŕ wugroniwu temu, na ps. "Problemy pśi formatěrowanju tabelow". Twóje komentary pódlaže našym wužywarskim wuměnjenjam.', |
1040 | | - 'mobile-frontend-leave-feedback-subject' => 'Tema', |
1041 | | - 'mobile-frontend-leave-feedback-message' => 'Powěsć', |
| 1146 | + 'mobile-frontend-leave-feedback-subject' => 'Tema:', |
| 1147 | + 'mobile-frontend-leave-feedback-message' => 'Powěsć:', |
1042 | 1148 | 'mobile-frontend-leave-feedback-submit' => 'Komentar wótpósłaś', |
1043 | 1149 | 'mobile-frontend-leave-feedback-link-text' => 'Komentary k rozšyrjenjeju MobileFrontend', |
1044 | 1150 | 'mobile-frontend-leave-feedback' => 'Komentary wó mobilnem sedle', |
| 1151 | + 'mobile-frontend-feedback-no-subject' => '(žedna tema)', |
| 1152 | + 'mobile-frontend-feedback-no-message' => 'Pšosym zapódaj how powěźeńku', |
| 1153 | + 'mobile-frontend-feedback-edit-summary' => '$1 - z [[Special:MobileFeedback|mobilnym komentarowym rědom]] awtomatiski rozpósłany', |
1045 | 1154 | 'mobile-frontend-leave-feedback-thanks' => 'Źěkujomy se za twój komentar!', |
1046 | 1155 | 'mobile-frontend-language' => 'Rěc', |
1047 | 1156 | 'mobile-frontend-username' => 'Wužywarske mě:', |
— | — | @@ -1049,6 +1158,15 @@ |
1050 | 1159 | 'mobile-frontend-placeholder' => 'Zapódaj how swójo pytanje...', |
1051 | 1160 | 'mobile-frontend-dismiss-notification' => 'Toś tu powěźeńku zachyśiś', |
1052 | 1161 | 'mobile-frontend-clear-search' => 'Wuprozniś', |
| 1162 | + 'mobile-frontend-privacy-link-text' => 'Priwatnosć', |
| 1163 | + 'mobile-frontend-about-link-text' => 'Wó', |
| 1164 | + 'mobile-frontend-footer-more' => 'wěcej', |
| 1165 | + 'mobile-frontend-footer-less' => 'mjenjej', |
| 1166 | + 'mobile-frontend-footer-sitename' => 'Wikipedija', |
| 1167 | + 'mobile-frontend-footer-license' => 'Wopśimjeśe stoj pód licencu <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>k dispoziciji', |
| 1168 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Wužywańske wuměnjenja</a>', |
| 1169 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
| 1170 | + 'mobile-frontend-unknown-option' => 'Njespóznata opcija "$1".', |
1053 | 1171 | ); |
1054 | 1172 | |
1055 | 1173 | /** Central Dusun (Dusun Bundu-liwan) */ |
— | — | @@ -1086,7 +1204,6 @@ |
1087 | 1205 | 'mobile-frontend-show-button' => 'Εμφάνιση', |
1088 | 1206 | 'mobile-frontend-hide-button' => 'Απόκρυψη', |
1089 | 1207 | 'mobile-frontend-regular-site' => 'Δείτε αυτή τη σελίδα στην κανονική Βικιπαίδεια', |
1090 | | - 'mobile-frontend-explain-disable' => "Είστε σίγουρος(η) ότι θέλετε να απενεργοποιήσετε την έκδοση της Βικιπαίδειας για κινητά; Εάν διαλέξετε <b>Απενεργοποίηση</b>, τότε, από δω κι εμπρός, όταν επισκέπτεστε τη Βικιπαίδεια, δεν θα ανακατευθύνεστε σ' αυτή την έκδοση της Βικιπαίδειας για κινητά.", |
1091 | 1208 | 'mobile-frontend-wml-continue' => 'Συνέχεια ...', |
1092 | 1209 | 'mobile-frontend-wml-back' => 'Πίσω ...', |
1093 | 1210 | 'mobile-frontend-view' => 'Προβολή κινητού', |
— | — | @@ -1175,10 +1292,13 @@ |
1176 | 1293 | 'mobile-frontend-back-to-top-of-section' => 'Ir atrás una sección', |
1177 | 1294 | 'mobile-frontend-show-button' => 'Mostrar', |
1178 | 1295 | 'mobile-frontend-hide-button' => 'Ocultar', |
| 1296 | + 'mobile-frontend-empty-homepage' => 'Esta página debe configurarse. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Leer más aquí</a>', |
1179 | 1297 | 'mobile-frontend-regular-site' => 'Vista del escritorio', |
1180 | 1298 | 'mobile-frontend-wml-continue' => 'Continuar...', |
1181 | 1299 | 'mobile-frontend-wml-back' => 'Atrás...', |
1182 | 1300 | 'mobile-frontend-view' => 'Versión para móviles', |
| 1301 | + 'mobile-frontend-view-desktop' => 'Escritorio', |
| 1302 | + 'mobile-frontend-view-mobile' => 'teléfono móvil', |
1183 | 1303 | 'mobile-frontend-opt-in-message' => '¿Quieres unirte a nuestras pruebas de la nueva interfaz móvil?', |
1184 | 1304 | 'mobile-frontend-opt-in-yes-button' => 'sí', |
1185 | 1305 | 'mobile-frontend-opt-in-no-button' => 'no', |
— | — | @@ -1191,14 +1311,20 @@ |
1192 | 1312 | 'mobile-frontend-opt-out-explain' => 'Abandonando la prueba beta móvil, desactivarás todas las funciones experimentales y retornarás a la interfaz móvil clásica.', |
1193 | 1313 | 'mobile-frontend-disable-images' => 'Desactivar imágenes en la versión para móviles', |
1194 | 1314 | 'mobile-frontend-enable-images' => 'Activar imágenes en la versión para móviles', |
| 1315 | + 'mobile-frontend-enable-images-prefix' => 'Imágenes', |
| 1316 | + 'mobile-frontend-off' => 'APAGADO', |
| 1317 | + 'mobile-frontend-on' => 'ENCENDIDO', |
1195 | 1318 | 'mobile-frontend-news-items' => 'Actualidad', |
1196 | | - 'mobile-frontend-leave-feedback-title' => 'Informarnos de tu experiencia en en el sitio para móviles.', |
| 1319 | + 'mobile-frontend-leave-feedback-title' => 'Comentarios sobre el sitio para móviles.', |
1197 | 1320 | 'mobile-frontend-leave-feedback-notice' => 'Sus comentarios nos ayudan a mejorar su experiencia del sitio móvil. Serán publicados en sitio accesible (junto con su nombre de usuario, versión del navegador y sistema operativo) en la página "$1". Intente elegir una línea informativa del tema, por ejemplo, "Formateando contenidos con tablas de gran anchura". Sus comentarios está sujetos a nuestros términos de uso.', |
1198 | | - 'mobile-frontend-leave-feedback-subject' => 'Asunto', |
1199 | | - 'mobile-frontend-leave-feedback-message' => 'Mensaje', |
| 1321 | + 'mobile-frontend-leave-feedback-subject' => 'Asunto:', |
| 1322 | + 'mobile-frontend-leave-feedback-message' => 'Mensaje:', |
1200 | 1323 | 'mobile-frontend-leave-feedback-submit' => 'Enviar comentarios', |
1201 | 1324 | 'mobile-frontend-leave-feedback-link-text' => 'Comentarios de la extensión de interfaz de usuario móvil', |
1202 | 1325 | 'mobile-frontend-leave-feedback' => 'Comentarios sobre el sitio móvil', |
| 1326 | + 'mobile-frontend-feedback-no-subject' => '(sin asunto)', |
| 1327 | + 'mobile-frontend-feedback-no-message' => 'Introduce un mensaje aquí', |
| 1328 | + 'mobile-frontend-feedback-edit-summary' => '$1 - publicado automáticamente con la [[Special:MobileFeedback|herramienta de comentarios sobre el sitio móvil]]', |
1203 | 1329 | 'mobile-frontend-leave-feedback-thanks' => '¡Gracias por tu comentario!', |
1204 | 1330 | 'mobile-frontend-language' => 'Idioma', |
1205 | 1331 | 'mobile-frontend-username' => 'Nombre de usuario:', |
— | — | @@ -1207,6 +1333,15 @@ |
1208 | 1334 | 'mobile-frontend-placeholder' => 'Introduzca su búsqueda...', |
1209 | 1335 | 'mobile-frontend-dismiss-notification' => 'Rechazar esta notificación', |
1210 | 1336 | 'mobile-frontend-clear-search' => 'Limpiar', |
| 1337 | + 'mobile-frontend-privacy-link-text' => 'Privacidad', |
| 1338 | + 'mobile-frontend-about-link-text' => 'Aproximadamente', |
| 1339 | + 'mobile-frontend-footer-more' => 'más', |
| 1340 | + 'mobile-frontend-footer-less' => 'menos', |
| 1341 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 1342 | + 'mobile-frontend-footer-license' => 'Contenidos disponibles bajo licencia <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 1343 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Condiciones de uso</a>', |
| 1344 | + 'mobile-frontend-footer-contact' => 'Contacto', |
| 1345 | + 'mobile-frontend-unknown-option' => 'Opción no reconocida "$1".', |
1211 | 1346 | ); |
1212 | 1347 | |
1213 | 1348 | /** Estonian (Eesti) |
— | — | @@ -1221,7 +1356,7 @@ |
1222 | 1357 | 'mobile-frontend-back-to-top-of-section' => 'Mine alaosa võrra tagasi', |
1223 | 1358 | 'mobile-frontend-show-button' => 'Näita', |
1224 | 1359 | 'mobile-frontend-hide-button' => 'Peida', |
1225 | | - 'mobile-frontend-regular-site' => 'Vaata lehekülge harilikus {{GRAMMAR:inessive|{{SITENAME}}}}', |
| 1360 | + 'mobile-frontend-regular-site' => 'Tavavaade', |
1226 | 1361 | 'mobile-frontend-wml-continue' => 'Jätka...', |
1227 | 1362 | 'mobile-frontend-wml-back' => 'Tagasi...', |
1228 | 1363 | 'mobile-frontend-view' => 'Mobiilivaade', |
— | — | @@ -1300,7 +1435,8 @@ |
1301 | 1436 | 'mobile-frontend-back-to-top-of-section' => 'بازگشت به بخش قبلی', |
1302 | 1437 | 'mobile-frontend-show-button' => 'نمایش', |
1303 | 1438 | 'mobile-frontend-hide-button' => 'نهفتن', |
1304 | | - 'mobile-frontend-regular-site' => 'نمایش این صفحه در خود {{SITENAME}}', |
| 1439 | + 'mobile-frontend-empty-homepage' => 'این صفحهٔ خانگی باید پیکربندی شود. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">اطلاعات بیشتر در اینجا</a>', |
| 1440 | + 'mobile-frontend-regular-site' => 'نمایش دسکتاپ', |
1305 | 1441 | 'mobile-frontend-wml-continue' => 'ادامه...', |
1306 | 1442 | 'mobile-frontend-wml-back' => 'بازگشت...', |
1307 | 1443 | 'mobile-frontend-view' => 'نمای تلفن همراه', |
— | — | @@ -1332,10 +1468,17 @@ |
1333 | 1469 | 'mobile-frontend-placeholder' => 'برای جستجو اینجا تایپ کنید...', |
1334 | 1470 | 'mobile-frontend-dismiss-notification' => 'مرخص نمودن این اعلان', |
1335 | 1471 | 'mobile-frontend-clear-search' => 'پاککردن', |
| 1472 | + 'mobile-frontend-privacy-link-text' => 'حریم خصوصی', |
| 1473 | + 'mobile-frontend-about-link-text' => 'درباره', |
| 1474 | + 'mobile-frontend-footer-more' => 'بیشتر', |
| 1475 | + 'mobile-frontend-footer-less' => 'کمتر', |
| 1476 | + 'mobile-frontend-footer-sitename' => 'ویکیپدیا', |
| 1477 | + 'mobile-frontend-footer-contact' => 'تماس', |
1336 | 1478 | ); |
1337 | 1479 | |
1338 | 1480 | /** Finnish (Suomi) |
1339 | 1481 | * @author Crt |
| 1482 | + * @author Kulmalukko |
1340 | 1483 | * @author Nedergard |
1341 | 1484 | * @author Nike |
1342 | 1485 | * @author Olli |
— | — | @@ -1353,6 +1496,7 @@ |
1354 | 1497 | 'mobile-frontend-wml-continue' => 'Jatka...', |
1355 | 1498 | 'mobile-frontend-wml-back' => 'Takaisin...', |
1356 | 1499 | 'mobile-frontend-view' => 'Mobiilinäkymä', |
| 1500 | + 'mobile-frontend-view-desktop' => 'Työpöytä', |
1357 | 1501 | 'mobile-frontend-opt-in-message' => 'Haluatko osallistua mobiilitestiin?', |
1358 | 1502 | 'mobile-frontend-opt-in-yes-button' => 'Kyllä', |
1359 | 1503 | 'mobile-frontend-opt-in-no-button' => 'Ei', |
— | — | @@ -1380,6 +1524,9 @@ |
1381 | 1525 | 'mobile-frontend-login' => 'Kirjaudu sisään', |
1382 | 1526 | 'mobile-frontend-placeholder' => 'Kirjoita hakusi tähän...', |
1383 | 1527 | 'mobile-frontend-clear-search' => 'Tyhjennä', |
| 1528 | + 'mobile-frontend-privacy-link-text' => 'Yksityisyys', |
| 1529 | + 'mobile-frontend-footer-more' => 'lisää', |
| 1530 | + 'mobile-frontend-footer-less' => 'vähemmän', |
1384 | 1531 | ); |
1385 | 1532 | |
1386 | 1533 | /** Faroese (Føroyskt) |
— | — | @@ -1430,11 +1577,13 @@ |
1431 | 1578 | 'mobile-frontend-back-to-top-of-section' => "Revenir d'une section", |
1432 | 1579 | 'mobile-frontend-show-button' => 'Afficher', |
1433 | 1580 | 'mobile-frontend-hide-button' => 'Masquer', |
1434 | | - 'mobile-frontend-regular-site' => 'Vue du bureau', |
1435 | | - 'mobile-frontend-contact-us' => "Si vous avez des questions ou des commentaires n'hésitez pas à nous contacter à mobile@wikipedia.org", |
| 1581 | + 'mobile-frontend-empty-homepage' => 'Cette page d\'accueil doit être configurée. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">En savoir plus</a>', |
| 1582 | + 'mobile-frontend-regular-site' => 'Désactiver la version mobile', |
1436 | 1583 | 'mobile-frontend-wml-continue' => 'Continuer…', |
1437 | 1584 | 'mobile-frontend-wml-back' => 'Retour…', |
1438 | 1585 | 'mobile-frontend-view' => 'Affichage mobile', |
| 1586 | + 'mobile-frontend-view-desktop' => 'Bureau', |
| 1587 | + 'mobile-frontend-view-mobile' => 'Mobile', |
1439 | 1588 | 'mobile-frontend-opt-in-message' => 'Adhérer au beta-test mobile ?', |
1440 | 1589 | 'mobile-frontend-opt-in-yes-button' => 'oui', |
1441 | 1590 | 'mobile-frontend-opt-in-no-button' => 'non', |
— | — | @@ -1447,14 +1596,20 @@ |
1448 | 1597 | 'mobile-frontend-opt-out-explain' => "En abandonnant le beta-test mobile, vous désactiverez toutes les fonctionnalités expérimentales et reviendrez à l'expérience mobile classique.", |
1449 | 1598 | 'mobile-frontend-disable-images' => 'Désactiver les images en version mobile', |
1450 | 1599 | 'mobile-frontend-enable-images' => 'Activer les images sur le site mobile', |
| 1600 | + 'mobile-frontend-enable-images-prefix' => 'Images', |
| 1601 | + 'mobile-frontend-off' => 'OFF', |
| 1602 | + 'mobile-frontend-on' => 'ON', |
1451 | 1603 | 'mobile-frontend-news-items' => 'Actualités', |
1452 | | - 'mobile-frontend-leave-feedback-title' => 'Nous donner votre ressenti sur votre expérience du site mobile', |
| 1604 | + 'mobile-frontend-leave-feedback-title' => 'Ressenti sur le site mobile', |
1453 | 1605 | 'mobile-frontend-leave-feedback-notice' => "Votre avis nous aidera à améliorer votre expérience du site mobile. Il sera publié publiquement (avec votre nom d'utilisateur, la version de votre navigateur et votre système d'exploitation) sur la page"\$1". Merci d'essayer de choisir une ligne de sujet parlante, par ex. \"Problèmes de formatage avec les tableaux larges\". Votre avis est soumis à nos conditions d'utilisation.", |
1454 | | - 'mobile-frontend-leave-feedback-subject' => 'Sujet', |
1455 | | - 'mobile-frontend-leave-feedback-message' => 'Message', |
| 1606 | + 'mobile-frontend-leave-feedback-subject' => 'Sujet:', |
| 1607 | + 'mobile-frontend-leave-feedback-message' => 'Message:', |
1456 | 1608 | 'mobile-frontend-leave-feedback-submit' => 'Soumettre son ressenti', |
1457 | 1609 | 'mobile-frontend-leave-feedback-link-text' => 'ressenti du frontal Mobile', |
1458 | 1610 | 'mobile-frontend-leave-feedback' => 'Laisser son ressenti', |
| 1611 | + 'mobile-frontend-feedback-no-subject' => '(aucun sujet)', |
| 1612 | + 'mobile-frontend-feedback-no-message' => 'Veuillez entrer un message ici', |
| 1613 | + 'mobile-frontend-feedback-edit-summary' => "$1 - publié automatiquement en utilisant l'[[Special:MobileFeedback|outil de commentaires mobile]]", |
1459 | 1614 | 'mobile-frontend-leave-feedback-thanks' => 'Merci pour votre avis!', |
1460 | 1615 | 'mobile-frontend-language' => 'Langue', |
1461 | 1616 | 'mobile-frontend-username' => "Nom d'utilisateur:", |
— | — | @@ -1463,6 +1618,15 @@ |
1464 | 1619 | 'mobile-frontend-placeholder' => 'Tapez votre recherche ici...', |
1465 | 1620 | 'mobile-frontend-dismiss-notification' => 'rejeter cette notification', |
1466 | 1621 | 'mobile-frontend-clear-search' => 'Effacer', |
| 1622 | + 'mobile-frontend-privacy-link-text' => 'Confidentialité', |
| 1623 | + 'mobile-frontend-about-link-text' => 'À propos', |
| 1624 | + 'mobile-frontend-footer-more' => 'plus', |
| 1625 | + 'mobile-frontend-footer-less' => 'moins', |
| 1626 | + 'mobile-frontend-footer-sitename' => 'Wikipédia', |
| 1627 | + 'mobile-frontend-footer-license' => 'Contenu disponible sous <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 1628 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Conditions d\'utilisation</a>', |
| 1629 | + 'mobile-frontend-footer-contact' => 'Contact', |
| 1630 | + 'mobile-frontend-unknown-option' => 'Option "$1" non reconnue.', |
1467 | 1631 | ); |
1468 | 1632 | |
1469 | 1633 | /** Franco-Provençal (Arpetan) |
— | — | @@ -1548,10 +1712,13 @@ |
1549 | 1713 | 'mobile-frontend-back-to-top-of-section' => 'Volver ao comezo da sección', |
1550 | 1714 | 'mobile-frontend-show-button' => 'Mostrar', |
1551 | 1715 | 'mobile-frontend-hide-button' => 'Agochar', |
| 1716 | + 'mobile-frontend-empty-homepage' => 'Cómpre configurar a páxina de inicio. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Máis información</a>', |
1552 | 1717 | 'mobile-frontend-regular-site' => 'Vista normal', |
1553 | 1718 | 'mobile-frontend-wml-continue' => 'Continuar...', |
1554 | 1719 | 'mobile-frontend-wml-back' => 'Volver...', |
1555 | 1720 | 'mobile-frontend-view' => 'Vista móbil', |
| 1721 | + 'mobile-frontend-view-desktop' => 'Escritorio', |
| 1722 | + 'mobile-frontend-view-mobile' => 'Móbil', |
1556 | 1723 | 'mobile-frontend-opt-in-message' => 'Quere unirse ás probas da versión móbil?', |
1557 | 1724 | 'mobile-frontend-opt-in-yes-button' => 'si', |
1558 | 1725 | 'mobile-frontend-opt-in-no-button' => 'non', |
— | — | @@ -1564,14 +1731,20 @@ |
1565 | 1732 | 'mobile-frontend-opt-out-explain' => 'Ao deixar as probas da versión móbil desactivará todas as características experimentais e volverá á interface móbil clásica.', |
1566 | 1733 | 'mobile-frontend-disable-images' => 'Desactivar as imaxes na versión móbil', |
1567 | 1734 | 'mobile-frontend-enable-images' => 'Activar as imaxes na versión móbil', |
| 1735 | + 'mobile-frontend-enable-images-prefix' => 'Imaxes', |
| 1736 | + 'mobile-frontend-off' => 'DESACTIVADAS', |
| 1737 | + 'mobile-frontend-on' => 'ACTIVADAS', |
1568 | 1738 | 'mobile-frontend-news-items' => 'Actualidade', |
1569 | | - 'mobile-frontend-leave-feedback-title' => 'Deixe comentarios sobre a experiencia coa versión móbil', |
| 1739 | + 'mobile-frontend-leave-feedback-title' => 'Comentarios sobre a versión móbil', |
1570 | 1740 | 'mobile-frontend-leave-feedback-notice' => 'Os seus comentarios axúdannos a mellorar a súa experiencia na versión móbil. Faremos os comentarios públicos (xunto ao seu nome de usuario, versión do navegador e sistema operativo) na páxina "$1". Intente elixir unha liña de asunto informativa; por exemplo, "Problemas de formato co largo das táboas". Os seus comentarios están suxeitos aos nosos termos de uso.', |
1571 | | - 'mobile-frontend-leave-feedback-subject' => 'Asunto', |
1572 | | - 'mobile-frontend-leave-feedback-message' => 'Mensaxe', |
| 1741 | + 'mobile-frontend-leave-feedback-subject' => 'Asunto:', |
| 1742 | + 'mobile-frontend-leave-feedback-message' => 'Mensaxe:', |
1573 | 1743 | 'mobile-frontend-leave-feedback-submit' => 'Enviar os comentarios', |
1574 | 1744 | 'mobile-frontend-leave-feedback-link-text' => 'Extensión para deixar comentarios sobre a versión móbil', |
1575 | 1745 | 'mobile-frontend-leave-feedback' => 'Comentarios sobre a versión móbil', |
| 1746 | + 'mobile-frontend-feedback-no-subject' => '(sen asunto)', |
| 1747 | + 'mobile-frontend-feedback-no-message' => 'Escriba aquí unha mensaxe', |
| 1748 | + 'mobile-frontend-feedback-edit-summary' => '$1 - publicado automaticamente mediante a [[Special:MobileFeedback|ferramenta de comentarios sobre a versión móbil]]', |
1576 | 1749 | 'mobile-frontend-leave-feedback-thanks' => 'Grazas polos seus comentarios!', |
1577 | 1750 | 'mobile-frontend-language' => 'Lingua', |
1578 | 1751 | 'mobile-frontend-username' => 'Nome de usuario:', |
— | — | @@ -1580,6 +1753,15 @@ |
1581 | 1754 | 'mobile-frontend-placeholder' => 'Insira a súa procura aquí...', |
1582 | 1755 | 'mobile-frontend-dismiss-notification' => 'agochar esta notificación', |
1583 | 1756 | 'mobile-frontend-clear-search' => 'Limpar', |
| 1757 | + 'mobile-frontend-privacy-link-text' => 'Protección de datos', |
| 1758 | + 'mobile-frontend-about-link-text' => 'Acerca de', |
| 1759 | + 'mobile-frontend-footer-more' => 'máis', |
| 1760 | + 'mobile-frontend-footer-less' => 'menos', |
| 1761 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 1762 | + 'mobile-frontend-footer-license' => 'Os contidos están dispoñibles baixo a licenza <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 1763 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Termos de uso</a>', |
| 1764 | + 'mobile-frontend-footer-contact' => 'Contacto', |
| 1765 | + 'mobile-frontend-unknown-option' => 'Non se recoñece a opción "$1"', |
1584 | 1766 | ); |
1585 | 1767 | |
1586 | 1768 | /** Ancient Greek (Ἀρχαία ἑλληνικὴ) |
— | — | @@ -1677,7 +1859,7 @@ |
1678 | 1860 | 'mobile-frontend-password' => 'પાસવર્ડ:', |
1679 | 1861 | 'mobile-frontend-login' => 'પ્રવેશ કરો', |
1680 | 1862 | 'mobile-frontend-placeholder' => 'તમારી શોધ અહીં લખો...', |
1681 | | - 'mobile-frontend-dismiss-notification' => 'આ સૂચના રદ્દ કરો', |
| 1863 | + 'mobile-frontend-dismiss-notification' => 'આ સૂચનાનું વિસર્જન કરો', |
1682 | 1864 | ); |
1683 | 1865 | |
1684 | 1866 | /** Manx (Gaelg) */ |
— | — | @@ -1731,10 +1913,13 @@ |
1732 | 1914 | 'mobile-frontend-back-to-top-of-section' => 'חזרה לקטע הקודם', |
1733 | 1915 | 'mobile-frontend-show-button' => 'הצגה', |
1734 | 1916 | 'mobile-frontend-hide-button' => 'הסתרה', |
| 1917 | + 'mobile-frontend-empty-homepage' => 'יש לבצע הגדרות מתאימות לדף הבית הזה. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">למידע נוסף</a>', |
1735 | 1918 | 'mobile-frontend-regular-site' => 'תצוגה למחשבים', |
1736 | 1919 | 'mobile-frontend-wml-continue' => 'המשך...', |
1737 | 1920 | 'mobile-frontend-wml-back' => 'חזרה...', |
1738 | 1921 | 'mobile-frontend-view' => 'תצוגה למכשירים ניידים', |
| 1922 | + 'mobile-frontend-view-desktop' => 'תצוגת מחשבים', |
| 1923 | + 'mobile-frontend-view-mobile' => 'תצוגת מכשירים ניידים', |
1739 | 1924 | 'mobile-frontend-opt-in-message' => 'להצטרף לגרסת הבטא של האתר למכשירים ניידים?', |
1740 | 1925 | 'mobile-frontend-opt-in-yes-button' => 'כן', |
1741 | 1926 | 'mobile-frontend-opt-in-no-button' => 'לא', |
— | — | @@ -1747,14 +1932,20 @@ |
1748 | 1933 | 'mobile-frontend-opt-out-explain' => 'על־ידי עזיבת גרסת הבטא, תכבו את כל היכולות הניסיוניות ותחזרו לאתר הישן למכשירים ניידים.', |
1749 | 1934 | 'mobile-frontend-disable-images' => 'לכבות תמונות באתר למכשירים ניידים', |
1750 | 1935 | 'mobile-frontend-enable-images' => 'להפעיל תצוגת תמונות באתר למכשירים ניידים', |
| 1936 | + 'mobile-frontend-enable-images-prefix' => 'תמונות', |
| 1937 | + 'mobile-frontend-off' => 'כבויות', |
| 1938 | + 'mobile-frontend-on' => 'מופעלות', |
1751 | 1939 | 'mobile-frontend-news-items' => 'בחדשות', |
1752 | | - 'mobile-frontend-leave-feedback-title' => 'שליחת משוב על חוויית משתמש באתר למכשירים ניידים', |
| 1940 | + 'mobile-frontend-leave-feedback-title' => 'משוב על האתר למכשירים ניידים', |
1753 | 1941 | 'mobile-frontend-leave-feedback-notice' => 'המשוב שלך עוזר לנו לספר את חוויית השימוש באתר למכשירים ניידים. הוא יישלח באופן פומבי (יחד עם שם המשתמש שלך, גרסה הדפדפן ומערכת ההפעלה), לדף "$1". נא לרשום משהו ברור בשורת הנושא, למשל "יש בעיית עיצוב עם טבלאות". המשוב שלכם כפוף לתנאי השימוש.', |
1754 | | - 'mobile-frontend-leave-feedback-subject' => 'נושא', |
1755 | | - 'mobile-frontend-leave-feedback-message' => 'הודעה', |
| 1942 | + 'mobile-frontend-leave-feedback-subject' => 'נושא:', |
| 1943 | + 'mobile-frontend-leave-feedback-message' => 'הודעה:', |
1756 | 1944 | 'mobile-frontend-leave-feedback-submit' => 'שליחת משוב', |
1757 | 1945 | 'mobile-frontend-leave-feedback-link-text' => 'שליחת משוב על הממשק למכשירים ניידים', |
1758 | 1946 | 'mobile-frontend-leave-feedback' => 'שליחת משוב', |
| 1947 | + 'mobile-frontend-feedback-no-subject' => '(ללא נושא)', |
| 1948 | + 'mobile-frontend-feedback-no-message' => 'נא להזין הודעה', |
| 1949 | + 'mobile-frontend-feedback-edit-summary' => '$1 – נשלח באופן אוטומטי באמצעות [[Special:MobileFeedback|כלי המשוב למכשירים ניידים]]', |
1759 | 1950 | 'mobile-frontend-leave-feedback-thanks' => 'תודה על המשוב!', |
1760 | 1951 | 'mobile-frontend-language' => 'שפה', |
1761 | 1952 | 'mobile-frontend-username' => 'שם משתמש:', |
— | — | @@ -1763,50 +1954,60 @@ |
1764 | 1955 | 'mobile-frontend-placeholder' => 'הקלידו את מילות החיפוש כאן...', |
1765 | 1956 | 'mobile-frontend-dismiss-notification' => 'הסתרת ההודעה הזאת', |
1766 | 1957 | 'mobile-frontend-clear-search' => 'ניקוי', |
| 1958 | + 'mobile-frontend-privacy-link-text' => 'פרטיות', |
| 1959 | + 'mobile-frontend-about-link-text' => 'אודות', |
| 1960 | + 'mobile-frontend-footer-more' => 'עוד', |
| 1961 | + 'mobile-frontend-footer-less' => 'פחות', |
| 1962 | + 'mobile-frontend-footer-sitename' => 'ויקיפדיה', |
| 1963 | + 'mobile-frontend-footer-license' => 'התוכן זמין לפי תנאי רישיון <a href="https://www.mediawiki.org//he.m.wikipedia.org/wiki/ויקיפדיה:רישיון_Creative_Commons_ייחוס-שיתוף_זהה_3.0_לא_מותאם?useformat=mobile">CC BY-SA 3.0</a>', |
| 1964 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">תנאי שימוש</a>', |
| 1965 | + 'mobile-frontend-footer-contact' => 'יצירת קשר', |
| 1966 | + 'mobile-frontend-unknown-option' => 'אפשרות בלתי־ידועה "$1".', |
1767 | 1967 | ); |
1768 | 1968 | |
1769 | 1969 | /** Hindi (हिन्दी) |
1770 | 1970 | * @author Ankitgadgil |
1771 | 1971 | * @author Ansumang |
| 1972 | + * @author Siddhartha Ghai |
1772 | 1973 | */ |
1773 | 1974 | $messages['hi'] = array( |
1774 | | - 'mobile-frontend-desc' => 'मोबाइल फ्रंटएंड', |
| 1975 | + 'mobile-frontend-desc' => 'मोबाइल फ़्रंटएंड', |
1775 | 1976 | 'mobile-frontend-search-submit' => 'जाएँ', |
1776 | | - 'mobile-frontend-featured-article' => 'आज का विशेष लेख', |
| 1977 | + 'mobile-frontend-featured-article' => 'आज का निर्वाचित लेख', |
1777 | 1978 | 'mobile-frontend-home-button' => 'गृह', |
1778 | 1979 | 'mobile-frontend-random-button' => 'बेतरतीब', |
1779 | | - 'mobile-frontend-back-to-top-of-section' => 'पीछला अनुभाग', |
1780 | | - 'mobile-frontend-show-button' => 'दिखायें', |
1781 | | - 'mobile-frontend-hide-button' => 'छुपायें', |
1782 | | - 'mobile-frontend-regular-site' => 'यह पेज नियमित {{SITENAME}} में देखें', |
| 1980 | + 'mobile-frontend-back-to-top-of-section' => 'पिछला अनुभाग', |
| 1981 | + 'mobile-frontend-show-button' => 'दिखाएँ', |
| 1982 | + 'mobile-frontend-hide-button' => 'छुपाएँ', |
| 1983 | + 'mobile-frontend-regular-site' => 'डेस्कटॉप दृश्य', |
1783 | 1984 | 'mobile-frontend-wml-continue' => 'जारी रखें ...', |
1784 | 1985 | 'mobile-frontend-wml-back' => 'वापस ...', |
1785 | 1986 | 'mobile-frontend-view' => 'मोबाइल दृश्य', |
1786 | 1987 | 'mobile-frontend-opt-in-message' => 'मोबाइल बीटा में शामिल हो?', |
1787 | 1988 | 'mobile-frontend-opt-in-yes-button' => 'हाँ', |
1788 | 1989 | 'mobile-frontend-opt-in-no-button' => 'नहीं', |
1789 | | - 'mobile-frontend-opt-in-title' => 'मोबाइल बीटा अप्ट-इन', |
1790 | | - 'mobile-frontend-opt-in-explain' => 'बीटा में शामिल होने से, आपको प्रयोगात्मक विशेषताओं को उपयोग मिलेगी, तथा प्रोग्राम में त्रुटि और मुद्दों का सामना कर पाएंगे ।', |
| 1990 | + 'mobile-frontend-opt-in-title' => 'मोबाइल बीटा ऑप्ट-इन', |
| 1991 | + 'mobile-frontend-opt-in-explain' => 'बीटा में शामिल होने से आपको प्रयोगात्मक विशेषताएँ दिखाई जाएँगी, तथा प्रोग्राम में त्रुटियाँ और समस्याएँ आने का खतरा होगा।', |
1791 | 1992 | 'mobile-frontend-opt-out-message' => 'मोबाइल बीटा छोड़ दें?', |
1792 | 1993 | 'mobile-frontend-opt-out-yes-button' => 'हाँ', |
1793 | 1994 | 'mobile-frontend-opt-out-no-button' => 'नहीं', |
1794 | | - 'mobile-frontend-opt-out-title' => 'मोबाइल बीटा अप्ट-आउट', |
1795 | | - 'mobile-frontend-opt-out-explain' => 'बीटा छोड़ने से, आपको प्रयोगात्मक विशेषताओं की उपयोग से हटा दीजाएगी और क्लासिक मोबाइल अनुभव उपलब्ध होगा ।', |
| 1995 | + 'mobile-frontend-opt-out-title' => 'मोबाइल बीटा ऑप्ट-आउट', |
| 1996 | + 'mobile-frontend-opt-out-explain' => 'बीटा छोड़ने से आप सभी प्रयोगात्मक विशेषताओं को अक्षम कर देंगे और क्लासिक मोबाइल अनुभव पर वापिस चले जाएँगे।', |
1796 | 1997 | 'mobile-frontend-disable-images' => 'मोबाइल साइट पर छवियों को अक्षम करें', |
1797 | 1998 | 'mobile-frontend-enable-images' => 'मोबाइल साइट पर छवियों को सक्षम करें', |
1798 | 1999 | 'mobile-frontend-news-items' => 'समाचार में', |
1799 | | - 'mobile-frontend-leave-feedback-title' => 'आपकी मोबाइल साइट अनुभव का प्रतिक्रिया दें', |
| 2000 | + 'mobile-frontend-leave-feedback-title' => 'अपने मोबाइल साइट के अनुभव पर प्रतिक्रिया दें', |
1800 | 2001 | 'mobile-frontend-leave-feedback-subject' => 'विषय', |
1801 | 2002 | 'mobile-frontend-leave-feedback-message' => 'संदेश', |
1802 | 2003 | 'mobile-frontend-leave-feedback-submit' => 'प्रतिक्रिया भेजें', |
1803 | | - 'mobile-frontend-leave-feedback-link-text' => 'मोबाइल फ्रंटएंड एक्सटेंनशन प्रतिक्रिया', |
| 2004 | + 'mobile-frontend-leave-feedback-link-text' => 'मोबाइल फ़्रंटएंड एक्स्टेंशन प्रतिक्रिया', |
1804 | 2005 | 'mobile-frontend-leave-feedback' => 'मोबाइल साइट पे सुझाव', |
1805 | | - 'mobile-frontend-leave-feedback-thanks' => 'धन्यवाद, आपकी प्रतिक्रिया के लिए!', |
| 2006 | + 'mobile-frontend-leave-feedback-thanks' => 'प्रतिक्रिया के लिए धन्यवाद!', |
1806 | 2007 | 'mobile-frontend-language' => 'भाषा', |
1807 | 2008 | 'mobile-frontend-username' => 'सदस्य नाम:', |
1808 | | - 'mobile-frontend-password' => 'पासवर्ड:', |
| 2009 | + 'mobile-frontend-password' => 'कूटशब्द:', |
1809 | 2010 | 'mobile-frontend-login' => 'लॉग इन', |
1810 | | - 'mobile-frontend-placeholder' => 'खोज के लिए यहाँ टाइप करें...', |
| 2011 | + 'mobile-frontend-placeholder' => 'खोज शब्द यहाँ टाइप करें...', |
1811 | 2012 | ); |
1812 | 2013 | |
1813 | 2014 | /** Hiligaynon (Ilonggo) */ |
— | — | @@ -1844,10 +2045,13 @@ |
1845 | 2046 | 'mobile-frontend-back-to-top-of-section' => 'Wotrězk wróćo skočić', |
1846 | 2047 | 'mobile-frontend-show-button' => 'Pokazać', |
1847 | 2048 | 'mobile-frontend-hide-button' => 'Schować', |
| 2049 | + 'mobile-frontend-empty-homepage' => 'Tuta startowa strona dyrbi so konfigurować. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Dalše informacije tu</a>', |
1848 | 2050 | 'mobile-frontend-regular-site' => 'Klasiski napohlad', |
1849 | 2051 | 'mobile-frontend-wml-continue' => 'Dale ...', |
1850 | 2052 | 'mobile-frontend-wml-back' => 'Wróćo ...', |
1851 | 2053 | 'mobile-frontend-view' => 'Mobilny napohlad', |
| 2054 | + 'mobile-frontend-view-desktop' => 'Desktop', |
| 2055 | + 'mobile-frontend-view-mobile' => 'Mobilny', |
1852 | 2056 | 'mobile-frontend-opt-in-message' => 'Na beta-tesće so wobdźělić?', |
1853 | 2057 | 'mobile-frontend-opt-in-yes-button' => 'haj', |
1854 | 2058 | 'mobile-frontend-opt-in-no-button' => 'ně', |
— | — | @@ -1860,14 +2064,20 @@ |
1861 | 2065 | 'mobile-frontend-opt-out-explain' => 'Hdyž wobdźělenje na mobilnym betatesće skónčiš, znjemóžniš wšě eksperimentelne funkcije a wróćiš so ke klasiskim funkcijam.', |
1862 | 2066 | 'mobile-frontend-disable-images' => 'Wobrazy w mobilnym napohledźe znjemóžnić', |
1863 | 2067 | 'mobile-frontend-enable-images' => 'Wobrazy w mobilnym napohledźe zmóžnić', |
| 2068 | + 'mobile-frontend-enable-images-prefix' => 'Wobrazy', |
| 2069 | + 'mobile-frontend-off' => 'WUPINJENY', |
| 2070 | + 'mobile-frontend-on' => 'ZAPINJENY', |
1864 | 2071 | 'mobile-frontend-news-items' => 'W powěsćach', |
1865 | | - 'mobile-frontend-leave-feedback-title' => 'Zdźěl nam swoje nazhonjenja z mobilnym sydłom', |
| 2072 | + 'mobile-frontend-leave-feedback-title' => 'Komentary wo mobilnym sydle', |
1866 | 2073 | 'mobile-frontend-leave-feedback-notice' => 'Twoje komentary pomhaja nam mobilne sydło polěpšić. Wozjewja so z wužiwarskim mjenom, wersiju wobhladowaka a dźěłowym systemom na stronje "$1". Prošu wubjer wuprajiwu temu, na př. "Problemy při formatowanju tabelow". Twoje komentary podleža našim wužiwarskim wuměnjenjam.', |
1867 | | - 'mobile-frontend-leave-feedback-subject' => 'Tema', |
1868 | | - 'mobile-frontend-leave-feedback-message' => 'Powěsć', |
| 2074 | + 'mobile-frontend-leave-feedback-subject' => 'Tema:', |
| 2075 | + 'mobile-frontend-leave-feedback-message' => 'Powěsć:', |
1869 | 2076 | 'mobile-frontend-leave-feedback-submit' => 'Komentar wotpósłać', |
1870 | 2077 | 'mobile-frontend-leave-feedback-link-text' => 'Komentary k rozšěrjenju MobileFrontend', |
1871 | 2078 | 'mobile-frontend-leave-feedback' => 'Komentary wo mobilnym sydle', |
| 2079 | + 'mobile-frontend-feedback-no-subject' => '(žana tema)', |
| 2080 | + 'mobile-frontend-feedback-no-message' => 'Prošu zapodaj tu zdźělenku', |
| 2081 | + 'mobile-frontend-feedback-edit-summary' => '$1 - z [[Special:MobileFeedback|mobilnym komentarowym nastrojom]] awtomatisce rozpósłany', |
1872 | 2082 | 'mobile-frontend-leave-feedback-thanks' => 'Dźakujemy so za twój komentar!', |
1873 | 2083 | 'mobile-frontend-language' => 'Rěč', |
1874 | 2084 | 'mobile-frontend-username' => 'Wužiwarske mjeno:', |
— | — | @@ -1876,6 +2086,15 @@ |
1877 | 2087 | 'mobile-frontend-placeholder' => 'Zapodaj tu swoje pytanje...', |
1878 | 2088 | 'mobile-frontend-dismiss-notification' => 'Tute zdźělenje zaćisnyć', |
1879 | 2089 | 'mobile-frontend-clear-search' => 'Wuprózdnić', |
| 2090 | + 'mobile-frontend-privacy-link-text' => 'Priwatnosć', |
| 2091 | + 'mobile-frontend-about-link-text' => 'Wo', |
| 2092 | + 'mobile-frontend-footer-more' => 'wjace', |
| 2093 | + 'mobile-frontend-footer-less' => 'mjenje', |
| 2094 | + 'mobile-frontend-footer-sitename' => 'Wikipedija', |
| 2095 | + 'mobile-frontend-footer-license' => 'Wobsah steji pod licencu <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a> k dispoziciji', |
| 2096 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Wužiwanske wuměnjenja</a>', |
| 2097 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
| 2098 | + 'mobile-frontend-unknown-option' => 'Njespóznata opcija "$1".', |
1880 | 2099 | ); |
1881 | 2100 | |
1882 | 2101 | /** Hungarian (Magyar) |
— | — | @@ -1942,10 +2161,13 @@ |
1943 | 2162 | 'mobile-frontend-back-to-top-of-section' => 'Retroceder un section', |
1944 | 2163 | 'mobile-frontend-show-button' => 'Monstrar', |
1945 | 2164 | 'mobile-frontend-hide-button' => 'Celar', |
| 2165 | + 'mobile-frontend-empty-homepage' => 'Iste pagina initial debe esser configurate. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Plus information</a>', |
1946 | 2166 | 'mobile-frontend-regular-site' => 'Vista normal', |
1947 | 2167 | 'mobile-frontend-wml-continue' => 'Continuar ...', |
1948 | 2168 | 'mobile-frontend-wml-back' => 'Retornar…', |
1949 | 2169 | 'mobile-frontend-view' => 'Version mobile', |
| 2170 | + 'mobile-frontend-view-desktop' => 'Scriptorio', |
| 2171 | + 'mobile-frontend-view-mobile' => 'Mobile', |
1950 | 2172 | 'mobile-frontend-opt-in-message' => 'Participar al beta-test mobile?', |
1951 | 2173 | 'mobile-frontend-opt-in-yes-button' => 'si', |
1952 | 2174 | 'mobile-frontend-opt-in-no-button' => 'no', |
— | — | @@ -1958,14 +2180,20 @@ |
1959 | 2181 | 'mobile-frontend-opt-out-explain' => 'Per quitar le beta-test mobile, tu disactivara tote le functionalitate experimental e retornara al interfacie mobile classic.', |
1960 | 2182 | 'mobile-frontend-disable-images' => 'Disactivar imagines in sito mobile', |
1961 | 2183 | 'mobile-frontend-enable-images' => 'Activar imagines in sito mobile', |
| 2184 | + 'mobile-frontend-enable-images-prefix' => 'Imagines', |
| 2185 | + 'mobile-frontend-off' => 'CLAUDITE', |
| 2186 | + 'mobile-frontend-on' => 'APERITE', |
1962 | 2187 | 'mobile-frontend-news-items' => 'Actualitates', |
1963 | | - 'mobile-frontend-leave-feedback-title' => 'Evaluta e commenta tu experientia del sito mobile', |
| 2188 | + 'mobile-frontend-leave-feedback-title' => 'Evalutation sur le sito mobile', |
1964 | 2189 | 'mobile-frontend-leave-feedback-notice' => 'Tu commentario nos adjuta a meliorar tu experientia del sito mobile. Illo essera publicate in le pagina "$1", con tu nomine de usator, version de navigator e systema de operation. Per favor tenta eliger un linea de subjecto informative, p.ex. "Problema con le formatation de tabellas large". Le evalutation que tu invia es subjecte a nostre conditiones de uso.', |
1965 | | - 'mobile-frontend-leave-feedback-subject' => 'Subjecto', |
1966 | | - 'mobile-frontend-leave-feedback-message' => 'Message', |
| 2190 | + 'mobile-frontend-leave-feedback-subject' => 'Subjecto:', |
| 2191 | + 'mobile-frontend-leave-feedback-message' => 'Message:', |
1967 | 2192 | 'mobile-frontend-leave-feedback-submit' => 'Submitter opinion', |
1968 | 2193 | 'mobile-frontend-leave-feedback-link-text' => 'Commentario sur Mobile Frontend', |
1969 | 2194 | 'mobile-frontend-leave-feedback' => 'Evalutation sur le sito mobile', |
| 2195 | + 'mobile-frontend-feedback-no-subject' => '(sin subjecto)', |
| 2196 | + 'mobile-frontend-feedback-no-message' => 'Per favor entra un message hic', |
| 2197 | + 'mobile-frontend-feedback-edit-summary' => '$1 - automaticamente publicate usante le [[Special:MobileFeedback|instrumento de evalutation mobile]]', |
1970 | 2198 | 'mobile-frontend-leave-feedback-thanks' => 'Gratias pro tu commentario!', |
1971 | 2199 | 'mobile-frontend-language' => 'Lingua', |
1972 | 2200 | 'mobile-frontend-username' => 'Nomine de usator:', |
— | — | @@ -1974,6 +2202,15 @@ |
1975 | 2203 | 'mobile-frontend-placeholder' => 'Entra un recerca hic...', |
1976 | 2204 | 'mobile-frontend-dismiss-notification' => 'clauder iste notification', |
1977 | 2205 | 'mobile-frontend-clear-search' => 'Rader', |
| 2206 | + 'mobile-frontend-privacy-link-text' => 'Confidentialitate', |
| 2207 | + 'mobile-frontend-about-link-text' => 'A proposito', |
| 2208 | + 'mobile-frontend-footer-more' => 'plus', |
| 2209 | + 'mobile-frontend-footer-less' => 'minus', |
| 2210 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 2211 | + 'mobile-frontend-footer-license' => 'Contento disponibile sub <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 2212 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Conditiones de uso</a>', |
| 2213 | + 'mobile-frontend-footer-contact' => 'Contacto', |
| 2214 | + 'mobile-frontend-unknown-option' => 'Option "$1" non recognoscite.', |
1978 | 2215 | ); |
1979 | 2216 | |
1980 | 2217 | /** Indonesian (Bahasa Indonesia) |
— | — | @@ -2042,7 +2279,8 @@ |
2043 | 2280 | 'mobile-frontend-back-to-top-of-section' => 'Agsubli idiay maysa a paset', |
2044 | 2281 | 'mobile-frontend-show-button' => 'Ipakita', |
2045 | 2282 | 'mobile-frontend-hide-button' => 'Ilemmeng', |
2046 | | - 'mobile-frontend-regular-site' => 'Kitaen daytoy a panid iti kadawyan nga {{SITENAME}}', |
| 2283 | + 'mobile-frontend-empty-homepage' => 'Daytoy balay a panid ket nasken a maparnuay. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Agbasa pay ti adu ditoy</a>', |
| 2284 | + 'mobile-frontend-regular-site' => 'Desktop a panagkita', |
2047 | 2285 | 'mobile-frontend-wml-continue' => 'Agtuloy...', |
2048 | 2286 | 'mobile-frontend-wml-back' => 'Agsubli...', |
2049 | 2287 | 'mobile-frontend-view' => 'Nakuti a panagkita', |
— | — | @@ -2074,6 +2312,14 @@ |
2075 | 2313 | 'mobile-frontend-login' => 'Sumrek', |
2076 | 2314 | 'mobile-frontend-placeholder' => 'Imakinilia dagiti birukem ditoy...', |
2077 | 2315 | 'mobile-frontend-dismiss-notification' => 'pugsayen daytoy a paammo', |
| 2316 | + 'mobile-frontend-clear-search' => 'Dalusan', |
| 2317 | + 'mobile-frontend-privacy-link-text' => 'Panaka-pribado', |
| 2318 | + 'mobile-frontend-about-link-text' => 'Maipanggep', |
| 2319 | + 'mobile-frontend-footer-more' => 'adu pay', |
| 2320 | + 'mobile-frontend-footer-less' => 'basbassit', |
| 2321 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 2322 | + 'mobile-frontend-footer-license' => 'Ti linaon ket magun-od babaen ti <a href="http://wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a><br /><a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Dagiti kondision ti panag-usar</a>', |
| 2323 | + 'mobile-frontend-footer-contact' => 'Pagdamagan', |
2078 | 2324 | ); |
2079 | 2325 | |
2080 | 2326 | /** Ingush (ГІалгІай Ğalğaj) |
— | — | @@ -2090,26 +2336,48 @@ |
2091 | 2337 | |
2092 | 2338 | /** Icelandic (Íslenska) |
2093 | 2339 | * @author Maxí |
| 2340 | + * @author Snævar |
2094 | 2341 | */ |
2095 | 2342 | $messages['is'] = array( |
2096 | 2343 | 'mobile-frontend-search-submit' => 'Áfram', |
2097 | 2344 | 'mobile-frontend-featured-article' => 'Grein mánaðarins', |
2098 | 2345 | 'mobile-frontend-home-button' => 'Forsíða', |
2099 | 2346 | 'mobile-frontend-random-button' => 'Handahófsvalið', |
| 2347 | + 'mobile-frontend-back-to-top-of-section' => 'Fara til baka', |
2100 | 2348 | 'mobile-frontend-show-button' => 'Sýna', |
2101 | 2349 | 'mobile-frontend-hide-button' => 'Fela', |
2102 | | - 'mobile-frontend-regular-site' => 'Sýna þessa síða á venjulegri Wikipediu', |
| 2350 | + 'mobile-frontend-regular-site' => 'Skoða aðalvef', |
2103 | 2351 | 'mobile-frontend-wml-continue' => 'Áfram…', |
2104 | 2352 | 'mobile-frontend-wml-back' => 'Til baka…', |
2105 | 2353 | 'mobile-frontend-view' => 'Farsímaútgáfa', |
| 2354 | + 'mobile-frontend-opt-in-message' => 'Viltu taka þátt í beta prófun?', |
| 2355 | + 'mobile-frontend-opt-in-yes-button' => 'Já', |
| 2356 | + 'mobile-frontend-opt-in-no-button' => 'Nei', |
| 2357 | + 'mobile-frontend-opt-in-title' => 'Þáttaka í beta prófun', |
| 2358 | + 'mobile-frontend-opt-in-explain' => 'Með því að taka þátt í beta prófun, munt þú fá aðgang að tilrauna möguleikum sem hafa mögulegar villur eða vandamál.', |
| 2359 | + 'mobile-frontend-opt-out-message' => 'Hætta í beta prófun?', |
| 2360 | + 'mobile-frontend-opt-out-yes-button' => 'Já', |
| 2361 | + 'mobile-frontend-opt-out-no-button' => 'Nei', |
| 2362 | + 'mobile-frontend-opt-out-title' => 'Hætta í beta prófun', |
| 2363 | + 'mobile-frontend-opt-out-explain' => 'Með því að hætta beta prófun, verða allir tilrauna möguleikar afvirkjaðir og þú munt fara aftur á hefðbundna farsímaútgáfu.', |
2106 | 2364 | 'mobile-frontend-disable-images' => 'Fela myndir á farsímasíðunni', |
2107 | 2365 | 'mobile-frontend-enable-images' => 'Sýna myndir á farsímasíðunni', |
| 2366 | + 'mobile-frontend-news-items' => 'Í fréttum', |
| 2367 | + 'mobile-frontend-leave-feedback-title' => 'Skilja eftir svörun um farsímaútgáfuna', |
2108 | 2368 | 'mobile-frontend-leave-feedback-subject' => 'Efni', |
2109 | 2369 | 'mobile-frontend-leave-feedback-message' => 'Skilaboð', |
| 2370 | + 'mobile-frontend-leave-feedback-submit' => 'Senda svörun', |
| 2371 | + 'mobile-frontend-leave-feedback-link-text' => 'Skilja eftir svörun um MobileFrontend viðbótina', |
| 2372 | + 'mobile-frontend-leave-feedback' => 'Skilja eftir svörun um farsímaútgáfu', |
2110 | 2373 | 'mobile-frontend-language' => 'Tungumál', |
2111 | 2374 | 'mobile-frontend-username' => 'Notandanafn:', |
2112 | 2375 | 'mobile-frontend-password' => 'Aðgangsorð:', |
2113 | 2376 | 'mobile-frontend-login' => 'Skrá inn', |
| 2377 | + 'mobile-frontend-placeholder' => 'Leita', |
| 2378 | + 'mobile-frontend-dismiss-notification' => 'sleppa þessari áminningu', |
| 2379 | + 'mobile-frontend-clear-search' => 'Hreinsa', |
| 2380 | + 'mobile-frontend-privacy-link-text' => 'Persónuvernd', |
| 2381 | + 'mobile-frontend-about-link-text' => 'Um', |
2114 | 2382 | ); |
2115 | 2383 | |
2116 | 2384 | /** Italian (Italiano) |
— | — | @@ -2128,9 +2396,6 @@ |
2129 | 2397 | 'mobile-frontend-show-button' => 'Mostra', |
2130 | 2398 | 'mobile-frontend-hide-button' => 'Nascondi', |
2131 | 2399 | 'mobile-frontend-regular-site' => 'Vista desktop', |
2132 | | - 'mobile-frontend-explain-disable' => "Vuoi davvero disabilitare la versione mobile di {{SITENAME}}? Se scegli <b>Disabilita</b>, d'ora in poi ogni volta che visiti {{SITENAME}} non sarai più reindirizzato alla versione mobile di {{SITENAME}}.", |
2133 | | - 'mobile-frontend-contact-us' => "Se hai domande o commenti puoi contattarci via posta elettronica all'indirizzo mobile@wikipedia.org", |
2134 | | - 'mobile-frontend-author-link' => "Visualizza questo file multimediale sulla {{SITENAME}} normale per vedere le informazioni sull'autore, la licenza ed ulteriori dettagli.", |
2135 | 2400 | 'mobile-frontend-wml-continue' => 'Continua ...', |
2136 | 2401 | 'mobile-frontend-wml-back' => 'Indietro ...', |
2137 | 2402 | 'mobile-frontend-view' => 'Versione mobile', |
— | — | @@ -2147,7 +2412,7 @@ |
2148 | 2413 | 'mobile-frontend-disable-images' => 'Disabilita le immagini sul sito per dispositivi mobili', |
2149 | 2414 | 'mobile-frontend-enable-images' => 'Abilita le immagini sul sito per dispositivi mobili', |
2150 | 2415 | 'mobile-frontend-news-items' => 'Novità', |
2151 | | - 'mobile-frontend-leave-feedback-title' => 'Commenta la tua esperienza del sito per dispositivi mobili', |
| 2416 | + 'mobile-frontend-leave-feedback-title' => 'Commenti sul sito per dispositivi mobili', |
2152 | 2417 | 'mobile-frontend-leave-feedback-notice' => 'I tuoi commenti ci aiutano a migliorare la tua soddisfazione per il sito per dispositivi mobili. Sarà pubblicata (insieme al tuo nome utente, versione del browser e sistema operativo) alla pagina "$1". Per piacere, scegli un oggetto descrittivo (ad esempio, "Problemi di formattazione con tabelle larghe"). Il tuo commento è soggetto alle condizioni d\'uso.', |
2153 | 2418 | 'mobile-frontend-leave-feedback-subject' => 'Oggetto', |
2154 | 2419 | 'mobile-frontend-leave-feedback-message' => 'Messaggio', |
— | — | @@ -2160,6 +2425,7 @@ |
2161 | 2426 | 'mobile-frontend-password' => 'Password:', |
2162 | 2427 | 'mobile-frontend-login' => 'Entra', |
2163 | 2428 | 'mobile-frontend-placeholder' => 'Digita la tua ricerca qui...', |
| 2429 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
2164 | 2430 | ); |
2165 | 2431 | |
2166 | 2432 | /** Japanese (日本語) |
— | — | @@ -2196,13 +2462,16 @@ |
2197 | 2463 | 'mobile-frontend-disable-images' => '携帯機器ウェブサイトで画像を無効にする', |
2198 | 2464 | 'mobile-frontend-enable-images' => '携帯機器ウェブサイトで画像を有効にする', |
2199 | 2465 | 'mobile-frontend-news-items' => '新着情報', |
2200 | | - 'mobile-frontend-leave-feedback-title' => '携帯機器ウェブサイトの使用感について評価をお伝えください', |
| 2466 | + 'mobile-frontend-leave-feedback-title' => '携帯機器ウェブサイトの評価', |
2201 | 2467 | 'mobile-frontend-leave-feedback-notice' => 'あなたの評価は携帯機器ウェブサイトの使用感を向上させる助けになります。評価は(利用者名、ブラウザのバージョン、オペレーティングシステムとともに)"$1"のページで公開されます。「幅の広い表の書式の問題」のように、情報の多い表題名を選ぶようにしてください。あなたから評価は私たちの利用規約の対象です。', |
2202 | | - 'mobile-frontend-leave-feedback-subject' => '表題', |
2203 | | - 'mobile-frontend-leave-feedback-message' => '本文', |
| 2468 | + 'mobile-frontend-leave-feedback-subject' => '表題:', |
| 2469 | + 'mobile-frontend-leave-feedback-message' => '本文:', |
2204 | 2470 | 'mobile-frontend-leave-feedback-submit' => '評価を送信', |
2205 | 2471 | 'mobile-frontend-leave-feedback-link-text' => '携帯機器フロントエンド拡張の評価', |
2206 | 2472 | 'mobile-frontend-leave-feedback' => '携帯機器ウェブサイトの評価', |
| 2473 | + 'mobile-frontend-feedback-no-subject' => '(表題なし)', |
| 2474 | + 'mobile-frontend-feedback-no-message' => 'ここにメッセージをお書きください', |
| 2475 | + 'mobile-frontend-feedback-edit-summary' => '$1 - [[Special:MobileFeedback|携帯機器版の評価ツール]]を使った自動投稿', |
2207 | 2476 | 'mobile-frontend-leave-feedback-thanks' => '評価をありがとうございます。', |
2208 | 2477 | 'mobile-frontend-language' => '言語', |
2209 | 2478 | 'mobile-frontend-username' => '利用者名:', |
— | — | @@ -2226,24 +2495,56 @@ |
2227 | 2496 | 'mobile-frontend-back-to-top-of-section' => 'დაბრუნება უკან', |
2228 | 2497 | 'mobile-frontend-show-button' => 'აჩვენე', |
2229 | 2498 | 'mobile-frontend-hide-button' => 'დამალე', |
2230 | | - 'mobile-frontend-regular-site' => 'ამ გვერდის ჩვეულებრივ {{SITENAME}} ხილვა', |
| 2499 | + 'mobile-frontend-empty-homepage' => 'ეს საწყისი გვერდი საჭიროებს კონფიგურაციას. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">წაიკითხეთ მეტი</a>', |
| 2500 | + 'mobile-frontend-regular-site' => 'ჩვეულებრივი ვერსია', |
2231 | 2501 | 'mobile-frontend-wml-continue' => 'შემდეგ...', |
2232 | 2502 | 'mobile-frontend-wml-back' => 'უკან...', |
2233 | 2503 | 'mobile-frontend-view' => 'მობილური ვერსია', |
| 2504 | + 'mobile-frontend-view-desktop' => 'დესკტოპი', |
| 2505 | + 'mobile-frontend-view-mobile' => 'მობილური', |
| 2506 | + 'mobile-frontend-opt-in-message' => 'დავუკავშირდე მობილურ ბეტა ვერსიას?', |
2234 | 2507 | 'mobile-frontend-opt-in-yes-button' => 'დიახ', |
2235 | 2508 | 'mobile-frontend-opt-in-no-button' => 'არა', |
| 2509 | + 'mobile-frontend-opt-in-title' => 'მობილურის ბეტა რეჟიმი', |
| 2510 | + 'mobile-frontend-opt-in-explain' => 'ბეტა ვერსიასთან დაკავშირებისას, თქვენ მიიღებთ წვდომას რამდენიმე ექსპერიმენტულ ფუნქციასთან, მაგრამ აგრეთვე იზდრება იმის შანსიც, რომ გადააწყდეთ რაიმე შეცდომას ან პრობლემას.', |
| 2511 | + 'mobile-frontend-opt-out-message' => 'დავტოვო მობილური ბეტა?', |
2236 | 2512 | 'mobile-frontend-opt-out-yes-button' => 'კი', |
2237 | 2513 | 'mobile-frontend-opt-out-no-button' => 'არა', |
| 2514 | + 'mobile-frontend-opt-out-title' => 'მობილურის ბეტა რეჟიმის დატოვება', |
| 2515 | + 'mobile-frontend-opt-out-explain' => 'მობილური ბეტა ვერსიის გამოყენების შეწყვეტით, თქვენ დაკარგავთ წვდომას რამდენიმე ექსპერიმენტულ ფუნქციასთან და დაუბრუნდებით ინტერფეისის კლასიკურ ვერსიას.', |
| 2516 | + 'mobile-frontend-disable-images' => 'მობილურ საიტზე სურათების გამორთვა', |
| 2517 | + 'mobile-frontend-enable-images' => 'მობილურ საიტზე სურათების ჩართვა', |
| 2518 | + 'mobile-frontend-enable-images-prefix' => 'სურათები', |
| 2519 | + 'mobile-frontend-off' => 'გამორთვა', |
| 2520 | + 'mobile-frontend-on' => 'ჩართვა', |
2238 | 2521 | 'mobile-frontend-news-items' => 'სიახლეებში', |
2239 | | - 'mobile-frontend-leave-feedback-subject' => 'თემა', |
2240 | | - 'mobile-frontend-leave-feedback-message' => 'შეტყობინება', |
| 2522 | + 'mobile-frontend-leave-feedback-title' => 'მობილური საიტის გამოხმაურება', |
| 2523 | + 'mobile-frontend-leave-feedback-notice' => 'თქვენი გამოხმაურება ჩვენ დაგვეხმარება მობილური საიტის გამოყენების გაუმჯობესებაში. ის გამოქვეყნდება საჯაროდ (თქვენი მომხმარებლის სახელთან, ბრაუზერის ვერსიასა და ოპერაციულ სისტემასთან ერთად) გვერდზე "$1". გთხოვთ, შეეცადეთ აირჩიოთ ინფორმატიული სიუჟეტური ხაზი, მაგალითად „განიერი ცხრილების ფორმატირების საკითხები“. თქვენი გამოხმაურება უნდა იყოს გამოყენების პირობების შესაბამისი.', |
| 2524 | + 'mobile-frontend-leave-feedback-subject' => 'თემა:', |
| 2525 | + 'mobile-frontend-leave-feedback-message' => 'შეტყობინება:', |
2241 | 2526 | 'mobile-frontend-leave-feedback-submit' => 'შეფასების გაგზავნა', |
| 2527 | + 'mobile-frontend-leave-feedback-link-text' => 'გამოხმაურება მობილური ინტერფეისის შესახებ', |
| 2528 | + 'mobile-frontend-leave-feedback' => 'გამოხმაურების დატოვება', |
| 2529 | + 'mobile-frontend-feedback-no-subject' => '(თემის გარეშე)', |
| 2530 | + 'mobile-frontend-feedback-no-message' => 'გთხოვთ, შეტყობინება აქ შეიყვანოთ', |
| 2531 | + 'mobile-frontend-feedback-edit-summary' => '$1 - ავტომატურად ნარჩუნდება [[Special:MobileFeedback|უკუკავშირი]]', |
2242 | 2532 | 'mobile-frontend-leave-feedback-thanks' => 'გმადლობთ თქვენი შეფასებისთვის', |
2243 | 2533 | 'mobile-frontend-language' => 'ენა', |
2244 | 2534 | 'mobile-frontend-username' => 'მომხმარებელი:', |
2245 | 2535 | 'mobile-frontend-password' => 'პაროლი:', |
2246 | 2536 | 'mobile-frontend-login' => 'შესვლა', |
| 2537 | + 'mobile-frontend-placeholder' => 'საძიებო ველი...', |
| 2538 | + 'mobile-frontend-dismiss-notification' => 'ამ შეტყობინების დამალვა', |
2247 | 2539 | 'mobile-frontend-clear-search' => 'გასუფთავება', |
| 2540 | + 'mobile-frontend-privacy-link-text' => 'უსაფრთხოება', |
| 2541 | + 'mobile-frontend-about-link-text' => 'მასზე', |
| 2542 | + 'mobile-frontend-footer-more' => 'მეტი', |
| 2543 | + 'mobile-frontend-footer-less' => 'ნაკლები', |
| 2544 | + 'mobile-frontend-footer-sitename' => 'ვიკიპედია', |
| 2545 | + 'mobile-frontend-footer-license' => 'შიგთავსი ხელმისაწვდომია <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a> ლიცენზიით', |
| 2546 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">გამოყენების წესები</a>', |
| 2547 | + 'mobile-frontend-footer-contact' => 'კონტაქტი', |
| 2548 | + 'mobile-frontend-unknown-option' => 'ამოუცნობი ვარიანტი "$1".', |
2248 | 2549 | ); |
2249 | 2550 | |
2250 | 2551 | /** Адыгэбзэ (Адыгэбзэ) */ |
— | — | @@ -2380,6 +2681,7 @@ |
2381 | 2682 | ); |
2382 | 2683 | |
2383 | 2684 | /** Korean (한국어) |
| 2685 | + * @author Klutzy |
2384 | 2686 | * @author Kwj2772 |
2385 | 2687 | * @author SEVEREN |
2386 | 2688 | */ |
— | — | @@ -2392,7 +2694,7 @@ |
2393 | 2695 | 'mobile-frontend-back-to-top-of-section' => '문단 처음으로', |
2394 | 2696 | 'mobile-frontend-show-button' => '보이기', |
2395 | 2697 | 'mobile-frontend-hide-button' => '숨기기', |
2396 | | - 'mobile-frontend-regular-site' => '{{SITENAME}} 일반판에서 이 문서 읽기', |
| 2698 | + 'mobile-frontend-regular-site' => '데스크톱 버전', |
2397 | 2699 | 'mobile-frontend-wml-continue' => '계속...', |
2398 | 2700 | 'mobile-frontend-wml-back' => '뒤로...', |
2399 | 2701 | 'mobile-frontend-view' => '모바일판에서 보기', |
— | — | @@ -2409,10 +2711,10 @@ |
2410 | 2712 | 'mobile-frontend-disable-images' => '이미지를 표시하지 않도록 설정', |
2411 | 2713 | 'mobile-frontend-enable-images' => '이미지를 표시하도록 설정', |
2412 | 2714 | 'mobile-frontend-news-items' => '새로 들어온 소식', |
2413 | | - 'mobile-frontend-leave-feedback-title' => '모바일 사이트 환경에 대한 피드백을 남겨주세요', |
| 2715 | + 'mobile-frontend-leave-feedback-title' => '모바일 사이트 피드백', |
2414 | 2716 | 'mobile-frontend-leave-feedback-notice' => '당신의 피드백이 모바일 사이트를 개선하는 데 도움이 됩니다. 피드백은 당신의 계정 이름, 브라우저 버전과 운영 체제 정보와 함께 "$1" 문서에 공개적으로 게시될 것입니다. 제목에 도움이 되는 정보를 입력해주세요. 예를 들면 "넓은 표에 관한 문제"라고 쓸 수 있습니다. 당신의 피드백은 이용 규약의 적용을 받습니다.', |
2415 | | - 'mobile-frontend-leave-feedback-subject' => '제목', |
2416 | | - 'mobile-frontend-leave-feedback-message' => '메시지', |
| 2717 | + 'mobile-frontend-leave-feedback-subject' => '제목:', |
| 2718 | + 'mobile-frontend-leave-feedback-message' => '메시지:', |
2417 | 2719 | 'mobile-frontend-leave-feedback-submit' => '피드백 보내기', |
2418 | 2720 | 'mobile-frontend-leave-feedback-link-text' => '모바일 프론트엔드 확장 기능 피드백', |
2419 | 2721 | 'mobile-frontend-leave-feedback' => '모바일 사이트 피드백', |
— | — | @@ -2566,11 +2868,12 @@ |
2567 | 2869 | 'mobile-frontend-back-to-top-of-section' => 'En Abschnitt zrécksprangen', |
2568 | 2870 | 'mobile-frontend-show-button' => 'Weisen', |
2569 | 2871 | 'mobile-frontend-hide-button' => 'Verstoppen', |
| 2872 | + 'mobile-frontend-empty-homepage' => 'Dës Homepage muss konfiguréiert ginn. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Fir méi ze wëssen</a>', |
2570 | 2873 | 'mobile-frontend-regular-site' => 'Desktop-Vue', |
2571 | | - 'mobile-frontend-author-link' => "Kuckt dëse Medie-Fichier op der normaler {{SITENAME}} fir Informatiounen iwwer d'Auteuren, d'Lizenz an d'zousätzlech Beschreiwungen ze kréien.", |
2572 | 2874 | 'mobile-frontend-wml-continue' => 'Weider ...', |
2573 | 2875 | 'mobile-frontend-wml-back' => 'Zréck ...', |
2574 | 2876 | 'mobile-frontend-view' => 'Mobil Vue', |
| 2877 | + 'mobile-frontend-view-mobile' => 'Mobil', |
2575 | 2878 | 'mobile-frontend-opt-in-message' => 'Beim mobile Beta-Projet matmaachen?', |
2576 | 2879 | 'mobile-frontend-opt-in-yes-button' => 'jo', |
2577 | 2880 | 'mobile-frontend-opt-in-no-button' => 'Neen', |
— | — | @@ -2583,14 +2886,19 @@ |
2584 | 2887 | 'mobile-frontend-opt-out-explain' => 'Wann Dir déi mobil Beta verloosst, dann desaktivéiert Dir all experimentell Fonctiounen an Dir kommt zréck an déi klassesch Mobil-Vue.', |
2585 | 2888 | 'mobile-frontend-disable-images' => 'Biller an der Mobiler Versioun desaktivéieren', |
2586 | 2889 | 'mobile-frontend-enable-images' => 'Biller an der Mobiler Versioun aktivéieren', |
| 2890 | + 'mobile-frontend-enable-images-prefix' => 'Biller', |
| 2891 | + 'mobile-frontend-off' => 'AUS', |
| 2892 | + 'mobile-frontend-on' => 'UN', |
2587 | 2893 | 'mobile-frontend-news-items' => 'An den Neiegkeeten', |
2588 | | - 'mobile-frontend-leave-feedback-title' => 'Gitt eis Feedback iwwer Är Erfarunge mat eisem mobile Site', |
| 2894 | + 'mobile-frontend-leave-feedback-title' => 'Feedback vum mobile Site', |
2589 | 2895 | 'mobile-frontend-leave-feedback-notice' => 'Äre Feedback hëlleft eis déi mobil Versioun vun eisem Site ze verbesseren. E gëtt ëffentlech op der Säit "$1" gewisen (zesumme mat Ärem Benotzernumm, der Versioun vun Ärem Browser a Betriibssystem). Versicht w.e.g. fir de Sujet vun Ärem Feedback informativ ze formuléieren, z. Bsp. "Formatéierungsproblemer bäi breeden Tabellen". Äre Feedback ënnerléit eisen allgemenge Conditiounen.', |
2590 | | - 'mobile-frontend-leave-feedback-subject' => 'Sujet', |
2591 | | - 'mobile-frontend-leave-feedback-message' => 'Message', |
| 2896 | + 'mobile-frontend-leave-feedback-subject' => 'Sujet:', |
| 2897 | + 'mobile-frontend-leave-feedback-message' => 'Message:', |
2592 | 2898 | 'mobile-frontend-leave-feedback-submit' => 'Feedback schécken', |
2593 | 2899 | 'mobile-frontend-leave-feedback-link-text' => 'Feedback vun der Erweiderung MobileFrontend', |
2594 | 2900 | 'mobile-frontend-leave-feedback' => 'Feedback fir de mobile Site', |
| 2901 | + 'mobile-frontend-feedback-no-subject' => '(kee Sujet)', |
| 2902 | + 'mobile-frontend-feedback-no-message' => 'Gitt w.e.g. hei e Message an', |
2595 | 2903 | 'mobile-frontend-leave-feedback-thanks' => 'Merci fir Äre Feedback!', |
2596 | 2904 | 'mobile-frontend-language' => 'Sprooch', |
2597 | 2905 | 'mobile-frontend-username' => 'Benotzernumm:', |
— | — | @@ -2599,13 +2907,33 @@ |
2600 | 2908 | 'mobile-frontend-placeholder' => 'Tippt hei a wat Dir sicht...', |
2601 | 2909 | 'mobile-frontend-dismiss-notification' => 'dës Noriicht zoumaachen', |
2602 | 2910 | 'mobile-frontend-clear-search' => 'Eidel maachen', |
| 2911 | + 'mobile-frontend-privacy-link-text' => 'Dateschutz', |
| 2912 | + 'mobile-frontend-about-link-text' => 'Iwwer', |
| 2913 | + 'mobile-frontend-footer-more' => 'méi', |
| 2914 | + 'mobile-frontend-footer-less' => 'manner', |
| 2915 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 2916 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
2603 | 2917 | ); |
2604 | 2918 | |
2605 | | -/** Lezghian (Лезги) */ |
| 2919 | +/** Lezghian (Лезги) |
| 2920 | + * @author Migraghvi |
| 2921 | + */ |
2606 | 2922 | $messages['lez'] = array( |
2607 | | - 'mobile-frontend-search-submit' => 'Фин хъувун', |
2608 | | - 'mobile-frontend-home-button' => 'КIвал', |
| 2923 | + 'mobile-frontend-search-submit' => 'ЭлячIун', |
| 2924 | + 'mobile-frontend-home-button' => 'КIвализ', |
| 2925 | + 'mobile-frontend-random-button' => 'Дуьшуьшдин', |
2609 | 2926 | 'mobile-frontend-show-button' => 'Къалурун', |
| 2927 | + 'mobile-frontend-hide-button' => 'Чуьнуьхун', |
| 2928 | + 'mobile-frontend-wml-continue' => 'Давамун...', |
| 2929 | + 'mobile-frontend-wml-back' => 'КЪулухъ...', |
| 2930 | + 'mobile-frontend-opt-in-yes-button' => 'Эхь', |
| 2931 | + 'mobile-frontend-opt-in-no-button' => 'Ваъ', |
| 2932 | + 'mobile-frontend-opt-out-yes-button' => 'Эхь', |
| 2933 | + 'mobile-frontend-opt-out-no-button' => 'ваъ', |
| 2934 | + 'mobile-frontend-leave-feedback-message' => 'Чар', |
| 2935 | + 'mobile-frontend-language' => 'Чlал', |
| 2936 | + 'mobile-frontend-username' => 'Уртахдин тlвар:', |
| 2937 | + 'mobile-frontend-password' => 'Парол:', |
2610 | 2938 | ); |
2611 | 2939 | |
2612 | 2940 | /** Limburgish (Limburgs) |
— | — | @@ -2615,16 +2943,13 @@ |
2616 | 2944 | 'mobile-frontend-desc' => 'Mobiel Frontend', |
2617 | 2945 | 'mobile-frontend-search-submit' => 'Gank', |
2618 | 2946 | 'mobile-frontend-featured-article' => 'Sjterartikel', |
2619 | | - 'mobile-frontend-in-the-news' => "In 't nuujs", |
2620 | 2947 | 'mobile-frontend-home-button' => 'Veurblaad', |
2621 | 2948 | 'mobile-frontend-random-button' => 'Willekäörig', |
2622 | 2949 | 'mobile-frontend-back-to-top-of-section' => 'Ein köpke tröksjpringe', |
2623 | 2950 | 'mobile-frontend-show-button' => 'Tuin', |
2624 | 2951 | 'mobile-frontend-hide-button' => 'Versjtaek', |
2625 | | - 'mobile-frontend-regular-site' => 'Betrach dees pagina in de normale layout van {{SITENAME}}', |
2626 | | - 'mobile-frontend-error-page-title' => "D'r is 'n probleem!", |
2627 | | - 'mobile-frontend-error-page-text' => "{{SITENAME}} mobile is in ontwikkeling en d'r weurt hel gewirk om alle foute op te losse. V'r höbbe dees fout óntvange en goon dees zoe sjnel wie mäögelik verhelpe. |
2628 | | -Betrach dit later nog ins!", |
| 2952 | + 'mobile-frontend-empty-homepage' => 'Dees startpagina mót waere samegesteldj. <a href="https://www.mediawiki.org//meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Hie kóns se mieë laeze</a>.', |
| 2953 | + 'mobile-frontend-regular-site' => 'Standerdbetrachting', |
2629 | 2954 | 'mobile-frontend-wml-continue' => 'Gank door ...', |
2630 | 2955 | 'mobile-frontend-wml-back' => 'Trögk ...', |
2631 | 2956 | 'mobile-frontend-view' => 'Mobiele weergave', |
— | — | @@ -2656,6 +2981,13 @@ |
2657 | 2982 | 'mobile-frontend-placeholder' => 'Zeuk hie...', |
2658 | 2983 | 'mobile-frontend-dismiss-notification' => 'verberg de notificatie', |
2659 | 2984 | 'mobile-frontend-clear-search' => 'Wösj', |
| 2985 | + 'mobile-frontend-privacy-link-text' => 'Prajvesie', |
| 2986 | + 'mobile-frontend-about-link-text' => 'Euver', |
| 2987 | + 'mobile-frontend-footer-more' => 'Mieë', |
| 2988 | + 'mobile-frontend-footer-less' => 'Mènder', |
| 2989 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 2990 | + 'mobile-frontend-footer-license' => 'De inhawd is besjikbaar óngere licentie <a href="http:////wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a><br /><a href="http://wikimediafoundation.org/wiki/Gebruiksvoorwaarden?useformat=mobile</a>', |
| 2991 | + 'mobile-frontend-footer-contact' => 'Kóntak', |
2660 | 2992 | ); |
2661 | 2993 | |
2662 | 2994 | /** Lumbaart (Lumbaart) */ |
— | — | @@ -2805,10 +3137,13 @@ |
2806 | 3138 | 'mobile-frontend-back-to-top-of-section' => 'Скокни до претходен поднаслов', |
2807 | 3139 | 'mobile-frontend-show-button' => 'Прикажи', |
2808 | 3140 | 'mobile-frontend-hide-button' => 'Скриј', |
| 3141 | + 'mobile-frontend-empty-homepage' => 'Оваа домашна страница треба да се намести. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Прочитајте повеќе</a>', |
2809 | 3142 | 'mobile-frontend-regular-site' => 'Обичен изглед', |
2810 | 3143 | 'mobile-frontend-wml-continue' => 'Продолжи ...', |
2811 | 3144 | 'mobile-frontend-wml-back' => 'Назад ...', |
2812 | 3145 | 'mobile-frontend-view' => 'Мобилен изглед', |
| 3146 | + 'mobile-frontend-view-desktop' => 'Обично', |
| 3147 | + 'mobile-frontend-view-mobile' => 'Мобилно', |
2813 | 3148 | 'mobile-frontend-opt-in-message' => 'Сакате да се приклучите во бета-верзијата за мобилни уреди?', |
2814 | 3149 | 'mobile-frontend-opt-in-yes-button' => 'да', |
2815 | 3150 | 'mobile-frontend-opt-in-no-button' => 'не', |
— | — | @@ -2821,15 +3156,21 @@ |
2822 | 3157 | 'mobile-frontend-opt-out-explain' => 'Напуштајќи ја бета-верзијата за мобилни уреди ги оневозможувате сите експериментални функции и се враќате на класичната мобилна верзија.', |
2823 | 3158 | 'mobile-frontend-disable-images' => 'Оневозможи слики во мобилниот изглед', |
2824 | 3159 | 'mobile-frontend-enable-images' => 'Овозможи слики во мобилниот изглед', |
| 3160 | + 'mobile-frontend-enable-images-prefix' => 'Слики', |
| 3161 | + 'mobile-frontend-off' => 'ИСКЛ', |
| 3162 | + 'mobile-frontend-on' => 'ВКЛЧ', |
2825 | 3163 | 'mobile-frontend-news-items' => 'Вести', |
2826 | | - 'mobile-frontend-leave-feedback-title' => 'Дајте ни ваше мислење за мобилната верзија', |
| 3164 | + 'mobile-frontend-leave-feedback-title' => 'Мислење за мобилната верзија', |
2827 | 3165 | 'mobile-frontend-leave-feedback-notice' => 'Вашето мислење ни помага да ја подобриме мобилната верзија. Мислењето ќе биде објавено јавно (заедно со корисничкото име, верзијата на прелистувачот и оперативниот систем) на страницата „$1“. Одберете информативен наслов, како на пр. „Проблем со форматирање на широките табели“. Искажаното мислење подлежи на условите на употреба.', |
2828 | 3166 | 'mobile-frontend-leave-feedback-subject' => 'Наслов:', |
2829 | | - 'mobile-frontend-leave-feedback-message' => 'Порака', |
| 3167 | + 'mobile-frontend-leave-feedback-message' => 'Порака:', |
2830 | 3168 | 'mobile-frontend-leave-feedback-submit' => 'Поднеси мислење', |
2831 | 3169 | 'mobile-frontend-leave-feedback-link-text' => 'Мислење за Мобилниот посредник', |
2832 | 3170 | 'mobile-frontend-leave-feedback' => 'Дајте мислење', |
2833 | 3171 | 'mobile-frontend-feedback-page' => 'Project:Мислења за мобилниот додаток', |
| 3172 | + 'mobile-frontend-feedback-no-subject' => '(без наслов)', |
| 3173 | + 'mobile-frontend-feedback-no-message' => 'Тука напишете ја пораката', |
| 3174 | + 'mobile-frontend-feedback-edit-summary' => '$1 - автоматски објавено користејќи ја [[Special:MobileFeedback|алатката за мислења за мобилната верзија]]', |
2834 | 3175 | 'mobile-frontend-leave-feedback-thanks' => 'Ви благодариме за искажаното мислење!', |
2835 | 3176 | 'mobile-frontend-language' => 'Јазик', |
2836 | 3177 | 'mobile-frontend-username' => 'Корисничко име:', |
— | — | @@ -2838,6 +3179,15 @@ |
2839 | 3180 | 'mobile-frontend-placeholder' => 'Тука внесете го бараното...', |
2840 | 3181 | 'mobile-frontend-dismiss-notification' => 'отстрани го известувањето', |
2841 | 3182 | 'mobile-frontend-clear-search' => 'Исчисти', |
| 3183 | + 'mobile-frontend-privacy-link-text' => 'Приватност', |
| 3184 | + 'mobile-frontend-about-link-text' => 'За програмот', |
| 3185 | + 'mobile-frontend-footer-more' => 'повеќе', |
| 3186 | + 'mobile-frontend-footer-less' => 'помалку', |
| 3187 | + 'mobile-frontend-footer-sitename' => 'Википедија', |
| 3188 | + 'mobile-frontend-footer-license' => 'Содржините се достапни под лиценцата <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 3189 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Услови_на_употреба?useformat=mobile">Услови на употреба</a>', |
| 3190 | + 'mobile-frontend-footer-contact' => 'Контакт', |
| 3191 | + 'mobile-frontend-unknown-option' => 'Непрепознаена можност „$1“.', |
2842 | 3192 | ); |
2843 | 3193 | |
2844 | 3194 | /** Malayalam (മലയാളം) |
— | — | @@ -2852,10 +3202,13 @@ |
2853 | 3203 | 'mobile-frontend-back-to-top-of-section' => 'ഒരു ഉപഖണ്ഡം പുറകിലേയ്ക്ക് പോവുക', |
2854 | 3204 | 'mobile-frontend-show-button' => 'പ്രദർശിപ്പിക്കുക', |
2855 | 3205 | 'mobile-frontend-hide-button' => 'മറയ്ക്കുക', |
| 3206 | + 'mobile-frontend-empty-homepage' => 'ഈ പ്രധാന താൾ ക്രമീകരിക്കേണ്ടതുണ്ട്. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">കൂടുതൽ അറിയുക</a>', |
2856 | 3207 | 'mobile-frontend-regular-site' => 'ഡെസ്ക്ടോപ്പ് രൂപം', |
2857 | 3208 | 'mobile-frontend-wml-continue' => 'തുടരുക...', |
2858 | 3209 | 'mobile-frontend-wml-back' => 'പിന്നിലേക്ക് ...', |
2859 | 3210 | 'mobile-frontend-view' => 'മൊബൈൽ ദൃശ്യരൂപം', |
| 3211 | + 'mobile-frontend-view-desktop' => 'ഡെസ്ക്ടോപ്പ്', |
| 3212 | + 'mobile-frontend-view-mobile' => 'മൊബൈൽ', |
2860 | 3213 | 'mobile-frontend-opt-in-message' => 'മൊബൈൽ ബീറ്റയിൽ പങ്ക് ചേരുന്നോ?', |
2861 | 3214 | 'mobile-frontend-opt-in-yes-button' => 'വേണം', |
2862 | 3215 | 'mobile-frontend-opt-in-no-button' => 'വേണ്ട', |
— | — | @@ -2868,6 +3221,9 @@ |
2869 | 3222 | 'mobile-frontend-opt-out-explain' => 'മൊബൈൽ ബീറ്റയിൽ നിന്ന് മാറുമ്പോൾ താങ്കൾ പരീക്ഷണാടിസ്ഥാനത്തിൽ നൽകുന്ന സവിശേഷഗുണങ്ങൾ ഒഴിവാക്കുകയും പഴയ മൊബൈൽ അനുഭവത്തിലേയ്ക്ക് മടങ്ങുകയും ചെയ്യുന്നതാണ്.', |
2870 | 3223 | 'mobile-frontend-disable-images' => 'മൊബൈൽ സൈറ്റിൽ ചിത്രങ്ങൾ പ്രവർത്തനരഹിതമാക്കുക', |
2871 | 3224 | 'mobile-frontend-enable-images' => 'മൊബൈൽ സൈറ്റിൽ ചിത്രങ്ങൾ പ്രവർത്തനസജ്ജമാക്കുക', |
| 3225 | + 'mobile-frontend-enable-images-prefix' => 'ചിത്രങ്ങൾ', |
| 3226 | + 'mobile-frontend-off' => 'റ്വേണ്ട', |
| 3227 | + 'mobile-frontend-on' => 'വേണം', |
2872 | 3228 | 'mobile-frontend-news-items' => 'വാർത്തയിൽ', |
2873 | 3229 | 'mobile-frontend-leave-feedback-title' => 'താങ്കളുടെ മൊബൈൽ സൈറ്റ് അനുഭവം ഞങ്ങളെ അറിയിക്കുക', |
2874 | 3230 | 'mobile-frontend-leave-feedback-notice' => 'മൊബൈൽ സൈറ്റ് അനുഭവം മെച്ചപ്പെടുത്താൻ താങ്കളുടെ അഭിപ്രായം ഞങ്ങളെ സഹായിക്കുന്നതാണ്. അത് "$1" താളിൽ പരസ്യമായി (താങ്കളുടെ ഉപയോക്തൃനാമത്തോടും, ബ്രൗസർ വേർഷനോടും ഓപ്പറേറ്റിങ് സിസ്റ്റത്തിനോടും കൂടി) ലഭ്യമായിരിക്കും. ദയവായി തലക്കെട്ട് കുറിപ്പായി വിവരദായകമായ ഒരു വരി നൽകുക, ഉദാ: "പട്ടിക പ്രദർശിപ്പിക്കുന്നതിലെ പ്രശ്നങ്ങൾ". |
— | — | @@ -2885,6 +3241,15 @@ |
2886 | 3242 | 'mobile-frontend-placeholder' => 'തിരയേണ്ട വാക്ക് നൽകുക...', |
2887 | 3243 | 'mobile-frontend-dismiss-notification' => 'ഈ അറിയിപ്പ് ഒഴിവാക്കുക', |
2888 | 3244 | 'mobile-frontend-clear-search' => 'ശൂന്യമാക്കുക', |
| 3245 | + 'mobile-frontend-privacy-link-text' => 'സ്വകാര്യത', |
| 3246 | + 'mobile-frontend-about-link-text' => 'വിവരണം', |
| 3247 | + 'mobile-frontend-footer-more' => 'കൂടുതൽ', |
| 3248 | + 'mobile-frontend-footer-less' => 'കുറവ്', |
| 3249 | + 'mobile-frontend-footer-sitename' => 'വിക്കിപീഡിയ', |
| 3250 | + 'mobile-frontend-footer-license' => 'ഉള്ളടക്കം <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">സി.സി. ബൈ-എസ്.എ. 3.0</a> പ്രകാരം ലഭ്യം', |
| 3251 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">ഉപയോഗ നിബന്ധനകൾ</a>', |
| 3252 | + 'mobile-frontend-footer-contact' => 'സമ്പർക്കം', |
| 3253 | + 'mobile-frontend-unknown-option' => 'തിരിച്ചറിയാനാകാത്ത ഐച്ഛികം "$1".', |
2889 | 3254 | ); |
2890 | 3255 | |
2891 | 3256 | /** Mongolian (Монгол) */ |
— | — | @@ -2971,10 +3336,13 @@ |
2972 | 3337 | 'mobile-frontend-back-to-top-of-section' => 'Undur Satu Bahagian', |
2973 | 3338 | 'mobile-frontend-show-button' => 'Tunjukkan', |
2974 | 3339 | 'mobile-frontend-hide-button' => 'Sorokkan', |
| 3340 | + 'mobile-frontend-empty-homepage' => 'Halaman utama ini perlu dikonfigurasikan. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Ketahui lebih lanjut di sini</a>', |
2975 | 3341 | 'mobile-frontend-regular-site' => 'Paparan desktop', |
2976 | 3342 | 'mobile-frontend-wml-continue' => 'Teruskan ...', |
2977 | 3343 | 'mobile-frontend-wml-back' => 'Kembali ...', |
2978 | 3344 | 'mobile-frontend-view' => 'Paparan Mudah Alih', |
| 3345 | + 'mobile-frontend-view-desktop' => 'Desktop', |
| 3346 | + 'mobile-frontend-view-mobile' => 'Mudah Alih', |
2979 | 3347 | 'mobile-frontend-opt-in-message' => 'Nak masuk beta mudah alih?', |
2980 | 3348 | 'mobile-frontend-opt-in-yes-button' => 'ya', |
2981 | 3349 | 'mobile-frontend-opt-in-no-button' => 'tidak', |
— | — | @@ -2987,14 +3355,20 @@ |
2988 | 3356 | 'mobile-frontend-opt-out-explain' => 'Dengan meninggalkan beta mobil, anda akan mematikan semua ciri-ciri percubaan dan kembali kepada pengalaman mudah alih anda yang asal.', |
2989 | 3357 | 'mobile-frontend-disable-images' => 'Matikan imej di tapak mudah alih', |
2990 | 3358 | 'mobile-frontend-enable-images' => 'Membolehkan imej di tapak mudah alih', |
| 3359 | + 'mobile-frontend-enable-images-prefix' => 'Imej', |
| 3360 | + 'mobile-frontend-off' => 'TUTUP', |
| 3361 | + 'mobile-frontend-on' => 'BUKA', |
2991 | 3362 | 'mobile-frontend-news-items' => 'Dalam Berita', |
2992 | | - 'mobile-frontend-leave-feedback-title' => 'Beri kami maklum balas tentang pengalaman tapak mudah alih anda', |
| 3363 | + 'mobile-frontend-leave-feedback-title' => 'Maklum balas tapak mudah alih', |
2993 | 3364 | 'mobile-frontend-leave-feedback-notice' => 'Maklum balas anda membantu kami untuk meningkatkan pengalaman anda ketika melayari tapak mudah alih. Ia akan disiarkan secara umum (dengan nama pengguna, versi pelayar dan sistem pengendalian) pada laman "$1". Sila cuba memilih baris subjek yang informatif, cth. "Masalah ketika memformatkan jadual yang lebar". Maklum balas anda tertakluk kepada terma-terma penggunaan kami.', |
2994 | | - 'mobile-frontend-leave-feedback-subject' => 'Subjek', |
2995 | | - 'mobile-frontend-leave-feedback-message' => 'Pesanan', |
| 3365 | + 'mobile-frontend-leave-feedback-subject' => 'Perkara:', |
| 3366 | + 'mobile-frontend-leave-feedback-message' => 'Pesanan:', |
2996 | 3367 | 'mobile-frontend-leave-feedback-submit' => 'Hantar Maklum Balas', |
2997 | 3368 | 'mobile-frontend-leave-feedback-link-text' => 'Maklum balas Mobile Frontend', |
2998 | 3369 | 'mobile-frontend-leave-feedback' => 'Tinggalkan maklum balas', |
| 3370 | + 'mobile-frontend-feedback-no-subject' => '(tiada subjek)', |
| 3371 | + 'mobile-frontend-feedback-no-message' => 'Sila isikan pesanan di sini', |
| 3372 | + 'mobile-frontend-feedback-edit-summary' => '$1 - diposkan secara automatik dengan [[Special:MobileFeedback|alat maklum balas mudah alih]]', |
2999 | 3373 | 'mobile-frontend-leave-feedback-thanks' => 'Terima kasih atas maklum balas anda!', |
3000 | 3374 | 'mobile-frontend-language' => 'Bahasa', |
3001 | 3375 | 'mobile-frontend-username' => 'Nama pengguna:', |
— | — | @@ -3003,6 +3377,15 @@ |
3004 | 3378 | 'mobile-frontend-placeholder' => 'Taipkan carian anda di sini...', |
3005 | 3379 | 'mobile-frontend-dismiss-notification' => 'abaikan pemberitahuan ini', |
3006 | 3380 | 'mobile-frontend-clear-search' => 'Padamkan', |
| 3381 | + 'mobile-frontend-privacy-link-text' => 'Privasi', |
| 3382 | + 'mobile-frontend-about-link-text' => 'Perihal', |
| 3383 | + 'mobile-frontend-footer-more' => 'lagi', |
| 3384 | + 'mobile-frontend-footer-less' => 'kurang', |
| 3385 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 3386 | + 'mobile-frontend-footer-license' => 'Kandungan disediakan di bawah <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 3387 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Syarat-Syarat Penggunaan</a>', |
| 3388 | + 'mobile-frontend-footer-contact' => 'Hubungi', |
| 3389 | + 'mobile-frontend-unknown-option' => 'Pilihan "$1" tidak dikenali.', |
3007 | 3390 | ); |
3008 | 3391 | |
3009 | 3392 | /** Maltese (Malti) */ |
— | — | @@ -3097,12 +3480,6 @@ |
3098 | 3481 | 'mobile-frontend-show-button' => 'Bekieken', |
3099 | 3482 | 'mobile-frontend-hide-button' => 'Verbargen', |
3100 | 3483 | 'mobile-frontend-regular-site' => 'Disse pagina in de standardweergave van {{SITENAME}} bekieken', |
3101 | | - 'mobile-frontend-error-page-text' => "De mobiele weergave van {{SITENAME}} is in ontwikkeling en wulen bin hard an t wark um alle fouten op te lössen. |
3102 | | -Wulen hebben al bericht ehad over disse fout en zullen t zo gauw meugelik verhelpen. |
3103 | | -Vorttemee zie'j hier t resultaot.", |
3104 | | - 'mobile-frontend-are-you-sure' => "Bi'j daor wisse van?", |
3105 | | - 'mobile-frontend-explain-disable' => "Bi'j der wisse van da'j de mobiele versie van {{SITENAME}} uut willen schakelen? A'j <b>Uutschakelen</b> kiezen, dan wö'j vanaof dat moment niet deurverwezen naor disse mobiele versie van {{SITENAME}} a'j {{SITENAME}} bezeuken.", |
3106 | | - 'mobile-frontend-contact-us' => "A'j nog vragen of opmarkingen hebben, stuur ons gerust n berichjen op t adres mobile@wikipedia.org", |
3107 | 3484 | 'mobile-frontend-wml-back' => 'Weerumme ...', |
3108 | 3485 | 'mobile-frontend-view' => 'Mobiele weergave', |
3109 | 3486 | 'mobile-frontend-opt-in-message' => 'Mitdoon an de mobiele bèta?', |
— | — | @@ -3145,6 +3522,7 @@ |
3146 | 3523 | ); |
3147 | 3524 | |
3148 | 3525 | /** Dutch (Nederlands) |
| 3526 | + * @author AvatarTeam |
3149 | 3527 | * @author Patio |
3150 | 3528 | * @author SPQRobin |
3151 | 3529 | * @author Siebrand |
— | — | @@ -3158,13 +3536,13 @@ |
3159 | 3537 | 'mobile-frontend-back-to-top-of-section' => 'Een kopje terugspringen', |
3160 | 3538 | 'mobile-frontend-show-button' => 'Weergeven', |
3161 | 3539 | 'mobile-frontend-hide-button' => 'Verbergen', |
| 3540 | + 'mobile-frontend-empty-homepage' => 'Deze startpagina moet worden samengesteld. <a href="https://www.mediawiki.org//meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Hier kunt u meer lezen</a>.', |
3162 | 3541 | 'mobile-frontend-regular-site' => 'Standaardweergave', |
3163 | | - 'mobile-frontend-error-page-text' => '{{SITENAME}} Mobiel is in ontwikkeling en er wordt hard aan gewerkt om alle fouten op te lossen. |
3164 | | -We hebben deze fout ontvangen en verhelpen deze zo spoedig mogelijk. |
3165 | | -Binnenkort ziet u hier het resultaat.', |
3166 | 3542 | 'mobile-frontend-wml-continue' => 'Doorgaan ...', |
3167 | 3543 | 'mobile-frontend-wml-back' => 'Terug ...', |
3168 | 3544 | 'mobile-frontend-view' => 'Mobiele weergave', |
| 3545 | + 'mobile-frontend-view-desktop' => 'Desktopweergave', |
| 3546 | + 'mobile-frontend-view-mobile' => 'Mobiele weergave', |
3169 | 3547 | 'mobile-frontend-opt-in-message' => 'Wilt u de nieuwe mobiele functionaliteit testen?', |
3170 | 3548 | 'mobile-frontend-opt-in-yes-button' => 'ja', |
3171 | 3549 | 'mobile-frontend-opt-in-no-button' => 'nee', |
— | — | @@ -3177,14 +3555,18 @@ |
3178 | 3556 | 'mobile-frontend-opt-out-explain' => 'Door te stoppen met testen wordt alle experimentele functionaliteit uitgeschakeld en gaat u weer de klassieke mobiele vormgeving gebruiken.', |
3179 | 3557 | 'mobile-frontend-disable-images' => 'Afbeeldingen op de mobiele site uitschakelen', |
3180 | 3558 | 'mobile-frontend-enable-images' => 'Afbeeldingen op de mobiele site inschakelen', |
| 3559 | + 'mobile-frontend-enable-images-prefix' => 'Afbeeldingen', |
| 3560 | + 'mobile-frontend-off' => 'UIT', |
| 3561 | + 'mobile-frontend-on' => 'AAN', |
3181 | 3562 | 'mobile-frontend-news-items' => 'In het nieuws', |
3182 | | - 'mobile-frontend-leave-feedback-title' => 'Geef ons terugkoppeling over uw ervaring met de mobiele site', |
| 3563 | + 'mobile-frontend-leave-feedback-title' => 'Terugkoppeling over de mobiele site', |
3183 | 3564 | 'mobile-frontend-leave-feedback-notice' => 'Uw terugkoppeling helpt ons uw ervaring op de mobiele site te verbeteren. Deze terugkoppeling is openbaar (als ook uw gebruikersnaam, browserversie en besturingssysteem) op de pagina "$1". Kies alstublieft een informatieve onderwerpregel, bijvoorbeeld "Opmaakproblemen met brede tabellen". Op uw terugkoppeling zijn onze gebruiksvoorwaarden van toepassing.', |
3184 | | - 'mobile-frontend-leave-feedback-subject' => 'Onderwerp', |
3185 | | - 'mobile-frontend-leave-feedback-message' => 'Bericht', |
| 3565 | + 'mobile-frontend-leave-feedback-subject' => 'Onderwerp:', |
| 3566 | + 'mobile-frontend-leave-feedback-message' => 'Bericht:', |
3186 | 3567 | 'mobile-frontend-leave-feedback-submit' => 'Terugkoppeling opslaan', |
3187 | 3568 | 'mobile-frontend-leave-feedback-link-text' => 'Mobiele Frontend-terugkoppeling', |
3188 | 3569 | 'mobile-frontend-leave-feedback' => 'Terugkoppeling achterlaten', |
| 3570 | + 'mobile-frontend-feedback-no-subject' => '(geen onderwerp)', |
3189 | 3571 | 'mobile-frontend-leave-feedback-thanks' => 'Bedankt voor uw terugkoppeling!', |
3190 | 3572 | 'mobile-frontend-language' => 'Taal', |
3191 | 3573 | 'mobile-frontend-username' => 'Gebruikersnaam:', |
— | — | @@ -3193,15 +3575,21 @@ |
3194 | 3576 | 'mobile-frontend-placeholder' => 'Zoeken...', |
3195 | 3577 | 'mobile-frontend-dismiss-notification' => 'deze melding verwijderen', |
3196 | 3578 | 'mobile-frontend-clear-search' => 'Wissen', |
| 3579 | + 'mobile-frontend-privacy-link-text' => 'Privacy', |
| 3580 | + 'mobile-frontend-about-link-text' => 'Over', |
| 3581 | + 'mobile-frontend-footer-more' => 'meer', |
| 3582 | + 'mobile-frontend-footer-less' => 'minder', |
| 3583 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 3584 | + 'mobile-frontend-footer-license' => 'De inhoud is beschikbaar onder de licentie <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 3585 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Gebruiksvoorwaarden?useformat=mobile">Gebruiksvoorwaarden</a>', |
| 3586 | + 'mobile-frontend-footer-contact' => 'Contact', |
| 3587 | + 'mobile-frontend-unknown-option' => 'Niet-herkende optie "$1".', |
3197 | 3588 | ); |
3198 | 3589 | |
3199 | 3590 | /** Nederlands (informeel) (Nederlands (informeel)) |
3200 | 3591 | * @author Effeietsanders |
3201 | 3592 | */ |
3202 | 3593 | $messages['nl-informal'] = array( |
3203 | | - 'mobile-frontend-error-page-text' => '{{SITENAME}} Mobiel is in ontwikkeling en er wordt hard aan gewerkt om alle fouten op te lossen. |
3204 | | -We hebben deze fout ontvangen en verhelpen deze zo snel mogelijk. |
3205 | | -Binnenkort zie je hier het resultaat.', |
3206 | 3594 | 'mobile-frontend-opt-in-message' => 'Wil je de nieuwe mobiele functionaliteit testen?', |
3207 | 3595 | 'mobile-frontend-opt-in-explain' => 'Als je meedoet met testen, krijg je toegang tot experimentele functionaliteit, met het risico op fouten en problemen.', |
3208 | 3596 | 'mobile-frontend-opt-out-message' => 'Wil je de nieuwe mobiele functionaliteit niet langer testen?', |
— | — | @@ -3238,9 +3626,6 @@ |
3239 | 3627 | 'mobile-frontend-show-button' => 'Afichar', |
3240 | 3628 | 'mobile-frontend-hide-button' => 'Amagar', |
3241 | 3629 | 'mobile-frontend-regular-site' => 'Afichar aquesta pagina sus Wikipèdia classica', |
3242 | | - 'mobile-frontend-error-page-text' => "Wikipèdia mobil es encara en desvolopament actiu e nos esforçam de resòlvre nòstras errors intèrnas. Sèm estats avisats d'aquesta error e l'anam corregir rapidament. Tornatz ensajar lèu !", |
3243 | | - 'mobile-frontend-contact-us' => "S'avètz de questions o de comentaris trantalhetz pas a nos contactar a mobile@wikipedia.org", |
3244 | | - 'mobile-frontend-author-link' => "Afichar aquel fichièr sus la Wikipèdia web per mai d'informacion suls dreches d'autor e la licéncia, e mai de descripcion", |
3245 | 3630 | 'mobile-frontend-opt-in-yes-button' => 'òc', |
3246 | 3631 | 'mobile-frontend-opt-in-no-button' => 'non', |
3247 | 3632 | 'mobile-frontend-opt-out-yes-button' => 'òc', |
— | — | @@ -3249,6 +3634,7 @@ |
3250 | 3635 | ); |
3251 | 3636 | |
3252 | 3637 | /** Oriya (ଓଡ଼ିଆ) |
| 3638 | + * @author Jnanaranjan Sahu |
3253 | 3639 | * @author Odisha1 |
3254 | 3640 | * @author Psubhashish |
3255 | 3641 | */ |
— | — | @@ -3293,6 +3679,11 @@ |
3294 | 3680 | 'mobile-frontend-placeholder' => 'ଖୋଜିବାକୁ ଯାହା ଚାହାଁନ୍ତି ଏଠାରେ ଲେଖନ୍ତୁ...', |
3295 | 3681 | 'mobile-frontend-dismiss-notification' => 'ସୂଚନାଟିକୁ ହଟାଇଦିଅନ୍ତୁ', |
3296 | 3682 | 'mobile-frontend-clear-search' => 'ଖାଲି କରିଦିଅନ୍ତୁ', |
| 3683 | + 'mobile-frontend-privacy-link-text' => 'ଗୁମରନିତି', |
| 3684 | + 'mobile-frontend-about-link-text' => 'ବିଷୟରେ', |
| 3685 | + 'mobile-frontend-footer-more' => 'ଅଧିକ', |
| 3686 | + 'mobile-frontend-footer-less' => 'କମ', |
| 3687 | + 'mobile-frontend-footer-sitename' => 'ଉଇକିପିଡିଅ', |
3297 | 3688 | ); |
3298 | 3689 | |
3299 | 3690 | /** Ossetic (Ирон) |
— | — | @@ -3303,7 +3694,7 @@ |
3304 | 3695 | 'mobile-frontend-search-submit' => 'Статьямæ', |
3305 | 3696 | 'mobile-frontend-featured-article' => 'Боны сæрмагонд статья', |
3306 | 3697 | 'mobile-frontend-home-button' => 'Райдианмæ', |
3307 | | - 'mobile-frontend-random-button' => 'Халæй ист', |
| 3698 | + 'mobile-frontend-random-button' => 'Халæй', |
3308 | 3699 | 'mobile-frontend-back-to-top-of-section' => 'Раздæхын иу хай фæстæмæ', |
3309 | 3700 | 'mobile-frontend-show-button' => 'Равдисын', |
3310 | 3701 | 'mobile-frontend-hide-button' => 'Айсын', |
— | — | @@ -3325,6 +3716,11 @@ |
3326 | 3717 | 'mobile-frontend-login' => 'Бахизын', |
3327 | 3718 | 'mobile-frontend-clear-search' => 'Схафын', |
3328 | 3719 | 'mobile-frontend-about-link-text' => 'Афыст', |
| 3720 | + 'mobile-frontend-footer-more' => 'фылдæр', |
| 3721 | + 'mobile-frontend-footer-less' => 'цъусдæр', |
| 3722 | + 'mobile-frontend-footer-sitename' => 'Википеди', |
| 3723 | + 'mobile-frontend-footer-license' => 'Ацы æрмæг у сæрибар <a href="http://wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a> лицензимæ гæсгæ. <br /><a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Архайыны домæнтæ</a>', |
| 3724 | + 'mobile-frontend-footer-contact' => 'Контакт', |
3329 | 3725 | ); |
3330 | 3726 | |
3331 | 3727 | /** Punjabi (ਪੰਜਾਬੀ) */ |
— | — | @@ -3364,13 +3760,29 @@ |
3365 | 3761 | 'mobile-frontend-language' => 'Schprooch', |
3366 | 3762 | ); |
3367 | 3763 | |
3368 | | -/** Pälzisch (Pälzisch) */ |
| 3764 | +/** Pälzisch (Pälzisch) |
| 3765 | + * @author Manuae |
| 3766 | + */ |
3369 | 3767 | $messages['pfl'] = array( |
| 3768 | + 'mobile-frontend-show-button' => 'Zaische', |
| 3769 | + 'mobile-frontend-hide-button' => 'Vaschdegle', |
| 3770 | + 'mobile-frontend-wml-continue' => 'Waida...', |
| 3771 | + 'mobile-frontend-wml-back' => 'Zurigg...', |
| 3772 | + 'mobile-frontend-opt-in-message' => 'Baim Beda-Teschd midmache?', |
| 3773 | + 'mobile-frontend-opt-in-yes-button' => 'Ja', |
| 3774 | + 'mobile-frontend-opt-in-no-button' => 'Nä', |
| 3775 | + 'mobile-frontend-opt-out-yes-button' => 'Ja', |
| 3776 | + 'mobile-frontend-opt-out-no-button' => 'Nä', |
| 3777 | + 'mobile-frontend-leave-feedback-message' => 'Nochrischd:', |
| 3778 | + 'mobile-frontend-language' => 'Schbrooch', |
| 3779 | + 'mobile-frontend-about-link-text' => 'Iwa', |
| 3780 | + 'mobile-frontend-footer-less' => 'wenischa', |
3370 | 3781 | ); |
3371 | 3782 | |
3372 | 3783 | /** Polish (Polski) |
3373 | 3784 | * @author BeginaFelicysym |
3374 | 3785 | * @author Leinad |
| 3786 | + * @author Mikołka |
3375 | 3787 | * @author Olgak85 |
3376 | 3788 | * @author Rzuwig |
3377 | 3789 | * @author Sp5uhe |
— | — | @@ -3385,10 +3797,11 @@ |
3386 | 3798 | 'mobile-frontend-back-to-top-of-section' => 'Wróć do wcześniejszej sekcji', |
3387 | 3799 | 'mobile-frontend-show-button' => 'Pokaż', |
3388 | 3800 | 'mobile-frontend-hide-button' => 'Ukryj', |
3389 | | - 'mobile-frontend-regular-site' => 'Widoku pulpitu', |
| 3801 | + 'mobile-frontend-empty-homepage' => 'Ta strona wymaga skonfigurowania. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Przeczytaj więcej tutaj</a>', |
| 3802 | + 'mobile-frontend-regular-site' => 'Wersja dla urządzeń stacjonarnych', |
3390 | 3803 | 'mobile-frontend-wml-continue' => 'Dalej ...', |
3391 | 3804 | 'mobile-frontend-wml-back' => 'Wstecz ...', |
3392 | | - 'mobile-frontend-view' => 'Wersja na komórkę', |
| 3805 | + 'mobile-frontend-view' => 'Wersja dla urządzeń mobilnych', |
3393 | 3806 | 'mobile-frontend-opt-in-message' => 'Przyłącz się do mobilnego interfejsu użytkownika w wersji testowej?', |
3394 | 3807 | 'mobile-frontend-opt-in-yes-button' => 'tak', |
3395 | 3808 | 'mobile-frontend-opt-in-no-button' => 'nie', |
— | — | @@ -3401,14 +3814,18 @@ |
3402 | 3815 | 'mobile-frontend-opt-out-explain' => 'Wyłączając wersję beta mobilnego interfejsu wyłączysz również różne eksperymentalne funkcje i powrócisz do klasycznego interfejsu mobilnego.', |
3403 | 3816 | 'mobile-frontend-disable-images' => 'Wyłącz wyświetlanie obrazów na mobilnej witrynie', |
3404 | 3817 | 'mobile-frontend-enable-images' => 'Włącz wyświetlanie obrazów na mobilnej witrynie', |
| 3818 | + 'mobile-frontend-enable-images-prefix' => 'Grafika', |
3405 | 3819 | 'mobile-frontend-news-items' => 'Aktualności', |
3406 | | - 'mobile-frontend-leave-feedback-title' => 'Pozostaw swoją opinię na temat swoich doświadczeń z mobilnym interfejsem użytkownika', |
| 3820 | + 'mobile-frontend-leave-feedback-title' => 'Opinia witryny mobilnej', |
3407 | 3821 | 'mobile-frontend-leave-feedback-notice' => 'Twoja opinia pomoże poprawić mobilną witrynę. Opinia zostanie opublikowana na stronie „$1“ (wraz z nazwą użytkownika, wersją przeglądarki i systemem operacyjnym). Spróbuj wybrać najbardziej pasujący tytuł, np „Problem z formatowaniem szerokich tabel“. Twoja opinia będzie przetwarzana zgodnie z warunkami użytkowania witryny.', |
3408 | | - 'mobile-frontend-leave-feedback-subject' => 'Temat', |
3409 | | - 'mobile-frontend-leave-feedback-message' => 'Wiadomość', |
| 3822 | + 'mobile-frontend-leave-feedback-subject' => 'Temat:', |
| 3823 | + 'mobile-frontend-leave-feedback-message' => 'Wiadomość:', |
3410 | 3824 | 'mobile-frontend-leave-feedback-submit' => 'Prześlij opinię', |
3411 | 3825 | 'mobile-frontend-leave-feedback-link-text' => 'Opinia na temat mobilnego interfejsu użytkownika', |
3412 | 3826 | 'mobile-frontend-leave-feedback' => 'Prześlij opinię', |
| 3827 | + 'mobile-frontend-feedback-no-subject' => '(brak tematu)', |
| 3828 | + 'mobile-frontend-feedback-no-message' => 'Wprowadź tutaj wiadomość', |
| 3829 | + 'mobile-frontend-feedback-edit-summary' => '$1 - opublikowano automatycznie przy użyciu [[Special:MobileFeedback|mobilnego narzędzia przesyłania komentarzy]]', |
3413 | 3830 | 'mobile-frontend-leave-feedback-thanks' => 'Dziękujemy za przesłaną opinię!', |
3414 | 3831 | 'mobile-frontend-language' => 'Język', |
3415 | 3832 | 'mobile-frontend-username' => 'Nazwa użytkownika:', |
— | — | @@ -3417,6 +3834,15 @@ |
3418 | 3835 | 'mobile-frontend-placeholder' => 'Wpisz tutaj wyszukiwania...', |
3419 | 3836 | 'mobile-frontend-dismiss-notification' => 'odrzuć to powiadomienie', |
3420 | 3837 | 'mobile-frontend-clear-search' => 'Wyczyść', |
| 3838 | + 'mobile-frontend-privacy-link-text' => 'Polityka prywatności', |
| 3839 | + 'mobile-frontend-about-link-text' => 'O aplikacji', |
| 3840 | + 'mobile-frontend-footer-more' => 'więcej', |
| 3841 | + 'mobile-frontend-footer-less' => 'mniej', |
| 3842 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 3843 | + 'mobile-frontend-footer-license' => 'Treść udostępniona na licencji <a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>', |
| 3844 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Warunki użytkowania</a>', |
| 3845 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
| 3846 | + 'mobile-frontend-unknown-option' => 'Nieznana opcja "$1".', |
3421 | 3847 | ); |
3422 | 3848 | |
3423 | 3849 | /** Piedmontese (Piemontèis) |
— | — | @@ -3426,7 +3852,6 @@ |
3427 | 3853 | $messages['pms'] = array( |
3428 | 3854 | 'mobile-frontend-desc' => 'Visualisassion an sël sacociàbil', |
3429 | 3855 | 'mobile-frontend-search-submit' => 'Va', |
3430 | | - 'mobile-frontend-search-results' => "Arzultà dl'arserca", |
3431 | 3856 | 'mobile-frontend-featured-article' => 'Artìcol dël dì', |
3432 | 3857 | 'mobile-frontend-home-button' => 'Pàgina Prinsipal', |
3433 | 3858 | 'mobile-frontend-random-button' => 'A cas', |
— | — | @@ -3434,11 +3859,6 @@ |
3435 | 3860 | 'mobile-frontend-show-button' => 'Mosta', |
3436 | 3861 | 'mobile-frontend-hide-button' => 'Stërma', |
3437 | 3862 | 'mobile-frontend-regular-site' => 'Varda sta pàgina-sì an {{SITENAME}} regolar', |
3438 | | - 'mobile-frontend-error-page-title' => "I l'oma un problema!", |
3439 | | - 'mobile-frontend-error-page-text' => "{{SITENAME}} për ij sacociàbij a l'é ancó sota dësvlup ativ e i travajoma sech për rangé tùit ij nòstri eror antern. I soma stàit avisà ëd cost eror-sì e i lo rangëroma an pressa. Për piasì, ch'a torna a prové!", |
3440 | | - 'mobile-frontend-explain-disable' => "É-lo sigur ëd vorèj disabilité la version për sacociàbil ëd {{SITENAME}}? S'a serne <b>Disabilité</b>, da col moment an peui, quand ch'a vìsita {{SITENAME}}, a sarà pa ridiressionà a costa version për sacociàbil ëd {{SITENAME}}.", |
3441 | | - 'mobile-frontend-contact-us' => "S'a l'has qualsëssìa chestion o coment, për piasì ch'a l'abia pa gena a scrivne a mobile@wikipedia.org", |
3442 | | - 'mobile-frontend-author-link' => "Vëdde cost archivi multimedial dzora na {{SITENAME}} regolar për lese j'anformassion su autor, licensa, e le descrission adissionaj.", |
3443 | 3863 | 'mobile-frontend-wml-continue' => 'Andé anans ...', |
3444 | 3864 | 'mobile-frontend-wml-back' => 'André ...', |
3445 | 3865 | 'mobile-frontend-view' => 'Visualisassion an sël sacociàbil', |
— | — | @@ -3695,10 +4115,10 @@ |
3696 | 4116 | 'mobile-frontend-disable-images' => 'Dezactivează imaginile pe site-urile mobile', |
3697 | 4117 | 'mobile-frontend-enable-images' => 'Activează imaginile pe site-urile mobile', |
3698 | 4118 | 'mobile-frontend-news-items' => 'Știri', |
3699 | | - 'mobile-frontend-leave-feedback-title' => 'Oferiți-ne părerea despre experiența dv. cu interfața mobilă', |
| 4119 | + 'mobile-frontend-leave-feedback-title' => 'Păreri despre interfața mobilă', |
3700 | 4120 | 'mobile-frontend-leave-feedback-notice' => 'Părerea dumneavoastră ne va ajuta să îmbunătățim navigarea pe site-ul mobil. Aceasta va fi făcută publică (împreună cu numele dumneavoastră de utilizator, versiunea browserului și sistemul de operare) pe pagina „$1”. Încercați să alegeți un titlu informativ; ex.: „Probleme cu formatarea tabelelor late”. Comentariile dumnevoastră sunt supuse condițiilor noastre de utilizare.', |
3701 | | - 'mobile-frontend-leave-feedback-subject' => 'Subiect', |
3702 | | - 'mobile-frontend-leave-feedback-message' => 'Mesaj', |
| 4121 | + 'mobile-frontend-leave-feedback-subject' => 'Subiect:', |
| 4122 | + 'mobile-frontend-leave-feedback-message' => 'Mesaj:', |
3703 | 4123 | 'mobile-frontend-leave-feedback-submit' => 'Trimite părerea', |
3704 | 4124 | 'mobile-frontend-leave-feedback-link-text' => 'Păreri despre interfața mobilă', |
3705 | 4125 | 'mobile-frontend-leave-feedback' => 'Scrieți-vă părerea', |
— | — | @@ -3716,17 +4136,13 @@ |
3717 | 4137 | $messages['roa-tara'] = array( |
3718 | 4138 | 'mobile-frontend-desc' => "Grafeche d'u Mobile", |
3719 | 4139 | 'mobile-frontend-search-submit' => 'Véje', |
3720 | | - 'mobile-frontend-search-results' => "Resultate d'a ricerche", |
3721 | 4140 | 'mobile-frontend-featured-article' => 'Vôsce dettagliate de osce', |
3722 | | - 'mobile-frontend-in-the-news' => "Jndr'à le notizie", |
3723 | 4141 | 'mobile-frontend-home-button' => 'Cáse', |
3724 | 4142 | 'mobile-frontend-random-button' => 'A uecchije', |
3725 | 4143 | 'mobile-frontend-back-to-top-of-section' => "Zumbe rrete a 'na sezione", |
3726 | 4144 | 'mobile-frontend-show-button' => 'Fà vedè', |
3727 | 4145 | 'mobile-frontend-hide-button' => 'Scunne', |
3728 | | - 'mobile-frontend-regular-site' => "Vide sta pàgene sus a 'na {{SITENAME}} regolare", |
3729 | | - 'mobile-frontend-error-page-title' => "Nuje tenime 'nu probbleme!", |
3730 | | - 'mobile-frontend-download-full-version' => "Scareche 'a versiona comblete", |
| 4146 | + 'mobile-frontend-regular-site' => 'Visione da combiuter da tavole', |
3731 | 4147 | 'mobile-frontend-wml-continue' => 'Condinue ...', |
3732 | 4148 | 'mobile-frontend-wml-back' => 'Rrete ...', |
3733 | 4149 | 'mobile-frontend-view' => "Viste d'u mobile", |
— | — | @@ -3752,11 +4168,14 @@ |
3753 | 4169 | 'mobile-frontend-password' => 'Passuord:', |
3754 | 4170 | 'mobile-frontend-login' => 'Tràse', |
3755 | 4171 | 'mobile-frontend-placeholder' => "Scrive 'a ricerca toje aqquà...", |
| 4172 | + 'mobile-frontend-footer-sitename' => 'Uicchipèdie', |
3756 | 4173 | ); |
3757 | 4174 | |
3758 | 4175 | /** Russian (Русский) |
3759 | 4176 | * @author Bouron |
| 4177 | + * @author DR |
3760 | 4178 | * @author Dim Grits |
| 4179 | + * @author Eleferen |
3761 | 4180 | * @author Express2000 |
3762 | 4181 | * @author Kaganer |
3763 | 4182 | * @author Rave |
— | — | @@ -3788,14 +4207,16 @@ |
3789 | 4208 | 'mobile-frontend-disable-images' => 'Отключить изображения на мобильном сайте', |
3790 | 4209 | 'mobile-frontend-enable-images' => 'Включить изображения на мобильном сайте', |
3791 | 4210 | 'mobile-frontend-news-items' => 'Новости', |
3792 | | - 'mobile-frontend-leave-feedback-title' => 'Оставить отзыв о пользовании мобильным интерфейсом', |
| 4211 | + 'mobile-frontend-leave-feedback-title' => 'Отзыв о мобильной версии сайта', |
3793 | 4212 | 'mobile-frontend-leave-feedback-notice' => 'Ваш отзыв поможет нам улучшить использование мобильного сайта. Он будет опубликован публично (вместе с вашим именем пользователя, версией браузера и операционной системы) на странице "$1". Пожалуйста, попробуйте выбрать информативную сюжетную линию, например «вопросы форматирования широких таблиц». Ваш отзыв должен быть в соответствии с условиями использования.', |
3794 | | - 'mobile-frontend-leave-feedback-subject' => 'Тема', |
3795 | | - 'mobile-frontend-leave-feedback-message' => 'Сообщение', |
| 4213 | + 'mobile-frontend-leave-feedback-subject' => 'Тема:', |
| 4214 | + 'mobile-frontend-leave-feedback-message' => 'Сообщение:', |
3796 | 4215 | 'mobile-frontend-leave-feedback-submit' => 'Отправить отзыв', |
3797 | 4216 | 'mobile-frontend-leave-feedback-link-text' => 'Отзывы о Мобильном интерфейсе', |
3798 | 4217 | 'mobile-frontend-leave-feedback' => 'Оставить отзыв', |
3799 | 4218 | 'mobile-frontend-feedback-page' => 'Project:Mobile Extension Feedback', |
| 4219 | + 'mobile-frontend-feedback-no-subject' => '(без темы)', |
| 4220 | + 'mobile-frontend-feedback-no-message' => 'Пожалуйста, введите здесь Ваше сообщение', |
3800 | 4221 | 'mobile-frontend-leave-feedback-thanks' => 'Спасибо за ваш отзыв!', |
3801 | 4222 | 'mobile-frontend-language' => 'Язык', |
3802 | 4223 | 'mobile-frontend-username' => 'Имя участника:', |
— | — | @@ -3804,6 +4225,9 @@ |
3805 | 4226 | 'mobile-frontend-placeholder' => 'Строка для поиска...', |
3806 | 4227 | 'mobile-frontend-dismiss-notification' => 'скрыть это уведомление', |
3807 | 4228 | 'mobile-frontend-clear-search' => 'Очистить', |
| 4229 | + 'mobile-frontend-footer-sitename' => 'Википедия', |
| 4230 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Условия использования</a>', |
| 4231 | + 'mobile-frontend-unknown-option' => 'Неизвестный параметр "$1".', |
3808 | 4232 | ); |
3809 | 4233 | |
3810 | 4234 | /** Rusyn (Русиньскый) |
— | — | @@ -4057,6 +4481,7 @@ |
4058 | 4482 | 'mobile-frontend-back-to-top-of-section' => 'Skoči nazaj za oddelek', |
4059 | 4483 | 'mobile-frontend-show-button' => 'pokaži', |
4060 | 4484 | 'mobile-frontend-hide-button' => 'skrij', |
| 4485 | + 'mobile-frontend-empty-homepage' => 'Domača stran potrebuje popravilo. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">Več lahko preberete tukaj.</a>', |
4061 | 4486 | 'mobile-frontend-regular-site' => 'Pogled namizja', |
4062 | 4487 | 'mobile-frontend-wml-continue' => 'Nadaljuj ...', |
4063 | 4488 | 'mobile-frontend-wml-back' => 'Nazaj ...', |
— | — | @@ -4089,6 +4514,13 @@ |
4090 | 4515 | 'mobile-frontend-placeholder' => 'Vnesite svoj iskalni niz tukaj ...', |
4091 | 4516 | 'mobile-frontend-dismiss-notification' => 'skrij obvestilo', |
4092 | 4517 | 'mobile-frontend-clear-search' => 'Počisti', |
| 4518 | + 'mobile-frontend-privacy-link-text' => 'Zasebnost', |
| 4519 | + 'mobile-frontend-about-link-text' => 'O programu', |
| 4520 | + 'mobile-frontend-footer-more' => 'več', |
| 4521 | + 'mobile-frontend-footer-less' => 'manj', |
| 4522 | + 'mobile-frontend-footer-sitename' => 'Wikipedija', |
| 4523 | + 'mobile-frontend-footer-license' => 'Vsebina je dostopna pod <a href="http://wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a><br /><a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Pogoji uporabe</a>', |
| 4524 | + 'mobile-frontend-footer-contact' => 'Stik', |
4093 | 4525 | ); |
4094 | 4526 | |
4095 | 4527 | /** Albanian (Shqip) |
— | — | @@ -4250,7 +4682,7 @@ |
4251 | 4683 | 'mobile-frontend-back-to-top-of-section' => 'Hoppa ett avsnitt bakåt', |
4252 | 4684 | 'mobile-frontend-show-button' => 'Visa', |
4253 | 4685 | 'mobile-frontend-hide-button' => 'Göm', |
4254 | | - 'mobile-frontend-regular-site' => 'Visa denna sida på vanliga {{SITENAME}}', |
| 4686 | + 'mobile-frontend-regular-site' => 'Skrivbordsvy', |
4255 | 4687 | 'mobile-frontend-wml-continue' => 'Fortsätt ...', |
4256 | 4688 | 'mobile-frontend-wml-back' => 'Tillbaka ...', |
4257 | 4689 | 'mobile-frontend-view' => 'Mobil vy', |
— | — | @@ -4280,6 +4712,14 @@ |
4281 | 4713 | 'mobile-frontend-password' => 'Lösenord:', |
4282 | 4714 | 'mobile-frontend-login' => 'Logga in', |
4283 | 4715 | 'mobile-frontend-placeholder' => 'Skriv din sökning här...', |
| 4716 | + 'mobile-frontend-clear-search' => 'Rensa', |
| 4717 | + 'mobile-frontend-privacy-link-text' => 'Sekretess', |
| 4718 | + 'mobile-frontend-about-link-text' => 'Om', |
| 4719 | + 'mobile-frontend-footer-more' => 'mer', |
| 4720 | + 'mobile-frontend-footer-less' => 'mindre', |
| 4721 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 4722 | + 'mobile-frontend-footer-license' => 'Innehåll som finns tillgängligt under <a href="http://wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a><br /><a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">Användarvillkor</a>', |
| 4723 | + 'mobile-frontend-footer-contact' => 'Kontakt', |
4284 | 4724 | ); |
4285 | 4725 | |
4286 | 4726 | /** Swahili (Kiswahili) */ |
— | — | @@ -4300,6 +4740,7 @@ |
4301 | 4741 | ); |
4302 | 4742 | |
4303 | 4743 | /** Tamil (தமிழ்) |
| 4744 | + * @author Logicwiki |
4304 | 4745 | * @author Shanmugamp7 |
4305 | 4746 | * @author Sodabottle |
4306 | 4747 | * @author Surya Prakash.S.A. |
— | — | @@ -4313,16 +4754,18 @@ |
4314 | 4755 | 'mobile-frontend-back-to-top-of-section' => 'முதல் பத்திக்குச் செல்', |
4315 | 4756 | 'mobile-frontend-show-button' => 'காட்டு', |
4316 | 4757 | 'mobile-frontend-hide-button' => 'மறை', |
4317 | | - 'mobile-frontend-regular-site' => 'இப்பக்கத்தை தமிழ் விக்கிப்பீடியாவில் காண', |
| 4758 | + 'mobile-frontend-regular-site' => 'இப்பக்கத்தை வழக்கமான {{SITENAME}} தளத்தில் காண', |
4318 | 4759 | 'mobile-frontend-wml-continue' => 'தொடர்க...', |
4319 | 4760 | 'mobile-frontend-wml-back' => 'பின்னால்...', |
4320 | 4761 | 'mobile-frontend-view' => 'கைபேசிப் பார்வை', |
| 4762 | + 'mobile-frontend-view-mobile' => 'கைபேசி', |
4321 | 4763 | 'mobile-frontend-opt-in-yes-button' => 'ஆம்', |
4322 | 4764 | 'mobile-frontend-opt-in-no-button' => 'இல்லை', |
4323 | 4765 | 'mobile-frontend-opt-out-yes-button' => 'ஆம்', |
4324 | 4766 | 'mobile-frontend-opt-out-no-button' => 'இல்லை', |
4325 | 4767 | 'mobile-frontend-disable-images' => 'கைபேசித் தளத்தில் படிமங்களைச் செயலிழக்கச் செய்க', |
4326 | 4768 | 'mobile-frontend-enable-images' => 'கைபேசித் தளத்தில் படிமங்களைச் செயற்படுத்துக', |
| 4769 | + 'mobile-frontend-enable-images-prefix' => 'படிமங்கள்', |
4327 | 4770 | 'mobile-frontend-news-items' => 'செய்திகளில்', |
4328 | 4771 | 'mobile-frontend-leave-feedback-title' => 'கைபேசித் தளத்தைப் பற்றிய கருத்துகளைத் தரவும்', |
4329 | 4772 | 'mobile-frontend-leave-feedback-subject' => 'பொருள்', |
— | — | @@ -4336,6 +4779,10 @@ |
4337 | 4780 | 'mobile-frontend-password' => 'கடவுச்சொல்:', |
4338 | 4781 | 'mobile-frontend-login' => 'புகுபதிகை', |
4339 | 4782 | 'mobile-frontend-placeholder' => 'உங்கள் தேடலை இங்கு தட்டச்சு செய்யவும்...', |
| 4783 | + 'mobile-frontend-about-link-text' => 'விவரம்', |
| 4784 | + 'mobile-frontend-footer-more' => 'மேலும்', |
| 4785 | + 'mobile-frontend-footer-sitename' => 'தளத்தின் பெயர்', |
| 4786 | + 'mobile-frontend-footer-contact' => 'தொடர்புக்கு', |
4340 | 4787 | ); |
4341 | 4788 | |
4342 | 4789 | /** Telugu (తెలుగు) |
— | — | @@ -4358,13 +4805,15 @@ |
4359 | 4806 | 'mobile-frontend-opt-out-yes-button' => 'అవును', |
4360 | 4807 | 'mobile-frontend-opt-out-no-button' => 'కాదు', |
4361 | 4808 | 'mobile-frontend-news-items' => 'వార్తల్లో', |
4362 | | - 'mobile-frontend-leave-feedback-subject' => 'విషయం', |
4363 | | - 'mobile-frontend-leave-feedback-message' => 'సందేశం', |
| 4809 | + 'mobile-frontend-leave-feedback-subject' => 'విషయం:', |
| 4810 | + 'mobile-frontend-leave-feedback-message' => 'సందేశం:', |
4364 | 4811 | 'mobile-frontend-leave-feedback-thanks' => 'మీ ప్రతిస్పందనకు కృతజ్ఞతలు!', |
4365 | 4812 | 'mobile-frontend-language' => 'భాష', |
4366 | 4813 | 'mobile-frontend-username' => 'వాడుకరి పేరు:', |
4367 | 4814 | 'mobile-frontend-password' => 'సంకేతపదం:', |
4368 | 4815 | 'mobile-frontend-login' => 'ప్రవేశించండి', |
| 4816 | + 'mobile-frontend-about-link-text' => 'గురించి', |
| 4817 | + 'mobile-frontend-footer-sitename' => 'వికీపీడియా', |
4369 | 4818 | ); |
4370 | 4819 | |
4371 | 4820 | /** Tetum (Tetun) */ |
— | — | @@ -4455,8 +4904,7 @@ |
4456 | 4905 | 'mobile-frontend-back-to-top-of-section' => 'Bir Bölüm Geri Atla', |
4457 | 4906 | 'mobile-frontend-show-button' => 'Göster', |
4458 | 4907 | 'mobile-frontend-hide-button' => 'Gizle', |
4459 | | - 'mobile-frontend-regular-site' => 'Bu sayfayı normal {{SITENAME}} üzerinde görüntüle', |
4460 | | - 'mobile-frontend-explain-disable' => "{{SITENAME}}'ın mobil sürümünü devre dışı bırakmak istediğinize emin misiniz? Eğer <b>Devre dışı bırak</b>'ı seçerseniz, bundan sonra {{SITENAME}}'ı ziyaret ettiğinizde, {{SITENAME}}'ın bu mobil görünümüne yönlendirilmeyeceksiniz.", |
| 4908 | + 'mobile-frontend-regular-site' => 'Masaüstü görünümü', |
4461 | 4909 | 'mobile-frontend-wml-back' => 'Geri...', |
4462 | 4910 | 'mobile-frontend-view' => 'Mobil Görünüm', |
4463 | 4911 | 'mobile-frontend-opt-in-yes-button' => 'evet', |
— | — | @@ -4469,6 +4917,7 @@ |
4470 | 4918 | 'mobile-frontend-password' => 'Şifre:', |
4471 | 4919 | 'mobile-frontend-login' => 'Oturum aç', |
4472 | 4920 | 'mobile-frontend-clear-search' => 'Temizle', |
| 4921 | + 'mobile-frontend-footer-sitename' => 'Vikipedi', |
4473 | 4922 | ); |
4474 | 4923 | |
4475 | 4924 | /** Tatar (Cyrillic script) (Татарча) |
— | — | @@ -4533,8 +4982,8 @@ |
4534 | 4983 | 'mobile-frontend-news-items' => 'У новинах', |
4535 | 4984 | 'mobile-frontend-leave-feedback-title' => 'Залиште для нас власний відгук про мобільний інтерфейс', |
4536 | 4985 | 'mobile-frontend-leave-feedback-notice' => 'Ваш відгук допоможе нам покращити користування мобільним сайтом. Він буде розміщений публічно (разом з іменем користувача, версією браузера та операційної системи) на сторінці "$1". Будь ласка, оберіть інформативний рядок, наприклад, "Проблеми форматування широких таблиць". Висловлюйтесь у відповідності до наших умов використання.', |
4537 | | - 'mobile-frontend-leave-feedback-subject' => 'Тема', |
4538 | | - 'mobile-frontend-leave-feedback-message' => 'Повідомлення', |
| 4986 | + 'mobile-frontend-leave-feedback-subject' => 'Тема:', |
| 4987 | + 'mobile-frontend-leave-feedback-message' => 'Повідомлення:', |
4539 | 4988 | 'mobile-frontend-leave-feedback-submit' => 'Залишити відгук', |
4540 | 4989 | 'mobile-frontend-leave-feedback-link-text' => 'Відгуки про мобільний інтерфейс', |
4541 | 4990 | 'mobile-frontend-leave-feedback' => 'Залишити відгук', |
— | — | @@ -4571,12 +5020,11 @@ |
4572 | 5021 | 'mobile-frontend-error-page-text' => "{{SITENAME}} mobile la semo 'ncora drio svilupar e semo drio laorar come i mussi par risòlvar tuti i nostri erori interni. Gavemo zà avisà de sto eror e presto el vegnarà sistemà. Próa da novo pi vanti!", |
4573 | 5022 | ); |
4574 | 5023 | |
4575 | | -/** Veps (Vepsän kel') |
| 5024 | +/** Veps (Vepsän kel’) |
4576 | 5025 | * @author Игорь Бродский |
4577 | 5026 | */ |
4578 | 5027 | $messages['vep'] = array( |
4579 | 5028 | 'mobile-frontend-search-submit' => 'Tehta', |
4580 | | - 'mobile-frontend-search-results' => "Ecindan rezul'tatad", |
4581 | 5029 | 'mobile-frontend-home-button' => 'Pälehtpolele', |
4582 | 5030 | 'mobile-frontend-show-button' => 'Ozutada', |
4583 | 5031 | 'mobile-frontend-hide-button' => 'Peitta', |
— | — | @@ -4606,10 +5054,13 @@ |
4607 | 5055 | 'mobile-frontend-back-to-top-of-section' => 'Nhảy về đầu phần', |
4608 | 5056 | 'mobile-frontend-show-button' => 'Hiện', |
4609 | 5057 | 'mobile-frontend-hide-button' => 'Ẩn', |
| 5058 | + 'mobile-frontend-empty-homepage' => 'Trang chủ này cần được thiết lập. <a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway?uselang=vi#Mobile_homepage">Xem chi tiết</a>.', |
4610 | 5059 | 'mobile-frontend-regular-site' => 'Bản dành cho máy tính để bàn', |
4611 | 5060 | 'mobile-frontend-wml-continue' => 'Tiếp tục…', |
4612 | 5061 | 'mobile-frontend-wml-back' => 'Quay lại…', |
4613 | 5062 | 'mobile-frontend-view' => 'Kiểu di động', |
| 5063 | + 'mobile-frontend-view-desktop' => 'Máy tính để bàn', |
| 5064 | + 'mobile-frontend-view-mobile' => 'Di động', |
4614 | 5065 | 'mobile-frontend-opt-in-message' => 'Muốn tham gia cuộc thử nghiệm giao diện di động?', |
4615 | 5066 | 'mobile-frontend-opt-in-yes-button' => 'có', |
4616 | 5067 | 'mobile-frontend-opt-in-no-button' => 'không', |
— | — | @@ -4622,15 +5073,21 @@ |
4623 | 5074 | 'mobile-frontend-opt-out-explain' => 'Với việc bỏ cuộc thử nghiệm di động, tất cả các tính năng thử nghiệm sẽ bị tắt và bạn sẽ trở về giao diện di động bình thường.', |
4624 | 5075 | 'mobile-frontend-disable-images' => 'Tắt hình ảnh tại trang di động', |
4625 | 5076 | 'mobile-frontend-enable-images' => 'Hiện hình ảnh trên trang di động', |
| 5077 | + 'mobile-frontend-enable-images-prefix' => 'Hình ảnh', |
| 5078 | + 'mobile-frontend-off' => 'TẮT', |
| 5079 | + 'mobile-frontend-on' => 'BẬT', |
4626 | 5080 | 'mobile-frontend-news-items' => 'Tin tức', |
4627 | | - 'mobile-frontend-leave-feedback-title' => 'Gửi phản hồi về giao diện di động', |
| 5081 | + 'mobile-frontend-leave-feedback-title' => 'Phản hồi về giao diện di động', |
4628 | 5082 | 'mobile-frontend-leave-feedback-notice' => 'Phản hồi giúp chúng tôi cải tiến các trang di động. Những cảm nghĩ của bạn sẽ được đăng công khai vào trang “$1”, cùng với tên người dùng, phiên bản trình duyệt, và hệ điều hành của bạn. Xin vui lòng chọn một tiêu đề có ý nghĩa, thí dụ “Vấn đề hiển thị bảng rộng”. Phản hồi của bạn sẽ được xử lý theo các điều khoản sử dụng.', |
4629 | | - 'mobile-frontend-leave-feedback-subject' => 'Tiêu đề', |
4630 | | - 'mobile-frontend-leave-feedback-message' => 'Thông điệp', |
| 5083 | + 'mobile-frontend-leave-feedback-subject' => 'Tiêu đề:', |
| 5084 | + 'mobile-frontend-leave-feedback-message' => 'Thông điệp:', |
4631 | 5085 | 'mobile-frontend-leave-feedback-submit' => 'Gửi phản hồi', |
4632 | 5086 | 'mobile-frontend-leave-feedback-link-text' => 'Phản hồi về giao diện di động', |
4633 | 5087 | 'mobile-frontend-leave-feedback' => 'Gửi phản hồi', |
4634 | 5088 | 'mobile-frontend-feedback-page' => 'Project:Phản hồi Phần mở rộng Di động', |
| 5089 | + 'mobile-frontend-feedback-no-subject' => '(không tiêu đề)', |
| 5090 | + 'mobile-frontend-feedback-no-message' => 'Xin vui lòng nhắn tin vào đây', |
| 5091 | + 'mobile-frontend-feedback-edit-summary' => '$1 – do [[Special:MobileFeedback|công cụ phản hồi di động]] đăng tự động', |
4635 | 5092 | 'mobile-frontend-leave-feedback-thanks' => 'Cám ơn phản hồi của bạn!', |
4636 | 5093 | 'mobile-frontend-language' => 'Ngôn ngữ', |
4637 | 5094 | 'mobile-frontend-username' => 'Tên người dùng:', |
— | — | @@ -4639,6 +5096,15 @@ |
4640 | 5097 | 'mobile-frontend-placeholder' => 'Nhập tìm kiếm của bạn tại đây…', |
4641 | 5098 | 'mobile-frontend-dismiss-notification' => 'bỏ qua thông báo này', |
4642 | 5099 | 'mobile-frontend-clear-search' => 'Tẩy trống', |
| 5100 | + 'mobile-frontend-privacy-link-text' => 'Riêng tư', |
| 5101 | + 'mobile-frontend-about-link-text' => 'Giới thiệu', |
| 5102 | + 'mobile-frontend-footer-more' => 'thêm', |
| 5103 | + 'mobile-frontend-footer-less' => 'bớt', |
| 5104 | + 'mobile-frontend-footer-sitename' => 'Wikipedia', |
| 5105 | + 'mobile-frontend-footer-license' => 'Nội dung có sẵn theo <a href="https://www.mediawiki.org//vi.m.wikipedia.org/wiki/Wikipedia:Nguyên_văn_Giấy_phép_Creative_Commons_Ghi_công–Chia_sẻ_tương_tự_phiên_bản_3.0_Chưa_chuyển_đổi?useformat=mobile">CC BY-SA 3.0</a>', |
| 5106 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Điều_khoản_Sử_dụng?useformat=mobile&uselang=vi">Các Điều khoản Sử dụng</a>', |
| 5107 | + 'mobile-frontend-footer-contact' => 'Liên lạc', |
| 5108 | + 'mobile-frontend-unknown-option' => 'Tùy chọn “$1” là bất ngờ.', |
4643 | 5109 | ); |
4644 | 5110 | |
4645 | 5111 | /** Volapük (Volapük) |
— | — | @@ -4705,11 +5171,11 @@ |
4706 | 5172 | 'mobile-frontend-back-to-top-of-section' => 'צוריקשפרינגען אַן אָפטייל', |
4707 | 5173 | 'mobile-frontend-show-button' => 'ווײַזן', |
4708 | 5174 | 'mobile-frontend-hide-button' => 'באַהאַלטן', |
4709 | | - 'mobile-frontend-regular-site' => 'באַקוקן דעם בלאַט אין דעם נארמאַלן {{SITENAME}}', |
4710 | | - 'mobile-frontend-error-page-text' => "די מאבילע ווערסיע פֿון {{SITENAME}} ווערט נאך אַנטוויקלט און מיר אַרבעטן שווער צו פֿארריכטן אַלע אונזערע אינערלעכע גרײַזן. מ'האט שוין אינפֿאמירט אונז וועגן דעם דאָזיגן גרײַז און מ'וועט אים באַלד פֿאַרריכטן. באַקוקט דעם בלאַט א ביסל שפעטער!", |
| 5175 | + 'mobile-frontend-regular-site' => 'נארמאַלער קאמפיוטער באַקוק', |
4711 | 5176 | 'mobile-frontend-wml-continue' => 'ווײַטער …', |
4712 | 5177 | 'mobile-frontend-wml-back' => 'צוריק ...', |
4713 | 5178 | 'mobile-frontend-view' => 'מאבילער קוק', |
| 5179 | + 'mobile-frontend-opt-in-message' => 'אנטיילנעמען אין דער מאבייל בעטע?', |
4714 | 5180 | 'mobile-frontend-opt-in-yes-button' => 'יאָ', |
4715 | 5181 | 'mobile-frontend-opt-in-no-button' => 'ניין', |
4716 | 5182 | 'mobile-frontend-opt-out-yes-button' => 'יא', |
— | — | @@ -4748,6 +5214,7 @@ |
4749 | 5215 | |
4750 | 5216 | /** Simplified Chinese (中文(简体)) |
4751 | 5217 | * @author Anakmalaysia |
| 5218 | + * @author Dimension |
4752 | 5219 | * @author Hzy980512 |
4753 | 5220 | * @author Kuailong |
4754 | 5221 | * @author Liangent |
— | — | @@ -4755,6 +5222,7 @@ |
4756 | 5223 | * @author PhiLiP |
4757 | 5224 | * @author Shizhao |
4758 | 5225 | * @author Xiaomingyan |
| 5226 | + * @author Yfdyh000 |
4759 | 5227 | */ |
4760 | 5228 | $messages['zh-hans'] = array( |
4761 | 5229 | 'mobile-frontend-desc' => '移动前端', |
— | — | @@ -4765,10 +5233,13 @@ |
4766 | 5234 | 'mobile-frontend-back-to-top-of-section' => '跳转至前一段落', |
4767 | 5235 | 'mobile-frontend-show-button' => '展开', |
4768 | 5236 | 'mobile-frontend-hide-button' => '隐藏', |
| 5237 | + 'mobile-frontend-empty-homepage' => '本网页需要进行配置。<a href="http://meta.wikimedia.org/wiki/Mobile_Projects/Mobile_Gateway#Mobile_homepage">点击此处了解更多</a>', |
4769 | 5238 | 'mobile-frontend-regular-site' => '桌面视图', |
4770 | 5239 | 'mobile-frontend-wml-continue' => '继续……', |
4771 | 5240 | 'mobile-frontend-wml-back' => '后退……', |
4772 | 5241 | 'mobile-frontend-view' => '移动浏览', |
| 5242 | + 'mobile-frontend-view-desktop' => '桌面版', |
| 5243 | + 'mobile-frontend-view-mobile' => '移动版', |
4773 | 5244 | 'mobile-frontend-opt-in-message' => '您想参加移动公测吗?', |
4774 | 5245 | 'mobile-frontend-opt-in-yes-button' => '是', |
4775 | 5246 | 'mobile-frontend-opt-in-no-button' => '否', |
— | — | @@ -4781,14 +5252,20 @@ |
4782 | 5253 | 'mobile-frontend-opt-out-explain' => '离开公测后,您将禁用所有实验性功能,回归经典移动使用。', |
4783 | 5254 | 'mobile-frontend-disable-images' => '移动网站上禁用图像', |
4784 | 5255 | 'mobile-frontend-enable-images' => '移动网站上启用图像', |
| 5256 | + 'mobile-frontend-enable-images-prefix' => '图像', |
| 5257 | + 'mobile-frontend-off' => '关', |
| 5258 | + 'mobile-frontend-on' => '开', |
4785 | 5259 | 'mobile-frontend-news-items' => '新闻动态', |
4786 | | - 'mobile-frontend-leave-feedback-title' => '为有关手提网站体验留下反馈', |
| 5260 | + 'mobile-frontend-leave-feedback-title' => '移动版网站反馈', |
4787 | 5261 | 'mobile-frontend-leave-feedback-notice' => '您的反馈意见帮助我们改善您的移动网站体验。它将公开(随您的用户名称、 浏览器版本和操作系统) 张贴到页面“$1”。请选择内容丰富的主题行,例如“宽表格式有问题”。您的反馈受我们的使用条款。', |
4788 | | - 'mobile-frontend-leave-feedback-subject' => '主题', |
4789 | | - 'mobile-frontend-leave-feedback-message' => '信息', |
| 5262 | + 'mobile-frontend-leave-feedback-subject' => '主题:', |
| 5263 | + 'mobile-frontend-leave-feedback-message' => '信息:', |
4790 | 5264 | 'mobile-frontend-leave-feedback-submit' => '提交反馈', |
4791 | 5265 | 'mobile-frontend-leave-feedback-link-text' => '移动前端反馈', |
4792 | 5266 | 'mobile-frontend-leave-feedback' => '留下反馈', |
| 5267 | + 'mobile-frontend-feedback-no-subject' => '(没有主题)', |
| 5268 | + 'mobile-frontend-feedback-no-message' => '请在这里输入信息', |
| 5269 | + 'mobile-frontend-feedback-edit-summary' => '$1 - 使用[[Special:MobileFeedback|移动版反馈工具]]自动发出', |
4793 | 5270 | 'mobile-frontend-leave-feedback-thanks' => '谢谢您的反馈意见!', |
4794 | 5271 | 'mobile-frontend-language' => '语言', |
4795 | 5272 | 'mobile-frontend-username' => '用户名:', |
— | — | @@ -4797,6 +5274,15 @@ |
4798 | 5275 | 'mobile-frontend-placeholder' => '在这里输入搜索内容...', |
4799 | 5276 | 'mobile-frontend-dismiss-notification' => '关闭该通知', |
4800 | 5277 | 'mobile-frontend-clear-search' => '清除', |
| 5278 | + 'mobile-frontend-privacy-link-text' => '隐私', |
| 5279 | + 'mobile-frontend-about-link-text' => '关于', |
| 5280 | + 'mobile-frontend-footer-more' => '更多', |
| 5281 | + 'mobile-frontend-footer-less' => '更少', |
| 5282 | + 'mobile-frontend-footer-sitename' => '维基百科', |
| 5283 | + 'mobile-frontend-footer-license' => '内容在<a href="https://www.mediawiki.org//en.m.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License?useformat=mobile">CC BY-SA 3.0</a>协议下可用', |
| 5284 | + 'mobile-frontend-terms-use' => '<a href="https://www.mediawiki.org//wikimediafoundation.org/wiki/Terms_of_use?useformat=mobile">使用条款</a>', |
| 5285 | + 'mobile-frontend-footer-contact' => '联系', |
| 5286 | + 'mobile-frontend-unknown-option' => '未认可的选项“$1”。', |
4801 | 5287 | ); |
4802 | 5288 | |
4803 | 5289 | /** Traditional Chinese (中文(繁體)) |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/common.css |
— | — | @@ -196,7 +196,6 @@ |
197 | 197 | outline-width: initial; |
198 | 198 | outline-color: initial; |
199 | 199 | padding: 0; |
200 | | - height: 17px; |
201 | 200 | } |
202 | 201 | |
203 | 202 | #search::-webkit-search-cancel-button { |
— | — | @@ -229,28 +228,11 @@ |
230 | 229 | } |
231 | 230 | |
232 | 231 | table { |
233 | | - border-spacing: 0 !important; |
234 | | - max-width: 100%; |
235 | | - border-collapse: collapse !important; |
236 | | - border: 1px solid #cccccc; |
237 | | - padding: 3px; |
238 | | - margin-bottom: 15px; |
| 232 | + display: block; |
| 233 | + overflow-x: auto; |
| 234 | + -webkit-overflow-scrolling: touch; |
239 | 235 | } |
240 | 236 | |
241 | | -table.gallery .thumb[style] { |
242 | | - border: 0; |
243 | | - padding: 0 !important; |
244 | | - width: auto !important; |
245 | | - margin: 0 auto; |
246 | | -} |
247 | | - |
248 | | -table.geography[style] td[style*="text-align"], |
249 | | -table.geography[style] td[colspan="2"] { |
250 | | - text-align: left !important; |
251 | | - margin-left: 0 !important; |
252 | | - margin-right: 0 !important; |
253 | | -} |
254 | | - |
255 | 237 | table.toc h2 { |
256 | 238 | border: 0; |
257 | 239 | padding: 0; |
— | — | @@ -264,12 +246,6 @@ |
265 | 247 | border-bottom: 1px solid #cccccc; |
266 | 248 | } |
267 | 249 | |
268 | | -table[style] { |
269 | | - float: none !important; |
270 | | - margin-left: 0 !important; |
271 | | - width: 100% !important; |
272 | | -} |
273 | | - |
274 | 250 | table.navbox td.navbox-group { |
275 | 251 | background: #ddddff; |
276 | 252 | width: 25%; |
— | — | @@ -281,11 +257,6 @@ |
282 | 258 | border-bottom: 0; |
283 | 259 | } |
284 | 260 | |
285 | | -table.navbox { |
286 | | - font-size: 0.9em; |
287 | | - width: 100% !important; |
288 | | -} |
289 | | - |
290 | 261 | table.gallery .gallerytext { |
291 | 262 | margin-top: -12px; |
292 | 263 | text-align: center; |
— | — | @@ -296,16 +267,6 @@ |
297 | 268 | padding: 5px; |
298 | 269 | } |
299 | 270 | |
300 | | -table.navbox div[style*="padding"] { |
301 | | - padding-left: 0 !important; |
302 | | - padding-right: 0 !important; |
303 | | -} |
304 | | - |
305 | | -table.gallery .gallerybox[style] { |
306 | | - width: auto !important; |
307 | | - margin-bottom: -16px; |
308 | | -} |
309 | | - |
310 | 271 | table td, |
311 | 272 | table th { |
312 | 273 | border: 1px solid #cccccc; |
— | — | @@ -389,14 +350,6 @@ |
390 | 351 | padding: 3px; |
391 | 352 | } |
392 | 353 | |
393 | | -table.navbox div[style*="padding"] a { |
394 | | - white-space: pre-wrap; |
395 | | -} |
396 | | - |
397 | | -table.navbox span[style*="white"] { |
398 | | - white-space: pre-wrap !important; |
399 | | -} |
400 | | - |
401 | 354 | table.navbox td, |
402 | 355 | table.navbox th { |
403 | 356 | padding: 0; |
— | — | @@ -424,15 +377,6 @@ |
425 | 378 | border: 1px solid #cccccc; |
426 | 379 | } |
427 | 380 | |
428 | | -table.geography[style] th { |
429 | | - text-align: left; |
430 | | -} |
431 | | - |
432 | | -table.geography[style] td[style*="text-align"] div[style], |
433 | | -table.geography[style] td[colspan="2"] div[style] { |
434 | | - text-align: left !important; |
435 | | -} |
436 | | - |
437 | 381 | table.admin { |
438 | 382 | width: 300px; |
439 | 383 | } |
— | — | @@ -540,24 +484,6 @@ |
541 | 485 | text-align: center; |
542 | 486 | } |
543 | 487 | |
544 | | -.thumb .thumbinner[style] { |
545 | | - margin: 5px auto; |
546 | | - max-width: 100%; |
547 | | - width: auto !important; |
548 | | -} |
549 | | - |
550 | | -.thumb img { |
551 | | - max-width: 100% !important; |
552 | | - width: auto !important; |
553 | | -} |
554 | | - |
555 | | -.thumb .thumbcaption { |
556 | | - width: 100%; |
557 | | - margin: 5px 10px 0; |
558 | | - text-align: center; |
559 | | - width: auto !important; |
560 | | -} |
561 | | - |
562 | 488 | img.thumbborder { |
563 | 489 | border: 1px solid #cccccc; |
564 | 490 | } |
— | — | @@ -580,6 +506,7 @@ |
581 | 507 | } |
582 | 508 | |
583 | 509 | #content_wrapper { |
| 510 | + margin-top: 10px; |
584 | 511 | clear: both; |
585 | 512 | margin: 0 8px; |
586 | 513 | } |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/header.css |
— | — | @@ -14,7 +14,7 @@ |
15 | 15 | .clearlink { |
16 | 16 | top: 9px; |
17 | 17 | right: -18px; |
18 | | - width: 18px; |
| 18 | + width: 24px; |
19 | 19 | height: 20px; |
20 | 20 | background: url(images/close-button-beta.png) no-repeat scroll 0 0 transparent; |
21 | 21 | margin: 0; |
— | — | @@ -67,6 +67,11 @@ |
68 | 68 | vertical-align: middle; /* don't use line height here as placeholder on ripple positions incorrectly */ |
69 | 69 | } |
70 | 70 | |
| 71 | +html[dir="rtl"] .search_bar .search { |
| 72 | + /* @noflip */padding-right: 32px; |
| 73 | +} |
| 74 | + |
| 75 | + |
71 | 76 | #search::-webkit-search-cancel-button { |
72 | 77 | -webkit-appearance: none; |
73 | 78 | } |
— | — | @@ -125,10 +130,25 @@ |
126 | 131 | height: 40px; |
127 | 132 | width: 27px; |
128 | 133 | padding-bottom: 0; |
129 | | - text-indent: -999px; |
130 | 134 | cursor: pointer; |
131 | 135 | } |
132 | 136 | |
| 137 | +.goButton img { |
| 138 | + position: absolute; |
| 139 | + top: 0; |
| 140 | + left: 0; |
| 141 | + height: 40px; |
| 142 | + width: 27px; |
| 143 | +} |
| 144 | + |
| 145 | +/* for browsers with images disabled |
| 146 | +reduce font size so alt text more legible */ |
| 147 | +#remove-results, |
| 148 | +.goButton img, |
| 149 | +.clearlink { |
| 150 | + font-size: 8px; |
| 151 | +} |
| 152 | + |
133 | 153 | html[dir="rtl"] .goButton { |
134 | 154 | right: auto; |
135 | 155 | left: 0; |
— | — | @@ -309,7 +329,7 @@ |
310 | 330 | #remove-results { |
311 | 331 | display: none; |
312 | 332 | position: absolute; |
313 | | - width: 18px; |
| 333 | + width: 30px; |
314 | 334 | height: 40px; |
315 | 335 | text-align: center; |
316 | 336 | line-height: 40px; |
— | — | @@ -324,7 +344,6 @@ |
325 | 345 | margin-top: -6px; |
326 | 346 | z-index: 99; |
327 | 347 | border: 0px solid; |
328 | | - text-indent: -999px; |
329 | 348 | overflow: hidden; |
330 | 349 | } |
331 | 350 | |
— | — | @@ -335,3 +354,10 @@ |
336 | 355 | .full-screen-search #nav { |
337 | 356 | display: none !important; |
338 | 357 | } |
| 358 | + |
| 359 | +/* samsung galaxy s gt-19000 */ |
| 360 | +@media all and (max-width:240px) { |
| 361 | + #search { |
| 362 | + font-size: 0.8em; |
| 363 | + } |
| 364 | +} |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/hacks.css |
— | — | @@ -2,6 +2,7 @@ |
3 | 3 | present in wikitext |
4 | 4 | and MediaWiki:Common.css definitions |
5 | 5 | This file should not need to exist |
| 6 | +IMPORTANT: do not use selectors of the form [style*=padding] as they are known to damage the ios app |
6 | 7 | */ |
7 | 8 | |
8 | 9 | .navbox .hlist dd, |
— | — | @@ -26,7 +27,7 @@ |
27 | 28 | margin: 0 auto; |
28 | 29 | } |
29 | 30 | |
30 | | -table.geography[style] td[style*="text-align"], |
| 31 | +table.geography[style] td[style], |
31 | 32 | table.geography[style] td[colspan="2"] { |
32 | 33 | text-align: left !important; |
33 | 34 | margin-left: 0 !important; |
— | — | @@ -44,7 +45,7 @@ |
45 | 46 | width: 100% !important; |
46 | 47 | } |
47 | 48 | |
48 | | -table.navbox div[style*="padding"] { |
| 49 | +table.navbox div[style] { |
49 | 50 | padding-left: 0 !important; |
50 | 51 | padding-right: 0 !important; |
51 | 52 | } |
— | — | @@ -54,11 +55,8 @@ |
55 | 56 | margin-bottom: -16px; |
56 | 57 | } |
57 | 58 | |
58 | | -table.navbox div[style*="padding"] a { |
59 | | - white-space: pre-wrap; |
60 | | -} |
61 | | - |
62 | | -table.navbox span[style*="white"] { |
| 59 | +table.navbox div[style] a, |
| 60 | +table.navbox span[style] { |
63 | 61 | white-space: pre-wrap !important; |
64 | 62 | } |
65 | 63 | |
— | — | @@ -67,15 +65,6 @@ |
68 | 66 | border: 1px solid #cccccc; |
69 | 67 | } |
70 | 68 | |
71 | | -table.geography[style] th { |
72 | | - text-align: left; |
73 | | -} |
74 | | - |
75 | | -table.geography[style] td[style*="text-align"] div[style], |
76 | | -table.geography[style] td[colspan="2"] div[style] { |
77 | | - text-align: left !important; |
78 | | -} |
79 | | - |
80 | 69 | .thumb .thumbinner[style] { |
81 | 70 | margin: 5px auto; |
82 | 71 | max-width: 100%; |
— | — | @@ -93,3 +82,11 @@ |
94 | 83 | text-align: center; |
95 | 84 | width: auto !important; |
96 | 85 | } |
| 86 | + |
| 87 | +/* avoid float issues in fennec caused by MediaWiki:Common.css definiton */ |
| 88 | +div.tright, |
| 89 | +div.floatright, |
| 90 | +table.floatright { |
| 91 | + clear: none !important; |
| 92 | + float: none !important; |
| 93 | +} |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/footer.css |
— | — | @@ -50,12 +50,14 @@ |
51 | 51 | padding-left: 2px; |
52 | 52 | } |
53 | 53 | |
54 | | -#footer .settings li:first-child .left:after { |
| 54 | +html[dir="rtl"] #footer .settings li:first-child .left:before, |
| 55 | +html[dir="ltr"] #footer .settings li:first-child .left:after { |
55 | 56 | content: " | "; |
56 | 57 | visibility: visible; |
57 | 58 | } |
58 | 59 | |
59 | | -#footer .settings .left:after { |
| 60 | +html[dir="rtl"] #footer .settings .left:before, |
| 61 | +html[dir="ltr"] #footer .settings .left:after { |
60 | 62 | content: " | "; |
61 | 63 | visibility: hidden; |
62 | 64 | } |
— | — | @@ -70,12 +72,6 @@ |
71 | 73 | margin-right: 4px; |
72 | 74 | } |
73 | 75 | |
74 | | -html[dir="rtl"] #footer img { |
75 | | - float: right; |
76 | | - margin-right: 0px; |
77 | | - margin-left: 4px; |
78 | | -} |
79 | | - |
80 | 76 | #footer .toggleCopyright, |
81 | 77 | #footer .license { |
82 | 78 | font-weight: bold; |
— | — | @@ -90,12 +86,6 @@ |
91 | 87 | position: relative; |
92 | 88 | } |
93 | 89 | |
94 | | -html[dir="rtl"] #footer .toggleCopyright { |
95 | | - float: left; |
96 | | - padding-left: 32px; |
97 | | - padding-right: 0; |
98 | | -} |
99 | | - |
100 | 90 | #section_footer { |
101 | 91 | color: #333; |
102 | 92 | } |
— | — | @@ -108,11 +98,6 @@ |
109 | 99 | height: 22px; |
110 | 100 | } |
111 | 101 | |
112 | | -html[dir="rtl"] .toggleCopyright .hide, |
113 | | -html[dir="rtl"] .toggleCopyright .show { |
114 | | - right: auto; |
115 | | - left: 0; |
116 | | -} |
117 | 102 | |
118 | 103 | /* |
119 | 104 | disable animations in footer |
— | — | @@ -173,9 +158,3 @@ |
174 | 159 | font-size: 1.2em; |
175 | 160 | } |
176 | 161 | } |
177 | | - |
178 | | -@media all and (max-width: 500px) { |
179 | | - #footer { |
180 | | - padding: 12px 11px; |
181 | | - } |
182 | | -} |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/filepage.css |
— | — | @@ -8,15 +8,10 @@ |
9 | 9 | background-image: linear-gradient(center top, #3E3E3E 0%, #393939 14%, #2E2E2E 32%, #151515 64%, #080808 84%, #010101 100%); |
10 | 10 | color: white; |
11 | 11 | text-align: center; |
12 | | - |
13 | 12 | padding: 0; |
14 | 13 | margin: 0; |
15 | 14 | } |
16 | 15 | |
17 | | -#filetoc a { |
18 | | - color: white; |
19 | | -} |
20 | | - |
21 | 16 | #filetoc li { |
22 | 17 | display: inline-block; |
23 | 18 | padding: 8px; |
— | — | @@ -27,5 +22,3 @@ |
28 | 23 | max-width: 100%; |
29 | 24 | height: auto; |
30 | 25 | } |
31 | | - |
32 | | - |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/images/blank.gif |
Cannot display: file marked as a binary type. |
svn:mime-type = image/gif |
Property changes on: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/images/blank.gif |
___________________________________________________________________ |
Added: svn:mime-type |
33 | 26 | + image/gif |
Index: branches/wmf/1.19wmf1/extensions/MobileFrontend/stylesheets/beta_common.css |
— | — | @@ -108,6 +108,12 @@ |
109 | 109 | border: 1px solid gray; |
110 | 110 | } |
111 | 111 | |
| 112 | +table { |
| 113 | + display: block; |
| 114 | + overflow-x: auto; |
| 115 | + -webkit-overflow-scrolling: touch; |
| 116 | +} |
| 117 | + |
112 | 118 | table table { |
113 | 119 | border: 0; |
114 | 120 | margin-bottom: 0; |