Added flyover help on timeline and fixed empty view.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1584 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
a96ccd71f7
commit
41a38fefc3
|
@ -205,6 +205,13 @@ else
|
|||
$max_time = $row['MaxTime'];
|
||||
}
|
||||
|
||||
if ( empty($min_time) )
|
||||
$min_time = $temp_min_time;
|
||||
if ( empty($max_time) )
|
||||
$max_time = $temp_max_time;
|
||||
if ( empty($max_time) )
|
||||
$max_time = "now";
|
||||
|
||||
$min_time_t = strtotime($min_time);
|
||||
$max_time_t = strtotime($max_time);
|
||||
$range = ($max_time_t - $min_time_t) + 1;
|
||||
|
@ -610,6 +617,7 @@ function getYScale( $range, $min_lines, $max_lines )
|
|||
function drawXGrid( $chart, $scale, $label_class, $tick_class, $grid_class, $zoom_class=0 )
|
||||
{
|
||||
global $PHP_SELF, $view, $filter_query;
|
||||
global $zmSlangZoomIn;
|
||||
|
||||
ob_start();
|
||||
$label_count = 0;
|
||||
|
@ -662,7 +670,7 @@ function drawXGrid( $chart, $scale, $label_class, $tick_class, $grid_class, $zoo
|
|||
$zoom_min_time = date( "Y-m-d H:i:s", (int)($chart['data']['x']['lo'] + ($last_tick * $chart['data']['x']['density'])) );
|
||||
$zoom_max_time = date( "Y-m-d H:i:s", (int)($chart['data']['x']['lo'] + ($i * $chart['data']['x']['density'])) );
|
||||
?>
|
||||
<div class="<?= $zoom_class ?>" style="left: <?= $last_tick-1 ?>px; width: <?= $i-$last_tick ?>px;" onClick="window.location='<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&min_time=<?= $zoom_min_time ?>&max_time=<?= $zoom_max_time ?>'"></div>
|
||||
<div class="<?= $zoom_class ?>" style="left: <?= $last_tick-1 ?>px; width: <?= $i-$last_tick ?>px;" title="<?= $zmSlangZoomIn ?>" onClick="window.location='<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&min_time=<?= $zoom_min_time ?>&max_time=<?= $zoom_max_time ?>'"></div>
|
||||
<?php
|
||||
}
|
||||
$last_tick = $i;
|
||||
|
@ -717,7 +725,8 @@ function drawYGrid( $chart, $scale, $label_class, $tick_class, $grid_class )
|
|||
|
||||
function getSlotLoadImageBehaviour( $slot )
|
||||
{
|
||||
global $monitors, $jws, $PHP_SELF, $zmSlangArchived;
|
||||
global $monitors, $jws, $PHP_SELF;
|
||||
global $zmSlangArchived;
|
||||
|
||||
$event_path = ZM_DIR_EVENTS.'/'.$slot['event']['MonitorId'].'/'.$slot['event']['Id'];
|
||||
$image_path = sprintf( "%s/%0".ZM_EVENT_IMAGE_DIGITS."d-capture.jpg", $event_path, isset($slot['frame'])?$slot['frame']['FrameId']:1 );
|
||||
|
@ -1155,11 +1164,11 @@ div.zoom {
|
|||
<div id="Close" class="text"><a href="javascript: closeWindow();"><?= $zmSlangClose ?></a></div>
|
||||
<div id="TopPanel">
|
||||
<div id="ImageNav">
|
||||
<div id="Image"><img id="ImageSrc" src="graphics/spacer.gif" height="<?= $chart['image']['height'] ?>"/></div>
|
||||
<div id="Image"><img id="ImageSrc" src="graphics/spacer.gif" height="<?= $chart['image']['height'] ?>" title="<?= $zmSlangViewEvent ?>"></div>
|
||||
<div id="RightNav">
|
||||
<a href="<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&mid_time=<?= urlencode($min_time) ?>&range=<?= $range ?>"><</a>
|
||||
<a href="<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&mid_time=<?= urlencode($mid_time) ?>&range=<?= (int)($range*$maj_x_scale['zoomout']) ?>">-</a>
|
||||
<a href="<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&min_time=<?= urlencode($mid_time) ?>&range=<?= $range ?>">></a>
|
||||
<a href="<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&mid_time=<?= urlencode($min_time) ?>&range=<?= $range ?>" title="<?= $zmSlangPanLeft ?>"><</a>
|
||||
<a href="<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&mid_time=<?= urlencode($mid_time) ?>&range=<?= (int)($range*$maj_x_scale['zoomout']) ?>" title="<?= $zmSlangZoomOut ?>">-</a>
|
||||
<a href="<?= $PHP_SELF ?>?view=<?= $view ?><?= $filter_query ?>&min_time=<?= urlencode($mid_time) ?>&range=<?= $range ?>" title="<?= $zmSlangPanRight ?>">></a>
|
||||
</div>
|
||||
<div id="ImageText">No Event</div>
|
||||
<div id="Key">
|
||||
|
@ -1711,7 +1720,7 @@ function _extractDatetimeRange( &$node, &$min_time, &$max_time, &$expandable, $s
|
|||
{
|
||||
if ( !$min_time || $min_time > $node['right']['data']['sql_value'] )
|
||||
{
|
||||
$min_time = $node['right']['data']['sql_value'];
|
||||
$min_time = $node['right']['data']['value'];
|
||||
return( true );
|
||||
}
|
||||
}
|
||||
|
@ -1719,7 +1728,7 @@ function _extractDatetimeRange( &$node, &$min_time, &$max_time, &$expandable, $s
|
|||
{
|
||||
if ( !$max_time || $max_time < $node['right']['data']['sql_value'] )
|
||||
{
|
||||
$max_time = $node['right']['data']['sql_value'];
|
||||
$max_time = $node['right']['data']['value'];
|
||||
return( true );
|
||||
}
|
||||
}
|
||||
|
|
|
@ -424,7 +424,9 @@ $zmSlangOrientation = 'Ausrichtung';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Überschreibe bestehende';
|
||||
$zmSlangPaged = 'Paged';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Neigung';
|
||||
$zmSlangParameter = 'Parameter';
|
||||
$zmSlangPassword = 'Passwort';
|
||||
|
@ -554,6 +556,7 @@ $zmSlangVideoSize = 'Videogröße';
|
|||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Alles Ansehen';
|
||||
$zmSlangView = 'Ansicht';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Seitenansicht';
|
||||
$zmSlangWake = 'Wake';
|
||||
$zmSlangWarmupFrames = 'Aufwärmbilder';
|
||||
|
@ -590,8 +593,11 @@ $zmSlangZoneMinX = 'Minimum X (links)';
|
|||
$zmSlangZoneMinY = 'Minimum Y (oben)';
|
||||
$zmSlangZones = 'Zonen';
|
||||
$zmSlangZone = 'Zone';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Momentan angemeldet ist \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
|
@ -425,7 +425,9 @@ $zmSlangOrientation = 'Orientation';
|
|||
$zmSlangOut = 'Ud';
|
||||
$zmSlangOverwriteExisting = 'Overskriv Eksisterende';
|
||||
$zmSlangPaged = 'Paged';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parameter';
|
||||
$zmSlangPassword = 'Password';
|
||||
|
@ -554,6 +556,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Video Størelse';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Vis Alle';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'View Paged';
|
||||
$zmSlangView = 'Vis';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -590,8 +593,11 @@ $zmSlangZoneMinX = 'Minimum X (venstre)';
|
|||
$zmSlangZoneMinY = 'Minimum Y (top)';
|
||||
$zmSlangZones = 'Zoner';
|
||||
$zmSlangZone = 'Zone';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Nuværende login er \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
|
@ -201,16 +201,16 @@ $zmSlangDeleteAndPrev = 'Delete & Prev';
|
|||
$zmSlangDelete = 'Delete';
|
||||
$zmSlangDeleteSavedFilter = 'Delete saved filter';
|
||||
$zmSlangDescription = 'Description';
|
||||
$zmSlangDevicePath = 'Device Path';
|
||||
$zmSlangDeviceChannel = 'Device Channel';
|
||||
$zmSlangDeviceFormat = 'Device Format (0=PAL,1=NTSC etc)';
|
||||
$zmSlangDeviceNumber = 'Device Number (/dev/video?)';
|
||||
$zmSlangDevicePath = 'Device Path';
|
||||
$zmSlangDimensions = 'Dimensions';
|
||||
$zmSlangDisableAlarms = 'Disable Alarms';
|
||||
$zmSlangDisk = 'Disk';
|
||||
$zmSlangDonate = 'Please Donate';
|
||||
$zmSlangDonateAlready = 'No, I\'ve already donated';
|
||||
$zmSlangDonateEnticement = 'You\'ve been running ZoneMinder for a while now and hopefully are finding it a useful addition to your home or workplace security. Although ZoneMinder is, and will remain, free and open source, it costs money to develop and support. If you would like to help support future development and new features then please consider donating. Donating is, of course, optional but very much appreciated and you can donate as much or as little as you like.<br><br>If you would like to donate please select the option below or go to http://www.zoneminder.com/donate.html in your browser.<br><br>Thank you for using ZoneMinder and don\'t forget to visit the forums on ZoneMinder.com for support or suggestions about how to make your ZoneMinder experience even better.';
|
||||
$zmSlangDonate = 'Please Donate';
|
||||
$zmSlangDonateRemindDay = 'Not yet, remind again in 1 day';
|
||||
$zmSlangDonateRemindHour = 'Not yet, remind again in 1 hour';
|
||||
$zmSlangDonateRemindMonth = 'Not yet, remind again in 1 month';
|
||||
|
@ -249,9 +249,9 @@ $zmSlangExportOptions = 'Export Options';
|
|||
$zmSlangExportVideoFiles = 'Export Video Files (if present)';
|
||||
$zmSlangFar = 'Far';
|
||||
$zmSlangFeed = 'Feed';
|
||||
$zmSlangFileColours = 'File Colours';
|
||||
$zmSlangFile = 'File';
|
||||
$zmSlangFilePath = 'File Path';
|
||||
$zmSlangFileColours = 'File Colours';
|
||||
$zmSlangFilterPx = 'Filter Px';
|
||||
$zmSlangFilters = 'Filters';
|
||||
$zmSlangFirst = 'First';
|
||||
|
@ -418,13 +418,15 @@ $zmSlangOpNotMatches = 'does not match';
|
|||
$zmSlangOptionHelp = 'OptionHelp';
|
||||
$zmSlangOptionRestartWarning = 'These changes may not come into effect fully\nwhile the system is running. When you have\nfinished making your changes please ensure that\nyou restart ZoneMinder.';
|
||||
$zmSlangOptions = 'Options';
|
||||
$zmSlangOrder = 'Order';
|
||||
$zmSlangOrEnterNewName = 'or enter new name';
|
||||
$zmSlangOrientation = 'Orientation';
|
||||
$zmSlangOrder = 'Order';
|
||||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Overwrite Existing';
|
||||
$zmSlangPaged = 'Paged';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parameter';
|
||||
$zmSlangPassword = 'Password';
|
||||
|
@ -545,21 +547,22 @@ $zmSlangVersionRemindNever = 'Don\'t remind about new versions';
|
|||
$zmSlangVersionRemindWeek = 'Remind again in 1 week';
|
||||
$zmSlangVersion = 'Version';
|
||||
$zmSlangVideoFormat = 'Video Format';
|
||||
$zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
||||
$zmSlangVideoGenFailed = 'Video Generation Failed!';
|
||||
$zmSlangVideoGenFiles = 'Existing Video Files';
|
||||
$zmSlangVideoGenNoFiles = 'No Video Files Found';
|
||||
$zmSlangVideoGenParms = 'Video Generation Parameters';
|
||||
$zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
||||
$zmSlangVideoSize = 'Video Size';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'View All';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'View Paged';
|
||||
$zmSlangView = 'View';
|
||||
$zmSlangWake = 'Wake';
|
||||
$zmSlangWarmupFrames = 'Warmup Frames';
|
||||
$zmSlangWatch = 'Watch';
|
||||
$zmSlangWeb = 'Web';
|
||||
$zmSlangWebColour = 'Web Colour';
|
||||
$zmSlangWeb = 'Web';
|
||||
$zmSlangWeek = 'Week';
|
||||
$zmSlangWhiteBalance = 'White Balance';
|
||||
$zmSlangWhite = 'White';
|
||||
|
@ -589,6 +592,8 @@ $zmSlangZoneMinX = 'Minimum X (left)';
|
|||
$zmSlangZoneMinY = 'Minimum Y (top)';
|
||||
$zmSlangZones = 'Zones';
|
||||
$zmSlangZone = 'Zone';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
|
|
|
@ -378,7 +378,9 @@ $zmSlangOrientation = 'Orientaci
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Sobreescribir Exitente';
|
||||
$zmSlangPaged = 'Paged';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parametro';
|
||||
$zmSlangPassword = 'Contraseña';
|
||||
|
@ -508,6 +510,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Tamaño Video';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Ver Todo';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'View Paged';
|
||||
$zmSlangView = 'Ver';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -545,8 +548,11 @@ $zmSlangZoneMinX = 'Minimo X (Izquierda)';
|
|||
$zmSlangZoneMinY = 'Minimo Y (Arriba)';
|
||||
$zmSlangZones = 'Zonas';
|
||||
$zmSlangZone = 'Zona';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Usuario actual es \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s';
|
||||
|
|
|
@ -424,7 +424,9 @@ $zmSlangOrientation = 'Orientation';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Ecraser l\'existant';
|
||||
$zmSlangPaged = 'Paged';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Paramètre';
|
||||
$zmSlangPassword = 'Mt de passe';
|
||||
|
@ -553,6 +555,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'taille vidéo';
|
||||
$zmSlangVideo = 'Vidéo';
|
||||
$zmSlangViewAll = 'Voir tt';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Vue recherchée';
|
||||
$zmSlangView = 'Voir';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -590,8 +593,11 @@ $zmSlangZoneMinX = 'X Minimum (gau.)';
|
|||
$zmSlangZoneMinY = 'Y Minimum (som.)';
|
||||
$zmSlangZones = 'Zones';
|
||||
$zmSlangZone = 'Zone';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Util. Actuel: \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // par ex. '37 évènts' (voir Vlang ci-dessous)
|
||||
|
|
|
@ -424,7 +424,9 @@ $zmSlangOrientation = 'Orientamento';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Sovrascrivi';
|
||||
$zmSlangPaged = 'Con paginazione';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parametri';
|
||||
$zmSlangPassword = 'Password';
|
||||
|
@ -553,6 +555,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Dimensioni Video';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Vedi Tutte';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Vedi con paginazione';
|
||||
$zmSlangView = 'vedi';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -589,8 +592,11 @@ $zmSlangZoneMinX = 'X Minimo (sinistra)';
|
|||
$zmSlangZoneMinY = 'Y Minimo (alto)';
|
||||
$zmSlangZones = 'Zone';
|
||||
$zmSlangZone = 'Zona';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Login attuale: \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
|
@ -425,7 +425,9 @@ $zmSlangOrientation = 'Orientazione';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Sovrascrivi quello esistente';
|
||||
$zmSlangPaged = 'Impaginato';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parametri';
|
||||
$zmSlangPassword = 'Password';
|
||||
|
@ -554,6 +556,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Dimensioni del Video';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Vedi tutto';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Vedi impaginato';
|
||||
$zmSlangView = 'Vedi';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -590,8 +593,11 @@ $zmSlangZoneMinX = 'Minimo X (sinistra)';
|
|||
$zmSlangZoneMinY = 'Minimo Y (alto)';
|
||||
$zmSlangZones = 'Zone';
|
||||
$zmSlangZone = 'Zona';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Utente loggato è \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
|
@ -424,7 +424,9 @@ $zmSlangOrientation = '
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = '上書きします';
|
||||
$zmSlangPaged = 'ページ化';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'パラメータ';
|
||||
$zmSlangPassword = 'パスワード';
|
||||
|
@ -554,6 +556,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'ビデオ サイズ';
|
||||
$zmSlangView = '表示';
|
||||
$zmSlangViewAll = '全部表示';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'ページ化の表示';
|
||||
$zmSlangWake = 'Wake';
|
||||
$zmSlangWarmupFrames = 'ウォームアップ フレーム';
|
||||
|
@ -590,8 +593,11 @@ $zmSlangZoneMinX = 'X (
|
|||
$zmSlangZoneMinY = 'Y (左)最低';
|
||||
$zmSlangZones = 'ゾーン';
|
||||
$zmSlangZone = 'ゾーン';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'ただ今\'%1$s\がログインしています';
|
||||
$zmClangEventCount = '%1$s %2$s';
|
||||
|
|
|
@ -425,7 +425,9 @@ $zmSlangOrientation = 'Orientatie';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Overschrijf bestaande';
|
||||
$zmSlangPaged = 'Paged';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parameter';
|
||||
$zmSlangPasswordsDifferent = 'Het nieuwe en bevestigde wachtwoord zijn verschillend';
|
||||
|
@ -555,6 +557,7 @@ $zmSlangVideoSize = 'Video grootte';
|
|||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Bekijk Alles';
|
||||
$zmSlangView = 'Bekijk';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Bekijk Paged';
|
||||
$zmSlangWake = 'Wake';
|
||||
$zmSlangWarmupFrames = 'Warmup Frames';
|
||||
|
@ -591,8 +594,11 @@ $zmSlangZoneMinX = 'Minimum X (links)';
|
|||
$zmSlangZoneMinY = 'Minimum Y (boven)';
|
||||
$zmSlangZones = 'Zones';
|
||||
$zmSlangZone = 'Zone';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'huidige login is \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // Als voorbeeld '37 gebeurtenissen' (from Vlang below)
|
||||
|
|
|
@ -425,7 +425,9 @@ $zmSlangOrientation = 'Orientacja';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Nadpisz istniej±ce';
|
||||
$zmSlangPaged = 'Stronicowane';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parametr';
|
||||
$zmSlangPassword = 'Has³o';
|
||||
|
@ -554,6 +556,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Rozmiar filmu Video';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Poka¿ wszystko';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Poka¿ stronami';
|
||||
$zmSlangView = 'Podgl±d';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -591,8 +594,11 @@ $zmSlangZoneMinX = 'Najmniejsze X (lewo)';
|
|||
$zmSlangZoneMinY = 'Najmniejsze Y (góra)';
|
||||
$zmSlangZones = 'Strefy';
|
||||
$zmSlangZone = 'Strefa';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Aktualny login \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s';
|
||||
|
|
|
@ -364,7 +364,9 @@ $zmSlangOrientation = 'Orienta
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Sobrescrever Existente';
|
||||
$zmSlangPaged = 'Paginado';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'Parametro';
|
||||
$zmSlangPasswordsDifferent = 'A nova senha e a de confirmação são diferentes';
|
||||
|
@ -493,6 +495,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Tamanho do vídeo';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Ver Tudo';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Ver Paginado';
|
||||
$zmSlangView = 'Ver';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -529,8 +532,11 @@ $zmSlangZoneMinX = 'Minimo X (esquerda)';
|
|||
$zmSlangZoneMinY = 'Minimo Y (topo)';
|
||||
$zmSlangZones = 'Zonas';
|
||||
$zmSlangZone = 'Zona';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Login atual é \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
|
@ -395,6 +395,8 @@ $zmSlangOrientation = 'Orientare';
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'Suprascrie existent';
|
||||
$zmSlangPaged = 'Paginat';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPan = 'Rotire';
|
||||
$zmSlangPanTilt = 'Rotire/Înclinare';
|
||||
$zmSlangParameter = 'Parametru';
|
||||
|
@ -524,6 +526,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'Mărime video';
|
||||
$zmSlangVideo = 'Video';
|
||||
$zmSlangViewAll = 'Vizual. tot';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'Vizual. paginat';
|
||||
$zmSlangView = 'Vizual';
|
||||
$zmSlangWake = 'Wake';
|
||||
|
@ -560,8 +563,11 @@ $zmSlangZoneMinX = 'Minimum X (left)';
|
|||
$zmSlangZoneMinY = 'Minimum Y (top)';
|
||||
$zmSlangZones = 'Zona';
|
||||
$zmSlangZone = 'Zone';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'Eşti logat ca \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
|
@ -425,7 +425,9 @@ $zmSlangOrientation = '
|
|||
$zmSlangOut = 'Out';
|
||||
$zmSlangOverwriteExisting = 'ðÅÒÅÚÁÐÉÓÁÔØ ÓÕÝÅÓÔ×ÕÀÝÅÅ';
|
||||
$zmSlangPaged = 'ðÏ ÓÔÒÁÎÉÃÁÍ';
|
||||
$zmSlangPanLeft = 'Pan Left';
|
||||
$zmSlangPan = 'Pan';
|
||||
$zmSlangPanRight = 'Pan Right';
|
||||
$zmSlangPanTilt = 'Pan/Tilt';
|
||||
$zmSlangParameter = 'ðÁÒÁÍÅÒ';
|
||||
$zmSlangPassword = 'ðÁÒÏÌØ';
|
||||
|
@ -555,6 +557,7 @@ $zmSlangVideoGenSucceeded = 'Video Generation Succeeded!';
|
|||
$zmSlangVideoSize = 'òÁÚÍÅÒ ÉÚÏÂÒÁÖÅÎÉÑ';
|
||||
$zmSlangViewAll = 'ðÒÏÓÍ. ×ÓÅ';
|
||||
$zmSlangView = 'ðÒÏÓÍÏÔÒ';
|
||||
$zmSlangViewEvent = 'View Event';
|
||||
$zmSlangViewPaged = 'ðÒÏÓÍ. ÐÏÓÔÒÁÎÉÞÎÏ';
|
||||
$zmSlangWake = 'Wake';
|
||||
$zmSlangWarmupFrames = 'ëÁÄÒÙ ÒÁÚÏÇÒÅ×Á';
|
||||
|
@ -591,8 +594,11 @@ $zmSlangZoneMinX = '
|
|||
$zmSlangZoneMinY = 'MÉÎ. Y ËÏÏÒÄÉÎÁÔÁ (×ÅÒÈÎÉÊ ËÒÁÊ)';
|
||||
$zmSlangZones = 'úÏÎÙ';
|
||||
$zmSlangZone = 'úÏÎÁ';
|
||||
$zmSlangZoomIn = 'Zoom In';
|
||||
$zmSlangZoomOut = 'Zoom Out';
|
||||
$zmSlangZoom = 'Zoom';
|
||||
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
$zmClangCurrentLogin = 'ôÅËÕÝÉÊ ÐÏÌØÚÏ×ÁÔÅÌØ: \'%1$s\'';
|
||||
$zmClangEventCount = '%1$s %2$s'; // For example '37 Events' (from Vlang below)
|
||||
|
|
Loading…
Reference in New Issue