1 頁 (共 1 頁)

擴充功能名稱:(Large Font/字體放大)

發表於 : 2018-01-25 , 19:36
懸壺子
擴充功能名稱:(Large Font/字體放大)

擴充功能作者:HiFiKabin

擴充功能描述:(原文/中文化描述)
Allows the user to increase the font size up to ~400% of the default and/or make all the font bold
允許用戶將字體增大到默認值的〜400%,並且/或者將所有字體加粗

擴充功能版本:3.2.0
可適用的 phpBB 版本:3.2.1
擴充功能下載:(連結位址)https://www.phpbb.com/customise/db/exte ... arge_font/
資料來源:(連結位址)

中文化:3.2.0版
font_ucp.php

代碼: 選擇全部

<?php
/**
*
* Larg Font
*
* @copyright (c) 2014 HiFiKabin
* @license GNU General Public License, version 2 (GPL-2.0)
* @@正體中文化 岐黃醫林 <https://herb-tw.com/phpBB/>
*/

/**
* 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%',
));