<?php ######################################################################### # Electronic Design Automation - Index (EDA - Index) # ######################################################################### # # # Copyright (c) 2003 by Bruno Thomsen (hide@address.com) # # My Homepage: http://www.spacecave.dk/ # # Project Homepage: http://eda-index.sourceforge.net/ # # Project @ SourceForge.net: http://sourceforge.net/projects/eda-index/ # # Project @ Freshmeat.net: http://freshmeat.net/projects/eda-index/ # # Project Demo: http://eda-index.sourceforge.net/demo/ # # # # This program is free software; you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # # the Free Software Foundation; either version 2 of the License, or # # (at your option) any later version. # # # # This program is distributed in the hope that it will be useful, # # but WITHOUT ANY WARRANTY; without even the implied warranty of # # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # # GNU General Public License for more details. # # # ######################################################################### ######################################################################### # NOTE TO TRANSLATORS: # # # # HTML tags like <b></b> (bold) <br/> (brake) is allowed. # # # # If you define the name for ex. "add" # # its not only used on the add page, # # but also on the view all projects. # # # # $langver is the version of eda-index, # # that the translation was written for. # # # ######################################################################### ######################################################################### # English Language # ######################################################################### # Info about the language files. $langlong = "English"; $langshort = "en"; $translator = "Bruno Thomsen"; $langver = "1.0"; # Index $welcomenote = "<b>Welcome to this demonstration of EDA - Index</b><br/><br/>If you have any ideas and/or want to help develop this piece of free software (GNU-GPL)<br/>You can contact me at this email: baxeno at sourceforge.net (replace at with @)<br/><br/><u>Getting started: Use the navigation menu.</u>"; # Navigation menu $navmenu = "Navigation Menu"; $general = "General"; $main = "Main page"; $search = "Search"; $help = "Help"; $exportxml = "Export DB to XML"; $viewall = "View all"; $createnew = "Create New"; # View $view = "View"; $ref = "Ref"; $rev = "Rev"; $nr = "Nr"; $pldtype = "Type"; $description = "Description"; $createdby = "Created by"; $date = "Date"; $note = "Note"; $none = "None"; $cad = "CAD"; $items = "Items"; $found = "Found"; $no = "No"; $project = "Project 0 is NOT a project<br/>It contain items that are not linked to a project."; $closewindow = "Close Window"; $pfview = "Printer Friendly View"; $printed = "Printed"; # Add $add = "Add"; $to = "to"; $designer = "Designer"; $password = "Password"; $latest = "Latest"; $dont = "Dont call this file direct."; # Edit $edit = "Edit"; $update = "Update"; # Delete $delete = "Delete"; # Help $helptitle = "Help to EDA Index"; # Search $searchtip = "Try to keep your query as simple as possible.<br/>Don't search for multiple terms at once,<br/>the system supports only simple queries."; $searchres = "Searchresults for"; $res0 = "Sorry, no matches for"; $res1 = "match found"; $res2 = "matches found"; $newsearch = "New Search"; # Statistics $statistics = "Statistics"; $client = "Client"; $server = "Server"; $language = "Language"; $writtenby = "Written by"; $ver = "Version"; $gen = "This page was generated in"; $sec = "seconds"; ######################################################################### # Data types (Long Single / Long Multi / Short). # ######################################################################### # Long Single # Project $datatype1[0] = "Project"; # Schematic $datatype1[1] = "Schematic"; # Printed Circuit Board $datatype1[2] = "Printed Circuit Board"; # Front Plate $datatype1[3] = "Front Plate"; # Programmable Logic Device $datatype1[4] = "Programmable Logic Device"; # Long Multi # Projects $datatype2[0] = "Projects"; # Schematics $datatype2[1] = "Schematics"; # Printed Circuit Boards $datatype2[2] = "Printed Circuit Boards"; # Front Plates $datatype2[3] = "Front Plates"; # Programmable Logic Devices $datatype2[4] = "Programmable Logic Devices"; # Short Single # Prj $datatype3[0] = "Prj"; # Sch $datatype3[1] = "Sch"; # PCB $datatype3[2] = "PCB"; # FP $datatype3[3] = "FP"; # PLD $datatype3[4] = "PLD"; ######################################################################### # Prefixes # ######################################################################### # # # Schematic ex. dia700a then $prefix[1] = "dia"; # # or sch700a then $prefix[1] = "sch"; # # # ######################################################################### # PRJ $prefix[0] = "prj"; # SCH $prefix[1] = "dia"; # PCB $prefix[2] = "pc"; # FP $prefix[3] = "fp"; # PL $prefix[4] = "pl"; ######################################################################### # Revised Version # ######################################################################### # # # The default rev ex. dia700a # # # ######################################################################### $defaultrev = "a"; ?>