2004-01-08 17:35:34 +08:00
|
|
|
<?php
|
2004-01-08 19:45:57 +08:00
|
|
|
//
|
|
|
|
// ZoneMinder web US English language file, $Date$, $Revision$
|
|
|
|
// Copyright (C) 2003 Philip Coombes
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
2004-01-08 17:35:34 +08:00
|
|
|
|
2004-01-08 19:45:57 +08:00
|
|
|
// Notes for Translators
|
2004-01-08 17:35:34 +08:00
|
|
|
// 1. When composing the language tokens in your language you should try and keep to roughly the
|
2004-01-08 19:45:57 +08:00
|
|
|
// same length text if possible. Abbreviate where necessary as spacing is quite close in a number of places.
|
2004-01-08 17:35:34 +08:00
|
|
|
// 2. There are three types of string replacement
|
2004-01-08 19:45:57 +08:00
|
|
|
// a) Simple replacements are words or short phrases that are static and used directly. This type of
|
|
|
|
// replacement can be used 'as is'.
|
|
|
|
// b) Complex replacements involve some dynamic element being included and so may require substitution
|
|
|
|
// or changing into a different order. The token listed in this file will be passed through sprintf as
|
|
|
|
// a formatting string. If the dynamic element is a number you will usually need to use a variable
|
|
|
|
// replacement also as described below.
|
|
|
|
// c) Variable replacements are used in conjunction with complex replacements and involve the generation
|
|
|
|
// of a singular or plural noun depending on the number passed into the zmVlang function. This is
|
|
|
|
// intended to allow phrases such a '0 potatoes', '1 potato', '2 potatoes' etc to conjunct correctly
|
|
|
|
// with the associated numerator. Variable replacements are expressed are arrays with a series of
|
|
|
|
// counts and their associated words. When doing a replacement the passed value is compared with
|
|
|
|
// those counts in descending order and the nearest match below is used if no exact match is found.
|
|
|
|
// Therefore is you have a variable replacement with 0,1 and 2 counts, which would be the normal form
|
|
|
|
// in English, if you have 5 'things' then the nearest match below is '2' and so that plural would be used.
|
2004-01-08 17:35:34 +08:00
|
|
|
// 3. The tokens listed below are not used to build up phrases or sentences from single words. Therefore
|
2004-01-08 19:45:57 +08:00
|
|
|
// you can safely assume that a single word token will only be used in that context.
|
2004-01-08 17:35:34 +08:00
|
|
|
// 4. In new language files, or if you are changing only a few words or phrases it makes sense from a
|
2004-01-08 19:45:57 +08:00
|
|
|
// maintenance point of view to include the original language file and override the old definitions rather
|
|
|
|
// than copy all the language tokens across. To do this change the line below to whatever your base language
|
|
|
|
// is and uncomment it.
|
2004-01-08 17:35:34 +08:00
|
|
|
require_once( 'zm_lang_en_gb.php' );
|
|
|
|
|
|
|
|
// Simple String Replacements
|
|
|
|
$zmSlang24BitColour = '24 bit color';
|
|
|
|
$zmSlang8BitGrey = '8 bit grayscale';
|
|
|
|
$zmSlangColour = 'Color';
|
|
|
|
$zmSlangGrey = 'Gray';
|
|
|
|
$zmSlangRemoteImageColours = 'Remote Image Colors';
|
|
|
|
$zmSlangZoneAlarmColour = 'Alarm Color (RGB)';
|
|
|
|
|
|
|
|
?>
|