Merge pull request #342 from knnniggett/nagyrobi
Mostly Translation related changes
This commit is contained in:
commit
a9c83b5e71
|
@ -625,12 +625,13 @@ INSERT INTO MonitorPresets VALUES (NULL,'Airlink 777W PTZ, 640x480, mjpeg','Remo
|
|||
--
|
||||
-- Add some zone preset values
|
||||
--
|
||||
INSERT INTO ZonePresets VALUES (1,'Fast, low sensitivity','Active','Percent','AlarmedPixels',60,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (2,'Fast, medium sensitivity','Active','Percent','AlarmedPixels',40,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (3,'Fast, high sensitivity','Active','Percent','AlarmedPixels',20,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (4,'Best, low sensitivity','Active','Percent','Blobs',60,NULL,36,NULL,7,7,24,NULL,20,NULL,1,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (5,'Best, medium sensitivity','Active','Percent','Blobs',40,NULL,16,NULL,5,5,12,NULL,10,NULL,1,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (6,'Best, high sensitivity','Active','Percent','Blobs',20,NULL,8,NULL,3,3,6,NULL,5,NULL,1,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (1,'Default','Active','Percent','Blobs',25,NULL,3,75,3,3,3,75,2,NULL,1,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (2,'Fast, low sensitivity','Active','Percent','AlarmedPixels',60,NULL,20,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (3,'Fast, medium sensitivity','Active','Percent','AlarmedPixels',40,NULL,10,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (4,'Fast, high sensitivity','Active','Percent','AlarmedPixels',20,NULL,5,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (5,'Best, low sensitivity','Active','Percent','Blobs',60,NULL,36,NULL,7,7,24,NULL,20,NULL,1,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (6,'Best, medium sensitivity','Active','Percent','Blobs',40,NULL,16,NULL,5,5,12,NULL,10,NULL,1,NULL,0);
|
||||
INSERT INTO ZonePresets VALUES (7,'Best, high sensitivity','Active','Percent','Blobs',20,NULL,8,NULL,3,3,6,NULL,5,NULL,1,NULL,0);
|
||||
|
||||
--
|
||||
-- Apply the initial configuration
|
||||
|
|
|
@ -15,3 +15,9 @@ ALTER TABLE Monitors modify column Type enum('Local','Remote','File','Ffmpeg','L
|
|||
--
|
||||
ALTER TABLE `Monitors` ADD `User` VARCHAR(32) NOT NULL AFTER `SubPath`;
|
||||
ALTER TABLE `Monitors` ADD `Pass` VARCHAR(32) NOT NULL AFTER `User`;
|
||||
|
||||
--
|
||||
-- Add default zone preset
|
||||
--
|
||||
INSERT INTO ZonePresets VALUES (NULL,'Default','Active','Percent','Blobs',25,NULL,3,75,3,3,3,75,2,NULL,1,NULL,0);
|
||||
|
||||
|
|
|
@ -1208,7 +1208,7 @@ body = "ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% s
|
|||
},
|
||||
{
|
||||
name => "ZM_EVENT_IMAGE_DIGITS",
|
||||
default => "3",
|
||||
default => "5",
|
||||
description => "How many significant digits are used in event image numbering",
|
||||
help => "As event images are captured they are stored to the filesystem with a numerical index. By default this index has three digits so the numbers start 001, 002 etc. This works works for most scenarios as events with more than 999 frames are rarely captured. However if you have extremely long events and use external applications then you may wish to increase this to ensure correct sorting of images in listings etc. Warning, increasing this value on a live system may render existing events unviewable as the event will have been saved with the previous scheme. Decreasing this value should have no ill effects.",
|
||||
type => $types{integer},
|
||||
|
@ -1357,7 +1357,7 @@ body = "ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% s
|
|||
},
|
||||
{
|
||||
name => "ZM_WEB_H_REFRESH_MAIN",
|
||||
default => "300",
|
||||
default => "60",
|
||||
introduction => "There are now a number of options that are grouped into bandwidth categories, this allows you to configure the ZoneMinder client to work optimally over the various access methods you might to access the client.\n\nThe next few options control what happens when the client is running in 'high' bandwidth mode. You should set these options for when accessing the ZoneMinder client over a local network or high speed link. In most cases the default values will be suitable as a starting point.",
|
||||
description => "How often (in seconds) the main console window should refresh itself",
|
||||
help => "The main console window lists a general status and the event totals for all monitors. This is not a trivial task and should not be repeated too frequently or it may affect the performance of the rest of the system.",
|
||||
|
@ -1374,7 +1374,7 @@ body = "ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% s
|
|||
},
|
||||
{
|
||||
name => "ZM_WEB_H_REFRESH_IMAGE",
|
||||
default => "5",
|
||||
default => "3",
|
||||
description => "How often (in seconds) the watched image is refreshed (if not streaming)",
|
||||
help => "The live images from a monitor can be viewed in either streamed or stills mode. This option determines how often a stills image is refreshed, it has no effect if streaming is selected.",
|
||||
type => $types{integer},
|
||||
|
@ -1382,7 +1382,7 @@ body = "ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% s
|
|||
},
|
||||
{
|
||||
name => "ZM_WEB_H_REFRESH_STATUS",
|
||||
default => "3",
|
||||
default => "1",
|
||||
description => "How often (in seconds) the status refreshes itself in the watch window",
|
||||
help => "The monitor window is actually made from several frames. The one in the middle merely contains a monitor status which needs to refresh fairly frequently to give a true indication. This option determines that frequency.",
|
||||
type => $types{integer},
|
||||
|
@ -1390,7 +1390,7 @@ body = "ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% s
|
|||
},
|
||||
{
|
||||
name => "ZM_WEB_H_REFRESH_EVENTS",
|
||||
default => "30",
|
||||
default => "5",
|
||||
description => "How often (in seconds) the event listing is refreshed in the watch window",
|
||||
help => "The monitor window is actually made from several frames. The lower framme contains a listing of the last few events for easy access. This option determines how often this is refreshed.",
|
||||
type => $types{integer},
|
||||
|
@ -1438,7 +1438,7 @@ body = "ZM alarm detected - %EL% secs, %EF%/%EFA% frames, t%EST%/m%ESM%/a%ESA% s
|
|||
},
|
||||
{
|
||||
name => "ZM_WEB_H_VIDEO_MAXFPS",
|
||||
default => "15",
|
||||
default => "30",
|
||||
description => "What the maximum frame rate for streamed video should be",
|
||||
help => "When using streamed video the main control is the bitrate which determines how much data can be transmitted. However a lower bitrate at high frame rates results in a lower quality image. This option allows you to limit the maximum frame rate to ensure that video quality is maintained. An additional advantage is that encoding video at high frame rates is a processor intensive task when for the most part a very high frame rate offers little perceptible improvement over one that has a more manageable resource requirement. Note, this option is implemented as a cap beyond which binary reduction takes place. So if you have a device capturing at 15fps and set this option to 10fps then the video is not produced at 10fps, but rather at 7.5fps (15 divided by 2) as the final frame rate must be the original divided by a power of 2.",
|
||||
type => $types{integer},
|
||||
|
|
|
@ -109,21 +109,10 @@ define( "RATE_BASE", 100 ); // The additional scalin
|
|||
define( "SCALE_BASE", 100 ); // The additional scaling factor used to help get fractional scales in integer format
|
||||
|
||||
//
|
||||
// Date and time formats, eventually some of these may end up in the language files
|
||||
// Date and time formats, not to be modified by language files
|
||||
//
|
||||
define( "DATE_FMT_CONSOLE_LONG", "D jS M, g:ia" ); // This is the main console date/time, date() or strftime() format
|
||||
define( "DATE_FMT_CONSOLE_SHORT", "%H:%M" ); // This is the xHTML console date/time, date() or strftime() format
|
||||
|
||||
define( "STRF_FMT_DATETIME_DB", "%Y-%m-%d %H:%M:%S" ); // Strftime format for database queries, don't change
|
||||
|
||||
define( "STRF_FMT_DATETIME", "%c" ); // Strftime locale aware format for dates with times
|
||||
define( "STRF_FMT_DATE", "%x" ); // Strftime locale aware format for dates without times
|
||||
define( "STRF_FMT_TIME", "%X" ); // Strftime locale aware format for times without dates
|
||||
|
||||
define( "STRF_FMT_DATETIME_SHORT", "%y/%m/%d %H:%M:%S" ); // Strftime shorter format for dates with time, not locale aware
|
||||
define( "STRF_FMT_DATETIME_SHORTER", "%m/%d %H:%M:%S" ); // Strftime shorter format for dates with time, not locale aware, used where space is tight
|
||||
|
||||
define( "MYSQL_FMT_DATETIME_SHORT", "%y/%m/%d %H:%i:%S" ); // MySQL date_format shorter format for dates with time
|
||||
define( "STRF_FMT_DATETIME_DB", "%Y-%m-%d %H:%M:%S" ); // Strftime format for database queries, don't change
|
||||
define( "MYSQL_FMT_DATETIME_SHORT", "%y/%m/%d %H:%i:%S" ); // MySQL date_format shorter format for dates with time
|
||||
|
||||
require_once( 'database.php' );
|
||||
loadConfig();
|
||||
|
|
|
@ -43,4 +43,18 @@ function loadLanguage( $prefix="" )
|
|||
if ( $langFile = loadLanguage() )
|
||||
require_once( $langFile );
|
||||
|
||||
|
||||
//
|
||||
// Date and time formats fallback, if not set up by the language file already
|
||||
//
|
||||
defined("DATE_FMT_CONSOLE_LONG") or define("DATE_FMT_CONSOLE_LONG", "D jS M, g:ia"); // This is the main console date/time, date() or strftime() format
|
||||
defined("DATE_FMT_CONSOLE_SHORT") or define( "DATE_FMT_CONSOLE_SHORT", "%H:%M" ); // This is the xHTML console date/time, date() or strftime() format
|
||||
|
||||
defined("STRF_FMT_DATETIME") or define( "STRF_FMT_DATETIME", "%c" ); // Strftime locale aware format for dates with times
|
||||
defined("STRF_FMT_DATE") or define( "STRF_FMT_DATE", "%x" ); // Strftime locale aware format for dates without times
|
||||
defined("STRF_FMT_TIME") or define( "STRF_FMT_TIME", "%X" ); // Strftime locale aware format for times without dates
|
||||
|
||||
defined("STRF_FMT_DATETIME_SHORT") or define( "STRF_FMT_DATETIME_SHORT", "%y/%m/%d %H:%M:%S" ); // Strftime shorter format for dates with time, not locale aware
|
||||
defined("STRF_FMT_DATETIME_SHORTER") or define( "STRF_FMT_DATETIME_SHORTER", "%m/%d %H:%M:%S" );// Strftime shorter format for dates with time, not locale aware, used where space is tight
|
||||
|
||||
?>
|
||||
|
|
|
@ -156,6 +156,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => '頻寬',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blob Sizes',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -324,6 +325,12 @@ $SLANG = array(
|
|||
'First' => 'First',
|
||||
'FlippedHori' => '水平反轉',
|
||||
'FlippedVert' => '垂直反轉',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Force Alarm',
|
||||
'Format' => '格式',
|
||||
|
@ -467,6 +474,11 @@ $SLANG = array(
|
|||
'Month' => '月',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => '移動',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => '需大於或等於',
|
||||
'MustBeLe' => '需小於或等於',
|
||||
'MustConfirmPassword' => '您必需確認密碼',
|
||||
|
@ -635,6 +647,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Time Delta',
|
||||
'TimeStamp' => 'Time Stamp', // Added - 2009-02-08
|
||||
'Timeline' => 'Timeline', // Added - 2009-02-08
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => '時間格式',
|
||||
'TimestampLabelFormat' => '時間標示格式',
|
||||
'TimestampLabelX' => '時間標示 X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web颜色必须设为有效Web颜色字符',
|
||||
'BadWidth' => '宽度必须设为有效值',
|
||||
'Bandwidth' => '带宽',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob像素',
|
||||
'BlobSizes' => 'Blob大小',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => '首先',
|
||||
'FlippedHori' => '水平翻转',
|
||||
'FlippedVert' => '垂直翻转',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => '聚焦',
|
||||
'ForceAlarm' => '强制报警',
|
||||
'Format' => '格式',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => '月',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => '移动',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => '必须大于等于',
|
||||
'MustBeLe' => '必须小于等于',
|
||||
'MustConfirmPassword' => '您必须确认密码',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => '相对时间',
|
||||
'TimeStamp' => '时间戳',
|
||||
'Timeline' => '时间轴',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => '时间戳',
|
||||
'TimestampLabelFormat' => '时间戳标签格式',
|
||||
'TimestampLabelX' => '时间戳标签 X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Rychlost sítì',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Znaèka Px',
|
||||
'BlobSizes' => 'Velikost znaèky',
|
||||
'Blobs' => 'Znaèky',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => 'První',
|
||||
'FlippedHori' => 'Pøeklopený vodorovnì',
|
||||
'FlippedVert' => 'Pøeklopený svisle',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Zaostøení',
|
||||
'ForceAlarm' => 'Spustit alarm',
|
||||
'Format' => 'Formát',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => 'Mìsíc',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Pohyb',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'musí být vìt¹í nebo rovno ne¾',
|
||||
'MustBeLe' => 'musí být men¹í nebo rovno ne¾',
|
||||
'MustConfirmPassword' => 'Musíte potvrdit heslo',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Delta èasu',
|
||||
'TimeStamp' => 'Èasové razítko',
|
||||
'Timeline' => 'Èasová linie',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Razítko',
|
||||
'TimestampLabelFormat' => 'Formát èasového razítka',
|
||||
'TimestampLabelX' => 'Èasové razítko X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Die Webfarbe muss auf einen gültigen Farbwert eingestellt sein',
|
||||
'BadWidth' => 'Die Breite muss auf einen gültigen Wert eingestellt sein',
|
||||
'Bandwidth' => 'Bandbreite',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob-Pixel',
|
||||
'BlobSizes' => 'Blobgröße',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => 'Erstes',
|
||||
'FlippedHori' => 'Horizontal gespiegelt',
|
||||
'FlippedVert' => 'Vertikal gespiegelt',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Fokus',
|
||||
'ForceAlarm' => 'Unbedingter Alarm',
|
||||
'Format' => 'Format',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => 'Monat',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Bewegung',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'muss groesser oder gleich sein wie',
|
||||
'MustBeLe' => 'muss kleiner oder gleich sein wie',
|
||||
'MustConfirmPassword' => 'Sie müssen das Passwort bestätigen.',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Zeitdifferenz',
|
||||
'TimeStamp' => 'Zeitstempel',
|
||||
'Timeline' => 'Zeitlinie',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Zeitstempel',
|
||||
'TimestampLabelFormat' => 'Format des Zeitstempels',
|
||||
'TimestampLabelX' => 'Zeitstempel-X',
|
||||
|
|
|
@ -153,6 +153,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Båndbrede',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blob Størelse',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -321,6 +322,12 @@ $SLANG = array(
|
|||
'First' => 'Første',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Fokus',
|
||||
'ForceAlarm' => 'Tving Alarm',
|
||||
'Format' => 'Format',
|
||||
|
@ -464,6 +471,11 @@ $SLANG = array(
|
|||
'Month' => 'Måned',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Flyt',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'skal være støre end eller ligmed',
|
||||
'MustBeLe' => 'Skal være mindre end eller ligmed',
|
||||
'MustConfirmPassword' => 'Du skal konfimere password',
|
||||
|
@ -632,6 +644,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Time Delta',
|
||||
'TimeStamp' => 'Tids Stempel',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Tidsstempel',
|
||||
'TimestampLabelFormat' => 'Tidsstempel Mærkning´s Format',
|
||||
'TimestampLabelX' => 'Tidsstempel Mærkning X',
|
||||
|
|
|
@ -162,6 +162,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Bandwidth',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'Blobs' => 'Blobs',
|
||||
'BlobSizes' => 'Blob Sizes',
|
||||
|
@ -324,6 +325,12 @@ $SLANG = array(
|
|||
'First' => 'First',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Force Alarm',
|
||||
'Format' => 'Format',
|
||||
|
@ -467,6 +474,11 @@ $SLANG = array(
|
|||
'Montage' => 'Montage',
|
||||
'Month' => 'Month',
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'must be greater than or equal to',
|
||||
'MustBeLe' => 'must be less than or equal to',
|
||||
'MustConfirmPassword' => 'You must confirm the password',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'Tilt' => 'Tilt',
|
||||
'TimeDelta' => 'Time Delta',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'TimestampLabelFormat' => 'Timestamp Label Format',
|
||||
'TimestampLabelX' => 'Timestamp Label X',
|
||||
'TimestampLabelY' => 'Timestamp Label Y',
|
||||
|
|
|
@ -103,6 +103,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Velocidad',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blob Sizes',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -271,6 +272,12 @@ $SLANG = array(
|
|||
'First' => 'Primero',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Forzar Alarma',
|
||||
'Format' => 'Format',
|
||||
|
@ -414,6 +421,11 @@ $SLANG = array(
|
|||
'Month' => 'Mes',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'Debe ser mayor o igual que',
|
||||
'MustBeLe' => 'Debe ser menor o igual que',
|
||||
'MustConfirmPassword' => 'Debe confirmar la contraseña',
|
||||
|
@ -582,6 +594,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Hora Delta',
|
||||
'TimeStamp' => 'Etiqueta Hora',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Etiqueta Hora',
|
||||
'TimestampLabelFormat' => 'Formato Etiqueta Hora',
|
||||
'TimestampLabelX' => 'Eje X Etiqueta Hora',
|
||||
|
|
|
@ -150,6 +150,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'El color web debe ser una cadena de color web válida',
|
||||
'BadWidth' => 'El ancho debe tener un valor válido',
|
||||
'Bandwidth' => 'Ancho de banda',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Px gota',
|
||||
'BlobSizes' => 'Tamaño gotas',
|
||||
'Blobs' => 'Gotas',
|
||||
|
@ -317,6 +318,12 @@ $SLANG = array(
|
|||
'First' => 'Primero',
|
||||
'FlippedHori' => 'Girado horizontalmente',
|
||||
'FlippedVert' => 'Girado verticalmente',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Enfoque',
|
||||
'ForceAlarm' => 'Forzar alama',
|
||||
'Format' => 'Formato',
|
||||
|
@ -460,6 +467,11 @@ $SLANG = array(
|
|||
'Month' => 'Mes',
|
||||
'More' => 'Más',
|
||||
'Move' => 'Mover',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'debe ser mayor o igual que',
|
||||
'MustBeLe' => 'debe ser menor o igual que',
|
||||
'MustConfirmPassword' => 'Debe confirmar la contraseña',
|
||||
|
@ -627,6 +639,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Delta del tiempo',
|
||||
'TimeStamp' => 'Marca de tiempo',
|
||||
'Timeline' => 'Línea de tiempo',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Marca de tiempo',
|
||||
'TimestampLabelFormat' => 'Formato de hora multinacional',
|
||||
'TimestampLabelX' => 'Etiqueta de tiempo X',
|
||||
|
|
|
@ -148,6 +148,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Ribalaius',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blob Sizes',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -315,6 +316,12 @@ $SLANG = array(
|
|||
'First' => 'Esimene',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Fookus',
|
||||
'ForceAlarm' => 'Force Alarm',
|
||||
'Format' => 'Format',
|
||||
|
@ -458,6 +465,11 @@ $SLANG = array(
|
|||
'Month' => 'Kuus',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'must be greater than or equal to',
|
||||
'MustBeLe' => 'must be less than or equal to',
|
||||
'MustConfirmPassword' => 'You must confirm the password',
|
||||
|
@ -626,6 +638,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Time Delta',
|
||||
'TimeStamp' => 'Time Stamp',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Timestamp',
|
||||
'TimestampLabelFormat' => 'Timestamp Label Format',
|
||||
'TimestampLabelX' => 'Timestamp Label X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Bande-pass.',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Px forme',
|
||||
'BlobSizes' => 'Taille forme',
|
||||
'Blobs' => 'Formes',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => 'Prem.',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Force Alarme',
|
||||
'Format' => 'Format',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => 'Mois',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'doit être sup. ou égal à',
|
||||
'MustBeLe' => 'doit être inf. ou égal à',
|
||||
'MustConfirmPassword' => 'Confirmez le mot de passe',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Time Delta',
|
||||
'TimeStamp' => 'Time Stamp',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Timestamp',
|
||||
'TimestampLabelFormat' => 'Timestamp Label Format',
|
||||
'TimestampLabelX' => 'Timestamp Label X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'øåçá ôñ',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blob Sizes',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => 'äøàùåï',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'äúî÷ã',
|
||||
'ForceAlarm' => 'äëøç àæò÷ä',
|
||||
'Format' => 'úáðéú',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => 'çåãù',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'äææ',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'must be greater than or equal to',
|
||||
'MustBeLe' => 'must be less than or equal to',
|
||||
'MustConfirmPassword' => 'You must confirm the password',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'ùéðåé áæîï',
|
||||
'TimeStamp' => 'çåúîú æîï',
|
||||
'Timeline' => '÷å æîï',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'çåúîú æîï',
|
||||
'TimestampLabelFormat' => 'Timestamp Label Format',
|
||||
'TimestampLabelX' => 'Timestamp Label X',
|
||||
|
|
|
@ -17,9 +17,9 @@
|
|||
// along with this program; if not, write to the Free Software
|
||||
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
//
|
||||
|
||||
//
|
||||
// ZoneMinder Hungarian Translation by szimszon at oregpreshaz dot eu, robi
|
||||
// version: 0.8 - 2013.08.15. - frissítés 1.26.0-hoz (robi)
|
||||
// version: 0.8 - 2013.08.16. - frissítés 1.26.0-hoz (robi)
|
||||
// version: 0.7 - 2013.05.12. - frissítés 1.25.0-hoz (robi)
|
||||
// version: 0.6 - 2009.06.21. - frissítés 1.24.2-höz (robi)
|
||||
// version: 0.5 - 2007.12.30. - frissítés 1.23.1-hez (robi)
|
||||
|
@ -27,7 +27,25 @@
|
|||
// version: 0.3 - 2006.04.27. - fordítás befejezése, elrendezése elféréshez (robi)
|
||||
// version: 0.2 - 2006.12.05. - par javitas
|
||||
// version: 0.1 - 2006.11.27. - sok typoval es par leforditatlan resszel
|
||||
|
||||
//
|
||||
// To enable correct Hungarian locales, make sure to install hu_HU locale on your system.
|
||||
//
|
||||
// On Ubuntu 12.04 do it like this:
|
||||
//
|
||||
// locale -a
|
||||
// - to see what's installed
|
||||
//
|
||||
// cat /usr/share/i18n/SUPPORTED | grep hu
|
||||
// - to check the possibility of installation
|
||||
//
|
||||
// sudo locale-gen hu_HU
|
||||
// sudo locale-gen hu_HU.utf8
|
||||
// - to install
|
||||
//
|
||||
// sudo service apache2 restart
|
||||
// - to make PHP aware of it
|
||||
//
|
||||
//
|
||||
// Notes for Translators
|
||||
// 0. Get some credit, put your name in the line above (optional)
|
||||
// 1. When composing the language tokens in your language you should try and keep to roughly the
|
||||
|
@ -78,8 +96,21 @@ header( "Content-Type: text/html; charset=utf-8" );
|
|||
//setlocale( LC_CTYPE, 'hu_HU'); //Character class settings 4.3.0 and after
|
||||
//setlocale( LC_TIME, 'hu_HU'); //Date and time formatting 4.3.0 and after
|
||||
|
||||
setlocale( LC_CTYPE, 'hu_HU');
|
||||
setlocale( LC_TIME, 'hu_HU' );
|
||||
setlocale( LC_CTYPE, 'hu_HU.UTF-8');
|
||||
setlocale( LC_TIME, 'hu_HU.UTF-8' );
|
||||
|
||||
//
|
||||
// Date and time formats, specific to this language
|
||||
//
|
||||
define( "DATE_FMT_CONSOLE_LONG", "%Y. %b. %e. %A, %H:%M" ); // This is the main console date/time, date() or strftime() format
|
||||
define( "DATE_FMT_CONSOLE_SHORT", "%H:%M" ); // This is the xHTML console date/time, date() or strftime() format
|
||||
|
||||
define( "STRF_FMT_DATETIME", "%Y. %b. %e., %H:%M" ); // Strftime locale aware format for dates with times
|
||||
define( "STRF_FMT_DATE", "%Y. %b. %e." ); // Strftime locale aware format for dates without times
|
||||
define( "STRF_FMT_TIME", "%H:%M:%S" ); // Strftime locale aware format for times without dates
|
||||
|
||||
define( "STRF_FMT_DATETIME_SHORT", "%y/%m/%d %H:%M:%S" ); // Strftime shorter format for dates with time
|
||||
define( "STRF_FMT_DATETIME_SHORTER", "%m.%d. %H:%M:%S" ); // Strftime shorter format for dates with time, used where space is tight (events list)
|
||||
|
||||
// Simple String Replacements
|
||||
$SLANG = array(
|
||||
|
@ -133,7 +164,7 @@ $SLANG = array(
|
|||
'AutoStopTimeout' => 'Auto megállási idő túllépés',
|
||||
'Available' => 'Elérhető',
|
||||
'AvgBrScore' => 'Átlag<br/>érték',
|
||||
'Background' => 'Háttérben',
|
||||
'Background' => 'Háttérben futó',
|
||||
'BackgroundFilter' => 'Szűrő automatikus futtatása a háttérben',
|
||||
'BadAlarmFrameCount' => 'Riasztáshoz szükséges képkockák száma legyen legalább 1',
|
||||
'BadAlarmMaxFPS' => 'Maximális FPS riasztott állapotban legyen megadva',
|
||||
|
@ -161,7 +192,8 @@ $SLANG = array(
|
|||
'BadWarmupCount' => 'Bemelegítő képkockák száma legyen legalább 0',
|
||||
'BadWebColour' => 'Szín az idővonal ablakban legyen egy érvényes HTML szín-kód',
|
||||
'BadWidth' => 'A képszélesség legyen érvényes érték képpontban megadva',
|
||||
'Bandwidth' => 'sávszélességre',
|
||||
'Bandwidth' => 'Sávszélesség',
|
||||
'BandwidthHead' => 'sávszélességre',
|
||||
'BlobPx' => 'Blob képpont',
|
||||
'BlobSizes' => 'Blob méretek',
|
||||
'Blobs' => 'Blob-ok',
|
||||
|
@ -329,6 +361,12 @@ $SLANG = array(
|
|||
'First' => 'Első',
|
||||
'FlippedHori' => 'Vízszintes tükrözés',
|
||||
'FlippedVert' => 'Függőleges tükrözés',
|
||||
'FnNone' => 'Letiltva',
|
||||
'FnMonitor' => 'Csak monitorozás',
|
||||
'FnModect' => 'Mozgásérzékelő',
|
||||
'FnRecord' => 'Folyamatos felvétel',
|
||||
'FnMocord' => 'Folyamatos mozgással',
|
||||
'FnNodect' => 'Külső érzékelő',
|
||||
'Focus' => 'Fókusz',
|
||||
'ForceAlarm' => 'Kézi riasztás',
|
||||
'Format' => 'Formátum',
|
||||
|
@ -472,6 +510,11 @@ $SLANG = array(
|
|||
'Month' => 'Hónapban',
|
||||
'More' => 'Több',
|
||||
'Move' => 'Mozgás',
|
||||
'MtgDefault' => 'Böngésző alapértelmezése szerint',
|
||||
'Mtg2widgrd' => '2 oszlopban',
|
||||
'Mtg3widgrd' => '3 oszlopban',
|
||||
'Mtg4widgrd' => '4 oszlopban',
|
||||
'Mtg3widgrx' => '3 oszlopban skálázva, riasztás esetén kinagyítva',
|
||||
'MustBeGe' => 'nagyobbnak vagy egyenlőnek kell lennie',
|
||||
'MustBeLe' => 'kisebbnek vagy egyenlőnek kell lennie',
|
||||
'MustConfirmPassword' => 'Meg kell erősítenie a jelszót',
|
||||
|
@ -560,7 +603,7 @@ $SLANG = array(
|
|||
'RemoteMethod' => 'Hálózati cím mód',
|
||||
'RemoteProtocol' => 'Hálózati protokoll',
|
||||
'Rename' => 'Átnevezés',
|
||||
'Replay' => 'Esemény visszajátszás',
|
||||
'Replay' => 'Események visszajátszása',
|
||||
'ReplayAll' => 'Mindet',
|
||||
'ReplayGapless' => 'Szünet nélkülieket',
|
||||
'ReplaySingle' => 'Egyenként',
|
||||
|
@ -639,6 +682,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Idő változás',
|
||||
'TimeStamp' => 'Időbélyeg',
|
||||
'Timeline' => 'Idővonal',
|
||||
'TimelineTip1' => 'Mozgassa az egeret a grafikon fölött, hogy képet és adatokat láthasson az eseményről.',
|
||||
'TimelineTip2' => 'Kattintson a grafikon színes részére, vagy a pillanatképre, hogy láthassa a részleteket.',
|
||||
'TimelineTip3' => 'Kattintson a grafikon hátterére, hogy az időskálába nagyítson tetszőleges időpontban.',
|
||||
'TimelineTip4' => 'Használja az alábbi gombokat hogy az időskálát csúsztassa, vagy kicsinyítse.',
|
||||
'Timestamp' => 'Időbélyeg',
|
||||
'TimestampLabelFormat' => 'Időbélyeg formátuma',
|
||||
'TimestampLabelX' => 'Elhelyezés X pozició',
|
||||
|
@ -649,7 +696,7 @@ $SLANG = array(
|
|||
'TotalBrScore' => 'Össz.<br/>pontszám',
|
||||
'TrackDelay' => 'Késleltetés követése',
|
||||
'TrackMotion' => 'Mozgás követése',
|
||||
'Triggers' => 'Egyéb előidézők',
|
||||
'Triggers' => 'Külső érzékelők (triggers)',
|
||||
'TurboPanSpeed' => 'Jobb-bal gyorssebesség',
|
||||
'TurboTiltSpeed' => 'Fel-le gyorssebesség',
|
||||
'Type' => 'Típus',
|
||||
|
|
|
@ -157,6 +157,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'L\'identificativo del colore deve essere una stringa valida',
|
||||
'BadWidth' => 'La larghezza deve essere impostata con un valore valido',
|
||||
'Bandwidth' => 'Banda',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Dimensioni Blob',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -325,6 +326,12 @@ $SLANG = array(
|
|||
'First' => 'Primo',
|
||||
'FlippedHori' => 'ribaltato orizzontale',
|
||||
'FlippedVert' => 'ribaltato verticale',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Forza Allarme',
|
||||
'Format' => 'Formato',
|
||||
|
@ -468,6 +475,11 @@ $SLANG = array(
|
|||
'Month' => 'Mese',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Sposta',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'deve essere superiore a',
|
||||
'MustBeLe' => 'deve essere inferiore o pari a',
|
||||
'MustConfirmPassword' => 'Devi confermare la password',
|
||||
|
@ -636,6 +648,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Tempo di Delta',
|
||||
'TimeStamp' => 'Time Stamp',
|
||||
'Timeline' => 'Linea Temporale',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Timestamp',
|
||||
'TimestampLabelFormat' => 'Formato etichetta timestamp',
|
||||
'TimestampLabelX' => 'coordinata X etichetta',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => '帯域幅',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'ブロブ Px',
|
||||
'BlobSizes' => 'ブロブ サイズ',
|
||||
'Blobs' => 'ブロブ',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => '最初',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => '強制アラーム',
|
||||
'Format' => 'Format',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => '月',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => '同等か以上でなければいけない',
|
||||
'MustBeLe' => '同等か以下でなければいけない',
|
||||
'MustConfirmPassword' => 'パスワードの確認をしてください',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'デルタ タイム',
|
||||
'TimeStamp' => 'タイム スタンプ',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'タイムスタンプ',
|
||||
'TimestampLabelFormat' => 'タイムスタンプ ラベル フォーマット',
|
||||
'TimestampLabelX' => 'タイムスタンプ ラベル X',
|
||||
|
|
|
@ -150,6 +150,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web kleur moeten een geldige webkleurwaarde bevatten',
|
||||
'BadWidth' => 'Breedte moet ingevuld worden',
|
||||
'Bandwidth' => 'Bandbreedte',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob px',
|
||||
'BlobSizes' => 'Blob grootte',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -317,6 +318,12 @@ $SLANG = array(
|
|||
'First' => 'Eerste',
|
||||
'FlippedHori' => 'Horizontaal gedraait',
|
||||
'FlippedVert' => 'Vertikaal gedraait',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Forceeer alarm',
|
||||
'Format' => 'Formaat',
|
||||
|
@ -460,6 +467,11 @@ $SLANG = array(
|
|||
'Month' => 'Maand',
|
||||
'More' => 'Meer', // Added - 2011-06-16
|
||||
'Move' => 'Verplaats',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'Moet groter zijn of gelijk aan',
|
||||
'MustBeLe' => 'Moet kleiner zijn of gelijk aan',
|
||||
'MustConfirmPassword' => 'Je moet je wachtwoord bevestigen',
|
||||
|
@ -627,6 +639,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Tijd Delta',
|
||||
'TimeStamp' => 'Tijdstempel',
|
||||
'Timeline' => 'Tijdslijn',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Tijdstempel',
|
||||
'TimestampLabelFormat' => 'Tijdstempel Label Format',
|
||||
'TimestampLabelX' => 'Tijdstempel Label X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'przepustowo¶æ',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Plamka Px',
|
||||
'BlobSizes' => 'Rozmiary plamek',
|
||||
'Blobs' => 'Plamki',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => 'Pierwszy',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Wymu¶ alarm',
|
||||
'Format' => 'Format',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => 'Miesi±c',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'musi byæ wiêksze lub równe od',
|
||||
'MustBeLe' => 'musi byæ mniejsze lub równe od',
|
||||
'MustConfirmPassword' => 'Musisz potwierdziæ has³o',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Ró¿nica czasu',
|
||||
'TimeStamp' => 'Pieczêæ czasu',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Czas',
|
||||
'TimestampLabelFormat' => 'Format etykiety czasu',
|
||||
'TimestampLabelX' => 'Wsp. X etykiety czasu',
|
||||
|
|
|
@ -92,6 +92,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Larg/Banda',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Px Blob',
|
||||
'BlobSizes' => 'Tam Blob',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -260,6 +261,12 @@ $SLANG = array(
|
|||
'First' => 'Primeiro',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Forçar Alarme',
|
||||
'Format' => 'Format',
|
||||
|
@ -403,6 +410,11 @@ $SLANG = array(
|
|||
'Month' => 'Mês',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'deve ser maior ou igual a',
|
||||
'MustBeLe' => 'deve ser menor ou igual a',
|
||||
'MustConfirmPassword' => 'Voce deve Confirmar a senha',
|
||||
|
@ -571,6 +583,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Tempo Delta',
|
||||
'TimeStamp' => 'Tempo',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Tempo',
|
||||
'TimestampLabelFormat' => 'Formato de etiqueta de tempo',
|
||||
'TimestampLabelX' => 'posição de etiqueta X',
|
||||
|
|
|
@ -123,6 +123,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Laţime de bandă',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blob Sizes',
|
||||
'Blobs' => 'Blobs',
|
||||
|
@ -291,6 +292,12 @@ $SLANG = array(
|
|||
'First' => 'First',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focalizare',
|
||||
'ForceAlarm' => 'Alarmă forţată',
|
||||
'Format' => 'Format',
|
||||
|
@ -434,6 +441,11 @@ $SLANG = array(
|
|||
'Month' => 'Luna',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Mişcare',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'trebuie sa fie mai mare sau egal cu',
|
||||
'MustBeLe' => 'trebuie sa fie mai mic sau egal cu',
|
||||
'MustConfirmPassword' => 'Trebuie sa confirmati parola',
|
||||
|
@ -602,6 +614,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'Time Delta',
|
||||
'TimeStamp' => 'Format timp',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Format timp',
|
||||
'TimestampLabelFormat' => 'Format eticheta format timp',
|
||||
'TimestampLabelX' => 'Format timp eticheta X',
|
||||
|
|
|
@ -152,6 +152,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'ËÁÎÁÌ',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'ðËÓ ÏÂßÅËÔÁ',
|
||||
'BlobSizes' => 'òÁÚÍÅÒ ÏÂßÅËÔÏ×',
|
||||
'Blobs' => 'ëÏÌ-×Ï ÏÂßÅËÔÏ×',
|
||||
|
@ -320,6 +321,12 @@ $SLANG = array(
|
|||
'First' => 'ðÅÒ×ÙÊ',
|
||||
'FlippedHori' => 'Flipped Horizontally',
|
||||
'FlippedVert' => 'Flipped Vertically',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => '÷ËÌÀÞÉÔØ ÔÒÅ×ÏÇÕ',
|
||||
'Format' => 'Format',
|
||||
|
@ -463,6 +470,11 @@ $SLANG = array(
|
|||
'Month' => 'íÅÓÑÃ',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Move',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'ÄÏÌÖÎÏ ÂÙÔØ ÂÏÌØÛÅ ÉÌÉ ÒÁ×ÎÏ',
|
||||
'MustBeLe' => 'ÄÏÌÖÎÏ ÂÙÔØ ÍÅÎØÛÅ ÉÌÉ ÒÁ×ÎÏ',
|
||||
'MustConfirmPassword' => '÷Ù ÄÏÌÖÎÙ ÐÏÄÔ×ÅÒÄÉÔØ ÐÁÒÏÌØ',
|
||||
|
@ -631,6 +643,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'ïÔÎÏÓÉÔÅÌØÎÏÅ ×ÒÅÍÑ',
|
||||
'TimeStamp' => 'íÅÔËÁ ×ÒÅÍÅÎÉ',
|
||||
'Timeline' => 'Timeline',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'íÅÔËÁ ×ÒÅÍÅÎÉ',
|
||||
'TimestampLabelFormat' => 'æÏÒÍÁÔ ÍÅÔËÉ',
|
||||
'TimestampLabelX' => 'X-ËÏÏÒÄÉÎÁÔÁ ÍÅÔËÉ',
|
||||
|
|
|
@ -153,6 +153,7 @@ $SLANG = array(
|
|||
'BadWebColour' => 'Webbfärgen måste vara en giltig sträng för webbfärg',
|
||||
'BadWidth' => 'Bredden måste sättas til ett giltigt värde',
|
||||
'Bandwidth' => 'Bandbredd',
|
||||
'BandwidthHead' => 'Bandwidth', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
'BlobPx' => 'Blob Px',
|
||||
'BlobSizes' => 'Blobstorlek',
|
||||
'Blobs' => 'Blobbar',
|
||||
|
@ -321,6 +322,12 @@ $SLANG = array(
|
|||
'First' => 'Först',
|
||||
'FlippedHori' => 'Vänd horisontellt',
|
||||
'FlippedVert' => 'Vänd vertikalt',
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'FnMocord' => 'Mocord', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'Focus' => 'Fokus',
|
||||
'ForceAlarm' => 'Tvinga larm',
|
||||
'Format' => 'Format',
|
||||
|
@ -464,6 +471,11 @@ $SLANG = array(
|
|||
'Month' => 'Månad',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'Move' => 'Flytta',
|
||||
'MtgDefault' => 'Default', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-wide grid', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-wide grid', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-wide grid, scaled, enlarge on alarm', // Added 2013.08.15.
|
||||
'MustBeGe' => 'måste vara större än eller lika med',
|
||||
'MustBeLe' => 'måste vara mindre än eller lika med',
|
||||
'MustConfirmPassword' => 'Du måste bekräfta lösenordet',
|
||||
|
@ -632,6 +644,10 @@ $SLANG = array(
|
|||
'TimeDelta' => 'tidsdelta',
|
||||
'TimeStamp' => 'Tidsstämpel',
|
||||
'Timeline' => 'Tidslinje',
|
||||
'TimelineTip1' => 'Pass your mouse over the graph to view a snapshot image and event details.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Click on the coloured sections of the graph, or the image, to view the event.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Click on the background to zoom in to a smaller time period based around your click.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Tidsstämpel',
|
||||
'TimestampLabelFormat' => 'Format på tidsstämpel',
|
||||
'TimestampLabelX' => 'Värde på tidsstämpel X',
|
||||
|
|
|
@ -217,7 +217,7 @@ ul.tabList li.active a {
|
|||
*/
|
||||
|
||||
#content table.minor {
|
||||
width: 200px;
|
||||
width: 280px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
|
|
@ -24,43 +24,43 @@
|
|||
|
||||
// Javascript window sizes
|
||||
var popupSizes = {
|
||||
'bandwidth': { 'width': 200, 'height': 120 },
|
||||
'bandwidth': { 'width': 300, 'height': 120 },
|
||||
'console': { 'width': 750, 'height': 312 },
|
||||
'control': { 'width': 380, 'height': 480 },
|
||||
'controlcaps': { 'width': 780, 'height': 320 },
|
||||
'controlcap': { 'width': 400, 'height': 400 },
|
||||
'cycle': { 'addWidth': 16, 'minWidth': 384, 'addHeight': 48 },
|
||||
'cycle': { 'addWidth': 32, 'minWidth': 384, 'addHeight': 62 },
|
||||
'device': { 'width': 260, 'height': 150 },
|
||||
'devices': { 'width': 400, 'height': 240 },
|
||||
'donate': { 'width': 500, 'height': 280 },
|
||||
'event': { 'addWidth': 108, 'minWidth': 496, 'addHeight': 200, minHeight: 540 },
|
||||
'eventdetail': { 'width': 400, 'height': 220 },
|
||||
'events': { 'width': 760, 'height': 480 },
|
||||
'event': { 'addWidth': 108, 'minWidth': 496, 'addHeight': 230, minHeight: 540 },
|
||||
'eventdetail': { 'width': 600, 'height': 220 },
|
||||
'events': { 'width': 960, 'height': 780 },
|
||||
'export': { 'width': 400, 'height': 340 },
|
||||
'filter': { 'width': 720, 'height': 360 },
|
||||
'filtersave': { 'width': 560, 'height': 160 },
|
||||
'filtersave': { 'width': 610, 'height': 120 },
|
||||
'frame': { 'addWidth': 32, 'minWidth': 384, 'addHeight': 100 },
|
||||
'frames': { 'width': 500, 'height': 300 },
|
||||
'function': { 'width': 248, 'height': 92 },
|
||||
'frames': { 'width': 500, 'height': 600 },
|
||||
'function': { 'width': 300, 'height': 92 },
|
||||
'group': { 'width': 360, 'height': 180 },
|
||||
'groups': { 'width': 400, 'height': 220 },
|
||||
'groups': { 'width': 440, 'height': 220 },
|
||||
'image': { 'addWidth': 48, 'addHeight': 80 },
|
||||
'log': { 'width': 980, 'height': 720 },
|
||||
'log': { 'width': 1080, 'height': 720 },
|
||||
'login': { 'width': 720, 'height': 480 },
|
||||
'logout': { 'width': 240, 'height': 100 },
|
||||
'monitor': { 'width': 380, 'height': 364 },
|
||||
'monitorpreset':{ 'width': 400, 'height': 200 },
|
||||
'logout': { 'width': 260, 'height': 100 },
|
||||
'monitor': { 'width': 450, 'height': 400 },
|
||||
'monitorpreset':{ 'width': 440, 'height': 200 },
|
||||
'monitorprobe': { 'width': 500, 'height': 240 },
|
||||
'monitorselect':{ 'width': 160, 'height': 200 },
|
||||
'montage': { 'width': -1, 'height': -1 },
|
||||
'optionhelp': { 'width': 400, 'height': 320 },
|
||||
'options': { 'width': 960, 'height': 620 },
|
||||
'options': { 'width': 1000, 'height': 660 },
|
||||
'preset': { 'width': 300, 'height': 120 },
|
||||
'settings': { 'width': 200, 'height': 225 },
|
||||
'state': { 'width': 240, 'height': 124 },
|
||||
'stats': { 'width': 740, 'height': 200 },
|
||||
'settings': { 'width': 220, 'height': 225 },
|
||||
'state': { 'width': 370, 'height': 134 },
|
||||
'stats': { 'width': 840, 'height': 200 },
|
||||
'timeline': { 'width': 760, 'height': 540 },
|
||||
'user': { 'width': 320, 'height': 420 },
|
||||
'user': { 'width': 360, 'height': 420 },
|
||||
'version': { 'width': 360, 'height': 140 },
|
||||
'video': { 'width': 420, 'height': 360 },
|
||||
'videoview': { 'addWidth': 48, 'addHeight': 80 },
|
||||
|
|
|
@ -223,7 +223,7 @@ else
|
|||
{
|
||||
?><?= $SLANG['ConfiguredFor'] ?><?php
|
||||
}
|
||||
?> <?= makePopupLink( '?view=bandwidth', 'zmBandwidth', 'bandwidth', $bwArray[$_COOKIE['zmBandwidth']], ($user && $user['MaxBandwidth'] != 'low' ) ) ?> <?= $SLANG['Bandwidth'] ?></h3>
|
||||
?> <?= makePopupLink( '?view=bandwidth', 'zmBandwidth', 'bandwidth', $bwArray[$_COOKIE['zmBandwidth']], ($user && $user['MaxBandwidth'] != 'low' ) ) ?> <?= $SLANG['BandwidthHead'] ?></h3>
|
||||
</div>
|
||||
<div id="content">
|
||||
<table id="consoleTable" cellspacing="0">
|
||||
|
@ -299,7 +299,7 @@ foreach( $displayMonitors as $monitor )
|
|||
$scale = max( reScale( SCALE_BASE, $monitor['DefaultScale'], ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
|
||||
?>
|
||||
<td class="colName"><?= makePopupLink( '?view=watch&mid='.$monitor['Id'], 'zmWatch'.$monitor['Id'], array( 'watch', reScale( $monitor['Width'], $scale ), reScale( $monitor['Height'], $scale ) ), $monitor['Name'], $running && ($monitor['Function'] != 'None') && canView( 'Stream' ) ) ?></td>
|
||||
<td class="colFunction"><?= makePopupLink( '?view=function&mid='.$monitor['Id'], 'zmFunction', 'function', '<span class="'.$fclass.'">'.$monitor['Function'].'</span>', canEdit( 'Monitors' ) ) ?></td>
|
||||
<td class="colFunction"><?= makePopupLink( '?view=function&mid='.$monitor['Id'], 'zmFunction', 'function', '<span class="'.$fclass.'">'.$SLANG['Fn'.$monitor['Function']].'</span>', canEdit( 'Monitors' ) ) ?></td>
|
||||
<?php if ( $monitor['Type'] == "Local" ) { ?>
|
||||
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.$monitor['Device'].' ('.$monitor['Channel'].')</span>', canEdit( 'Monitors' ) ) ?></td>
|
||||
<?php } elseif ( $monitor['Type'] == "Remote" ) { ?>
|
||||
|
|
|
@ -46,7 +46,7 @@ xhtmlHeaders(__FILE__, $SLANG['Function']." - ".validHtmlStr($monitor['Name']) )
|
|||
foreach ( getEnumValues( 'Monitors', 'Function' ) as $optFunction )
|
||||
{
|
||||
?>
|
||||
<option value="<?= $optFunction ?>"<?php if ( $optFunction == $monitor['Function'] ) { ?> selected="selected"<?php } ?>><?= $optFunction ?></option>
|
||||
<option value="<?= $optFunction ?>"<?php if ( $optFunction == $monitor['Function'] ) { ?> selected="selected"<?php } ?>><?= $SLANG['Fn'.$optFunction] ?></option>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -600,7 +600,7 @@ switch ( $tab )
|
|||
foreach ( getEnumValues( 'Monitors', 'Function' ) as $optFunction )
|
||||
{
|
||||
?>
|
||||
<option value="<?= $optFunction ?>"<?php if ( $optFunction == $newMonitor['Function'] ) { ?> selected="selected"<?php } ?>><?= $optFunction ?></option>
|
||||
<option value="<?= $optFunction ?>"<?php if ( $optFunction == $newMonitor['Function'] ) { ?> selected="selected"<?php } ?>><?= $SLANG['Fn'.$optFunction] ?></option>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
|
|
|
@ -70,11 +70,11 @@ foreach( dbFetchAll( $sql ) as $row )
|
|||
$focusWindow = true;
|
||||
|
||||
$layouts = array(
|
||||
'montage_freeform.css' => 'Default',
|
||||
'montage_2wide.css' => '2-wide grid',
|
||||
'montage_3wide.css' => '3-wide grid',
|
||||
'montage_4wide.css' => '4-wide grid',
|
||||
'montage_3wide50enlarge.css' => '3-wide grid, scaled, enlarge on alarm',
|
||||
'montage_freeform.css' => $SLANG['MtgDefault'],
|
||||
'montage_2wide.css' => $SLANG['Mtg2widgrd'],
|
||||
'montage_3wide.css' => $SLANG['Mtg3widgrd'],
|
||||
'montage_4wide.css' => $SLANG['Mtg4widgrd'],
|
||||
'montage_3wide50enlarge.css' => $SLANG['Mtg3widgrx'],
|
||||
);
|
||||
|
||||
if ( isset($_COOKIE['zmMontageLayout']) )
|
||||
|
|
|
@ -818,11 +818,11 @@ xhtmlHeaders(__FILE__, $SLANG['Timeline'] );
|
|||
<div id="dataPanel">
|
||||
<div id="textPanel">
|
||||
<div id="instruction">
|
||||
<p>Pass your mouse over the graph to view a snapshot image and event details.</p>
|
||||
<p>Click on the coloured sections of the graph, or the image, to view the event.</p>
|
||||
<p>Click on the background to zoom in to a smaller time period based around your click.</p>
|
||||
<p>Use the controls below to zoom out or navigate back and forward through the time range.</p>
|
||||
</div>
|
||||
<p><?= $SLANG['TimelineTip1'] ?></p>
|
||||
<p><?= $SLANG['TimelineTip2'] ?></p>
|
||||
<p><?= $SLANG['TimelineTip3'] ?></p>
|
||||
<p><?= $SLANG['TimelineTip4'] ?></p>
|
||||
</div>
|
||||
<div id="eventData">
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -221,7 +221,7 @@ ul.tabList li.active a {
|
|||
*/
|
||||
|
||||
#content table.minor {
|
||||
width: 200px;
|
||||
width: 280px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue