Add Poll
 
Options: Text Color Split Pie
 
 
 
 
 
 
 
 
Poll Comment:
Max 500 characters. Remaining characters:
days and minutes. Leave it blank if you don't want to set it now.

Please type the characters exactly as they appear in the image,
without the first 2 and last 2 characters.
The characters must be typed in the same order,
and they are case-sensitive.
Open Preview Preview

You can resize the textbox by dragging the right or bottom border.
Off Topic Comment Insert Spoiler
Insert Hyperlink Insert FTP Link Insert Image Insert E-mail Insert Media Insert Table Insert Table Row Insert Table Column Insert Horizontal Rule Insert Teletype Insert Code Insert Quote Edited Superscript Subscript Insert List /me - my name Insert Marquee Insert Timestamp No Parse
Bold Italicized Underline Insert Strikethrough Highlight
                       
Change Text Color
Insert Preformatted Text Left Align Centered Right Align
resize_wb
resize_hb







Max 5000 characters. Remaining characters:
Text size: %
More Smilies
View All Smilies
Collapse additional features Collapse/Expand additional features Smiley Wink Cheesy Grin Angry Sad Shocked Cool Huh Roll Eyes Tongue Embarrassed Lips Sealed Undecided Kiss Cry
Topic Summary - Displaying 4 post(s). Click here to show all
Posted by: XTC
Posted on: Aug 4th, 2014 at 7:24pm
Ah ok  Smiley
Posted by: Dandello
Posted on: Aug 4th, 2014 at 6:29pm
In this particular case, in English those really are blanks. (But to keep from confusing people I guess it should go into Main.lng with a comment that it's a placeholder for an item needed in some other languages.) There are a couple other spots where for English entire lists aren't needed, but there are if/else strings to sniff them out.
Posted by: Monni
Posted on: Aug 4th, 2014 at 4:41pm
It's not the only one missing if I can trust "svn diff"... But those are not necessary in English. Missing string equals empty string.

That string is from one of my patches Dandello was supposed to merge in.

Code
Select All
 --- C:/Users/Mika/AppData/Local/Temp/Main.lng-revBASE.svn000.tmp.lng	Mon Jul 07 20:11:16 2014
 +++ C:/build/yabb/trunk/cgi-bin/yabb2/Languages/English/Main.lng	Sat Jul 19 01:18:41 2014
 @@ -18,6 +18,7 @@

  @days = ('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
  @months = ('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
 +@months_m = ('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
  @days_short = ('Sun','Mon','Tue','Wed','Thu','Fri','Sat'); # for smtp

  %maintxt = (
 @@ -46,6 +47,7 @@
  '28' => 'Guest',
  '30' => 'on',
  '30a' => 'wrote on',
 +'30b' => '',
  '31' => 'Quote',
  '32' => 'Go',
  '34' => 'Login',
 @@ -129,6 +131,8 @@
  '758' => 'Moved',
  '769' => 'Today',
  '769a'=> 'Yesterday',
 +'770' => '', #month suffix for January 1.
 +'770a' => '', #month suffix for 1. January
  '773' => 'Would you like to print this page now?',
  '900b' => 'Back',
  '900s' => 'Submit',
  

Posted by: XTC
Posted on: Aug 4th, 2014 at 4:37pm
Hello

Have found this ....

BoardIndex.template

Code
Select All
                    $boardindex_txt{'800'} <b>{yabb mostusers}</b>$maintxt{'30b'} $maintxt{'30'} {yabb mostusersdate}.<br />
                     $boardindex_txt{'801'} <b>{yabb mostmembers}</b>$maintxt{'30b'} $maintxt{'30'} {yabb mostmembersdate}.<br />
                     $boardindex_txt{'802'} <b>{yabb mostguests}</b>$maintxt{'30b'} $maintxt{'30'} {yabb mostguestsdate}.<br />
                     $boardindex_txt{'803'} <b>{yabb mostbots}</b>$maintxt{'30b'} $maintxt{'30'} {yabb mostbotsdate}.
  



But $maintxt{'30b'} is not in the Main.lng! (Revision: 1519)

lg XTC