1 頁 (共 1 頁)

字體加大

發表於 : 2018-01-25 , 16:15
懸壺子
字體加大 Large Font

https://www.phpbb.com/customise/db/exte ... arge_font/

font_ucp.php 中文化

代碼: 選擇全部

<?php
/**
*
* Larg Font
*
* @copyright (c) 2014 HiFiKabin
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

$lang = array_merge($lang, array(
	'FONT_CHOICE'			=> '你喜歡字體是換更大的?',
	'FONT_BOLD'			=> '你更喜歡所有的字體是變成粗體字的嗎?',

	'USER_FONT_SIZE_105'	=> '105%',
	'USER_FONT_SIZE_110'	=> '110%',
	'USER_FONT_SIZE_115'	=> '120%',
	'USER_FONT_SIZE_130'	=> '130%',
	'USER_FONT_SIZE_150'	=> '150%',
	'USER_FONT_SIZE_200'	=> '200%',
	'USER_FONT_SIZE_300'	=> '300%',
	'USER_FONT_SIZE_400'	=> '400%',
));