1
0
mirror of https://github.com/e107inc/e107.git synced 2025-09-02 02:42:40 +02:00

Work on signup page, bbcode buttons, tooltips etc.

This commit is contained in:
CaMer0n
2012-06-02 08:12:16 +00:00
parent 98117308f2
commit 9197fadc54
21 changed files with 541 additions and 329 deletions

View File

@@ -40,8 +40,8 @@ define("IMALAN_29", "No images");
// define("IMALAN_31", "Guests only");
// define("IMALAN_32", "Members only");
// define("IMALAN_33", "Admin only");
define("IMALAN_34", "Enable PNG Fix");
define("IMALAN_35", "Fixes transparent PNG-24's with alpha transparency in IE 5 / 6 (Applies Sitewide)");
//define("IMALAN_34", "Enable PNG Fix");
//define("IMALAN_35", "Fixes transparent PNG-24's with alpha transparency in IE 5 / 6 (Applies Sitewide)");
define("IMALAN_36", "Validate avatar size and access");
define("IMALAN_37", "Avatar Validation");
@@ -82,8 +82,7 @@ define('IMALAN_68', 'Close');
define('IMALAN_69', 'Folder');
define('IMALAN_70', 'Non-system folder is found!');
define("IMALAN_71", "Icon Pool");
define("IMALAN_72", "Icons");
// define("IMALAN_72", "Icons");
?>

View File

@@ -31,14 +31,14 @@ define("LANHELP_20", "Massive");
define("LANHELP_21", "Click to open color dialog ...");
define("LANHELP_22", "Click to open size dialog ...");
define("LANHELP_23", "Insert link: [link]http://mysite.com[/link] or [link=http://yoursite.com]Visit My Site[/link]");
define("LANHELP_24", "Bold text: [b]This text will be bold[/b]", "font-weight:bold; width: 20px");
define("LANHELP_25", "Italic text: [i]This text will be italicised[/i]", "font-style:italic; width: 20px");
define("LANHELP_26", "Underline text: [u]This text will be underlined[/u]", "text-decoration: underline; width: 20px");
define("LANHELP_27", "Insert image: [img]mypicture.jpg[/img]");
define("LANHELP_28", "Center align: [center]This text will be centered[/center]");
define("LANHELP_29", "Left align: [left]This text will be left aligned[/left]");
define("LANHELP_30", "Right align: [right]This text will be right aligned[/right]");
define("LANHELP_23", "Insert link:\n[link]http://mysite.com[/link] or [link=http://yoursite.com]Visit My Site[/link]");
define("LANHELP_24", "Bold text:\n[b]This text will be bold[/b]", "font-weight:bold; width: 20px");
define("LANHELP_25", "Italic text:\n[i]This text will be italicised[/i]", "font-style:italic; width: 20px");
define("LANHELP_26", "Underline text:\n[u]This text will be underlined[/u]", "text-decoration: underline; width: 20px");
define("LANHELP_27", "Insert image:\n[img]mypicture.jpg[/img]");
define("LANHELP_28", "Center align:\n[center]This text will be centered[/center]");
define("LANHELP_29", "Left align:\n[left]This text will be left aligned[/left]");
define("LANHELP_30", "Right align:\n[right]This text will be right aligned[/right]");
define("LANHELP_31", "Blockquote text: [blockquote]This text will be blockquoted (indented)[/blockquote]");
define("LANHELP_32", "Code - preformatted text: [code]\$foo = bah;[/code]");
define("LANHELP_33", "HTML - removes linebreaks from text: [html]<table><tr><td> etc[/html]");
@@ -65,5 +65,5 @@ define("LANHELP_49", "Paragraph: [p=class name]Paragraph text[/p]");
define("LANHELP_50", "Heading: for H2 [h]Heading text[/h] or [h=2]Heading text[/h]");
define("LANHELP_51", "Disable HTML new lines for enclosed text: [nobr]text[/nobr]");
define("LANHELP_52", "New line (HTML): [br]");
define("LANHELP_53", "Justify align: [justify]This text will be justified[/justify]");
define("LANHELP_53", "Justify align:\n[justify]This text will be justified[/justify]");
define("LANHELP_54", "HTML block (div tag): [block]Your content[/block]");

View File

@@ -67,7 +67,7 @@ define("LAN_SIGNUP_25", "Upload your avatar");
define("LAN_SIGNUP_26", "Upload your photograph");
define("LAN_SIGNUP_27", "Show");
//define("LAN_SIGNUP_28", "choice of Content/Mail-lists"); Now LAN_USER_73
define("LAN_SIGNUP_29", "A verification email will be sent to the email address you enter here so it must be valid.");
//define("LAN_SIGNUP_29", "A verification email will be sent to the email address you enter here so it must be valid.");
define("LAN_SIGNUP_30", "If you do not wish to display your email address on this site, please select 'Yes' for the 'Hide email address?' option.");
//define("LAN_SIGNUP_31", "URL to your XUP file");
//define("LAN_SIGNUP_32", "What's an XUP file?");
@@ -129,7 +129,7 @@ define('LAN_SIGNUP_85', 'Usernames and passwords are <b>case-sensitive</b>.'); /
define('LAN_SIGNUP_89', 'Display Name: '); // LAN_7
define('LAN_SIGNUP_90', 'the name that will be displayed on site'); // LAN_8
define('LAN_SIGNUP_91', 'Real Name: '); // LAN_308
define('LAN_SIGNUP_92', 'your real name, including first and last name'); // LAN_310
//define('LAN_SIGNUP_92', 'your real name, including first and last name'); // LAN_310
define('LAN_SIGNUP_93', 'Signature: '); // LAN_120
define('LAN_SIGNUP_94', 'Avatar: '); // LAN_121
define('LAN_SIGNUP_95', 'Enter code visible in the image'); // LAN_410
@@ -150,5 +150,9 @@ define("LAN_LOGINNAME", "Username");
define("LAN_PASSWORD", "Password");
define("LAN_USERNAME", "Display Name");
define("LAN_SIGNUP_107", "Password must be a minimum of [x] characters and include at least one UPPERCASE letter and a digit");
define("LAN_SIGNUP_108", "Must be a valid email address");
define("LAN_SIGNUP_109", "Must not contain any spaces");//TODO check against regex requirements
define("LAN_SIGNUP_110", "Your full name");
?>
?>