I am guessing that this menu item uses TWO variables from the language file, _REC_FAVOURITES and _REC_I_ADDED. These are also used for titles. It would be nice if there was a third language variabe, something like _REC_FAVMENU.
Below is my language file. I have shortened a couple of things and made other alterations for US English:
- Changed authorise to authorize
- Changed favorite to favorite
- Changed recipies to recipes
Code:
<?php
/**
* english-us.php
*
* <p>US English language file.</p>
*
* @package com_pccookbook
* @subpackage languages
* @copyright © 2005 Konstantinos Kokkorogiannis All Rights Reserved
* @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
* @author Konstantinos (koyan) Kokkorogiannis <koyan@dianthos.net>
* @version 0.1.1
* @link http://www.dianthos.net & http://www.fisheye.gr/koyansblog
*/
/**#@+
* LANGUAGE MESSAGES FOR RECIPIES
*/
define("_DEM_CATEGORY", "category ");
define("_BROWSE_BY", "Browse by ");
define("_CREATED_BY", "Created by ");
define("_COMMENT_COULD_NOT_BE_SAVED", "The comment could not be saved due to the following error: <br />");
define("_DO_NOT_LEAVE_COMMENT_BLANK", "You may not leave the comment blank");
define("_COMMENT_SAVED", "The comment was successfully saved.");
define("_COMMENT_NO_DATA", "The comment could not be saved as no data was submitted.");
define("_COMMENT_DELETED", "The comment was deleted.");
define("_COMMENT_NOT_FOUND", "The comment could not be found.");
define("_EDIT_COMMENT_FOR", "Edit Comment for");
define("_REC_ADD_COMMENT", "Add new comment:");
define("_REC_COMMENTS", "Comments");
define("_COMMENT_BY", "comment by ");
//ADD RECIPIES
define("_ADD_RECIPE", "Add a Recipe");
define("_ENTER_TITLE", "You must enter a title.");
define("_ENTER_INGREDIENTS", "You must enter some ingredients.");
define("_ENTER_DIRECTIONS", "You must enter some directions.");
define("_SELECT_CATEGORY", "You must select at least one category.");
define("_THE_RECIPE", "The recipe ");
define("_WAS_SAVED", " was successfully saved. ");
define("_DATA_NOT_SAVED_DUE_TO_ERRORS", "The data could not be saved due to the following error(s):");
define("_ADD_NEW", "Add New");
define("_EDIT", "Edit");
define("_RECIPE", "Recipe");
define("_INGREDIENTS_INSTRUCTIONS", "Hit Enter after each ingredient, one ingredient per line. The ingredients will be automatically formatted.");
define("_DIRECTIONS_INSTRUCTIONS", "Hit Enter after each step in the directions. The steps will be automatically numbered and formatted.");
define("_CATEGORY_ASSIGNMENTS", "Category Assignments:");
define("_REC_SAVE", "Save Recipe");
define("_SORRY_NO_RIGHTS_RECIPE", "Sorry, you don't have rights to add or delete a recipe.");
//Browse recipies
define("_NO_RECIPES_IN", "There are no recipes for this ");
define("_RECIPES_OF_USER", "Recipes of user: ");
define("_BROWSE_BY", "Browse by ");
define("_REC_USER", "user");
define("_REC_CATEGORY", "category");
define("_REC_GROUP", "group");
define("_REC_TITLE", "Recipe Title");
define("_REC_DESCRIPTION", "Description");
define("_REC_INGREDIENTS", "Ingredients");
define("_REC_DIRECTIONS", "Directions");
define("_REC_PORTIONS", "Portions");
define("_PRINTER_FRIENDLY", "Printer Friendly");
define("_PRINTING_FOOTER", "© 2005 PC Cookbook");
define("_REC_TIMES", "times.");
define("_HAS_BEEN_VIEWED", " and has been viewed");
define("_REC_SUBMITED_BY", "This recipe was submitted by");
define("_PRINTER_FRIENDLY_PAGE_TITLE", "Printer Friendly Recipe View");
define("_REC_BELONGS_TO_CATEGORIES", "This recipe belongs to the following categories:");
define("_REC_EDITED_BY", "edited by");
define("_RECIPE_NOT_FOUND", "The recipe could not be found.");
define("_RECIPIES", "Recipies");
define("_NO_RECIPIES_BY_YOU", "You haven't added any recipies yet. You are welcome to do so!!!");
//Administer Recipies
define("_ADMIN_UNAUTHORISED", "Administer Recipes");
define("_ADMIN_NO_UNAUTHORISED", "There are no unauthorized recipies to administer");
define("_ADMIN_NO_RIGHTS", "You have no rights to ");
define("_REC_AUTHORISED", "Authorized");
define("_YES", "Yes");
define("_NO", "No");
//Favourite recipies
define("_REC_ADDED_TO_FAVOURITES", "The recipe has been added to your favorite recipes");
define("_REC_ADD_FAVOURITES", "Add recipe to my favorite recipes");
define("_REC_FAVOURITES", "My Favorite Recipes");
define("_REC_I_ADDED", "Recipes I Added");
define("_REC_NO_FAVOURITES_OF_USER", "You have no favorite recipes");
/**#@-*/
?>