Extension talk:BrowserHistoryLink

Latest comment: 11 years ago by Manbu in topic CSS

Translations edit

// Français
// @author Crainquebille
$messages['fr'] = array(
	'browserhistorylink-desc'           => 'Ajoute un tag créant un lien java pour avancer ou reculer dans l\'historique du navigateur.',
	'browserhistorylink-error-badtype'  => 'Le lien de type "$1" n\'est pas reconnu. Veuillez préciser "forward" ou "back".',
	'browserhistorylink-error-notype'   => 'Vous n\'avez pas précisé le type de lien. Veuillez préciser "forward" ou "back"',
	'browserhistorylink-error-gotoolow' => 'Le paramètre "go" ne peut être inférieur à 1.',
	'browserhistorylink-back'           => 'Revenir',
	'browserhistorylink-forward'        => 'Avancer'
);

// Deutsch
// @author Scooty
$messages['de'] = array(
	'browserhistorylink-desc'           => 'Fügt ein Tag zur Erzeugung eines Links mit einem JavaScript-Event hinzu, mit dem der Benutzer im Browser vorwärts und rückwärts navigieren kann.',
	'browserhistorylink-error-badtype'  => 'Linktyp "$1" wurde nicht erkannt. Bitte geben Sie "forward" oder "back" an.',
	'browserhistorylink-error-notype'   => 'Sie haben keinen Linktyp angegeben. Bitte geben Sie "forward" oder "back" an.',
	'browserhistorylink-error-gotoolow' => 'Der Parameter "go" darf nicht kleiner als 1 sein.',
	'browserhistorylink-back'           => 'Zurück',
	'browserhistorylink-forward'        => 'Vorwärts'
);

// implified Chinese ( 中文(简体) )
// @author pajoke
$messages['zh-hans'] = array(
	'browserhistorylink-desc'           => '在用户的浏览器中添加一个标记(tag)使用JavaScript事件(event)创建一个向前或向后的链接。',
	'browserhistorylink-error-badtype'  => '链接类型(type) "$1" 无法识别,请指定"forward"或"back"为类型参数.',
	'browserhistorylink-error-notype'   => '你没有指定链接类型。请使用"forward" 或 "back"作为参数.',
	'browserhistorylink-error-gotoolow' => '“go” 的参数值不能小于“1”.',
	'browserhistorylink-back'           => '返回上一页',
	'browserhistorylink-forward'        => '转到下一页'
);

CSS edit

Id like to style the <historylink style=...., but style=" .button();" wont work(added to main.css. Can You publish a style which gives a white css button or similar.
The style my be added to the main.css in the skin or in the same directory /extensions/historylink as a css like hcss1 hcss2
At the moment a solution is
<historylink type="back" style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #444444; padding: 4px 8px; background: -moz-linear-gradient(top, fcfcfc 0%, #cfcfcf); background: -webkit-gradient( linear, left top, left bottom, from(#fcfcfc), to(#cfcfcf)); -moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px; border: 1px solid #cccccc; -moz-box-shadow: 1px 2px 2px rgba(000,000,000,0.3), inset 0px 0px 2px rgba(255,255,255,1); -webkit-box-shadow: 1px 2px 2px rgba(000,000,000,0.3), inset 0px 0px 2px rgba(255,255,255,1); box-shadow: 1px 2px 2px rgba(000,000,000,0.3), inset 0px 0px 2px rgba(255,255,255,1); text-shadow: 0px 1px 0px rgba(255,255,255,1), 0px 0px 0px rgba(255,255,255,0);"> BACK </historylink>
but that is much code..... --Manbu (talk) 09:19, 2 November 2012 (UTC)Reply

Return to "BrowserHistoryLink" page.