YaBB Community and Support Forum
YaBB Home About YaBB Download YaBB YaBB Support Customize Your Forum Development Contribute to the Project
  Welcome, Guest. Please Login or Register


  HomeHelpLoginRegisterSearch  
 
 
Page Index Toggle Pages: 1
Print
Changes since YaBB 2.2.2 (Read 3080 times)
Jet Li
Legacy Dev Team
Development Team
****
Offline



Posts: 6413
Netherland

None
Changes since YaBB 2.2.2
Jun 13th, 2008 at 6:26pm
 
Search.lng


change
Code:
'casesensitiv' => 'Case-Sensitiv', 



to
Code:
'casesensitiv' => 'Case-Sensitive', 

Back to top
 

...
PM me for YaBB Installation Service
WWW 100000788351637  
IP Logged
 
Jet Li
Legacy Dev Team
Development Team
****
Offline



Posts: 6413
Netherland

None
Re: Changes since YaBB 2.2.2
Reply #1 - Jul 4th, 2008 at 9:36am
 
BoardIndex.lng


change
Code:
%boardindex_txt = (
...
'20' => 'Forum name',
...
'22' => 'Last post',
...
'158' => 'Users online', 



to
Code:
%boardindex_txt = (
...
'20' => 'Forum Name',
...
'22' => 'Last Post',
...
'158' => 'Users Online', 





Display.lng


change
Code:
%display_txt = (
...
'19' => 'Page Index toggle',
...
'766' => 'No topic',
'767' => 'Next topic',
'768' => 'Previous topic',
'769' => 'Flash location',
'888' => 'Browsing topic',
...
'posttolocked' => 'Warning: you are about to post to a locked thread! Click [OK] to confirm this or [Cancel] to return to the thread',
'modifyinlocked' => 'Warning: you are about to modify a locked thread! Click [OK] to confirm this or [Cancel] to return to the thread',
'guestpost' => 'Send a message to the forum administrator', 



to
Code:
%display_txt = (
...
'19' => 'Page Index Toggle',
...
'766' => 'No Topic',
'767' => 'Next Topic',
'768' => 'Previous Topic',
'769' => 'Flash Location',
'888' => 'Browsing Topic',
...
'posttolocked' => 'Warning: you are about to post to a locked thread! Click [OK] to confirm this or [Cancel] to return to the thread.',
'modifyinlocked' => 'Warning: you are about to modify a locked thread! Click [OK] to confirm this or [Cancel] to return to the thread.',
'guestpost' => 'Send a message to the forum administrator.', 





MessageIndex.lng


change
Code:
%messageindex_txt = (
...
'19' => 'Page Index toggle',
...
'22' => 'Last post',
...
'75' => 'This is your Favorites Thread Selection.',
...
'109' => 'Started by',
...
'843' => 'RSS Feed for this board', 



to
Code:
%messageindex_txt = (
...
'19' => 'Page Index Toggle',
...
'22' => 'Last Post',
...
'75' => 'This is your Favorites thread selection.',
...
'109' => 'Started By',
...
'843' => 'RSS feed for this board', 

Back to top
« Last Edit: Jul 4th, 2008 at 1:41pm by Jet Li »  

...
PM me for YaBB Installation Service
WWW 100000788351637  
IP Logged
 
OH Eng
Past Team Members
Documentation Team
Offline



Posts: 4026
Pensacola, Florida USA

None
Re: Changes since YaBB 2.2.2
Reply #2 - Jul 4th, 2008 at 12:27pm
 
Questions:

Why de-capitalize the words in the first change?  They are titles; titles should be capitalized.

Why capitalize the word "By?"

Back to top
 

 
OH Eng  
IP Logged
 
Jet Li
Legacy Dev Team
Development Team
****
Offline



Posts: 6413
Netherland

None
Re: Changes since YaBB 2.2.2
Reply #3 - Jul 4th, 2008 at 1:48pm
 
default/Boardindex.template


change
Code:
		<div class="small" style="float: left; width: 90%; text-align: left;">
		$boardindex_txt{'800'} <b>{yabb mostusers}</b> $maintxt{'30'} {yabb mostusersdate}<br />
		$boardindex_txt{'801'} <b>{yabb mostmembers}</b> $maintxt{'30'} {yabb mostmembersdate}<br />
		$boardindex_txt{'802'} <b>{yabb mostguests}</b> $maintxt{'30'} {yabb mostguestsdate}<br />
		$boardindex_txt{'803'} <b>{yabb mostbots}</b> $maintxt{'30'} {yabb mostbotsdate}
		</div> 



to
Code:
		<div class="small" style="float: left; width: 90%; text-align: left;">
		$boardindex_txt{'800'} <b>{yabb mostusers}.</b> $maintxt{'30'} {yabb mostusersdate}<br />
		$boardindex_txt{'801'} <b>{yabb mostmembers}.</b> $maintxt{'30'} {yabb mostmembersdate}<br />
		$boardindex_txt{'802'} <b>{yabb mostguests}.</b> $maintxt{'30'} {yabb mostguestsdate}<br />
		$boardindex_txt{'803'} <b>{yabb mostbots}.</b> $maintxt{'30'} {yabb mostbotsdate}.
		</div> 





yabb21/BoardIndex.template


change
Code:
		<div class="small" style="float: left; width: 90%; text-align: left;">
		$boardindex_txt{'800'} <b><yabb mostusers></b> $maintxt{'30'} <yabb mostusersdate><br />
		$boardindex_txt{'801'} <b><yabb mostmembers></b> $maintxt{'30'} <yabb mostmembersdate><br />
		$boardindex_txt{'802'} <b><yabb mostguests></b> $maintxt{'30'} <yabb mostguestsdate><br />
		$boardindex_txt{'803'} <b><yabb mostbots></b> $maintxt{'30'} <yabb mostbotsdate>
		</div> 



to
Code:
		<div class="small" style="float: left; width: 90%; text-align: left;">
		$boardindex_txt{'800'} <b><yabb mostusers></b> $maintxt{'30'} <yabb mostusersdate>.<br />
		$boardindex_txt{'801'} <b><yabb mostmembers></b> $maintxt{'30'} <yabb mostmembersdate>.<br />
		$boardindex_txt{'802'} <b><yabb mostguests></b> $maintxt{'30'} <yabb mostguestsdate>.<br />
		$boardindex_txt{'803'} <b><yabb mostbots></b> $maintxt{'30'} <yabb mostbotsdate>.
		</div> 

Back to top
 

...
PM me for YaBB Installation Service
WWW 100000788351637  
IP Logged
 
Outumuro
Documentation Team
Operations Team
****
Offline



Posts: 2716
Los Angeles, California

None
Re: Changes since YaBB 2.2.2
Reply #4 - Jul 4th, 2008 at 1:57pm
 
Hi OH Eng,

Fair questions.

OH Eng wrote on Jul 4th, 2008 at 12:27pm:
Why de-capitalize the words in the first change?  They are titles; titles should be capitalized.

I agree... titles (names, categories, etc.) should be capitalized.  In the case of...

Most Users ever online was 686 on Mar 21st, 2008, 8:26pm
Most Members ever online was 36 on Dec 2nd, 2007, 12:54pm
Most Guests ever online was 646 on Feb 23rd, 2006, 10:00am
Most Search Engines ever online was 645 on Mar 21st, 2008, 8:26pm

...are more statements (sentences) than titles.  Only the 1st word should be capitalized and have a period at the end.  Like...

Most users ever online was 686 on Mar 21st, 2008, 8:26pm.
Most members ever online was 36 on Dec 2nd, 2007, 12:54pm.
Most guests ever online was 646 on Feb 23rd, 2006, 10:00am.
Most search engines ever online was 645 on Mar 21st, 2008, 8:26pm.

Maybe to be more like a title, the text could be reformatted.  Like this...

Most Users Ever Online: 686 on Mar 21st, 2008, 8:26pm
Most Members Ever Online: 36 on Dec 2nd, 2007, 12:54pm
Most Guests Ever Online: 646 on Feb 23rd, 2006, 10:00am
Most Search Engines Ever Online: 645 on Mar 21st, 2008, 8:26pm

Just some ideas.

OH Eng wrote on Jul 4th, 2008 at 12:27pm:
Why capitalize the word "By?"

It's part of a title for a message index category.
Back to top
 

...
... ... ...
WWW  
IP Logged
 
Jet Li
Legacy Dev Team
Development Team
****
Offline



Posts: 6413
Netherland

None
Re: Changes since YaBB 2.2.2
Reply #5 - Jul 5th, 2008 at 1:07pm
 
MemberList.lng


change
Code:
'801' => 'Find Member', 



to
Code:
'801' => 'Find Member by Name or Email', 

Back to top
 

...
PM me for YaBB Installation Service
WWW 100000788351637  
IP Logged
 
Jet Li
Legacy Dev Team
Development Team
****
Offline



Posts: 6413
Netherland

None
Re: Changes since YaBB 2.2.2
Reply #6 - Jul 5th, 2008 at 4:33pm
 
MyCenter.lng


add
Code:
'byuser' => 'by Username', 



Search.lng


add
Code:
'171' => 'Go back to search here.', 


Back to top
 

...
PM me for YaBB Installation Service
WWW 100000788351637  
IP Logged
 
Page Index Toggle Pages: 1
Print

Get Yet another Bulletin Board at SourceForge.net. Fast, secure and Free Open Source software downloads Support This Project BoardMod - YaBB features and templates YaBB Codex - support on installation and usage YaBB Toolbar for your browser YaBB Facebook Group Page

Valid RSS Valid XHTML Valid CSS Powered by Perl
YaBB Chat and Support Community » Powered by YaBB 2.5 AE!
YaBB Forum Software © 2000-2010. All Rights Reserved.