| <?php require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon()); # All on the same line to unclutter the user's desktop' |
| # Begin: page-specific settings. Change these. |
| $pageTitle = "Common Problems in Message Strings"; |
| $pageKeywords = "JDT/UI, JDT, Java development tools UI, Java, java, development, tools, java ide, Eclipse"; |
| $pageAuthor = "JDT/UI Team"; |
| |
| # Add page-specific Nav bars here |
| # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3) |
| # $Nav->addNavSeparator("My Page Links", "downloads.php"); |
| # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3); |
| # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3); |
| |
| # End: page-specific settings |
| # |
| |
| ob_start(); |
| ?> |
| <div id="midcolumn"> |
| <h1><?= $pageTitle ?></h1> |
| |
| <ul> |
| <li>use active voice instead of passive voice.</li> |
| <li>can’t –> cannot</li> |
| <li>may –> can</li> |
| <li>may not –> cannot |
| <ul> |
| <li>selection cannot be empty.</li> |
| </ul> |
| </li> |
| <li>must not –> cannot</li> |
| <li>must be [saved] –> have to be |
| <ul> |
| <li>You have to save the .. (according to MS)</li> |
| </ul> |
| </li> |
| <li>Verbs: |
| <ul> |
| <li>'click' for buttons</li> |
| <li>'press' for keyboard</li> |
| <li>'type' for words</li> |
| </ul> |
| </li> |
| <li>Do not end with a preposition |
| <ul> |
| <li>No packages to choose from -> Cannot find packages to select.</li> |
| </ul> |
| </li> |
| <li>Ambiguity: |
| <ul> |
| <li>The following modified resources must be saved to continue.\n Press OK |
| to confirm or Cancel otherwise. -><br> |
| The following modified resources have to be saved to continue.\n Click |
| OK to confirm or click Cancel. </li> |
| <li>The package must exist -><br> |
| This package does not exist</li> |
| <li>If you want to proceed, please press 'Next' or 'Finish'. -><br> |
| Click 'Next' to view the next item or 'Finish'.</li> |
| <li>Searches and selects the given package. -><br> |
| Searches for and selects the package entered.</li> |
| <li>Control how text is automatically modified while typing -><br> |
| Select options for automatic text modifications</li> |
| <li>Correct package declaration -><br> |
| The package declaration needs to be corrected.</li> |
| </ul> |
| </li> |
| </ul> |
| |
| </div> |
| |
| <?php |
| $html = ob_get_contents(); |
| ob_end_clean(); |
| |
| # Generate the web page |
| $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); |
| ?> |