Merge branch 'master' into storageareas
This commit is contained in:
commit
60b952ab86
|
@ -0,0 +1,5 @@
|
|||
--
|
||||
-- This updates a 1.31.47 database to 1.32.0
|
||||
--
|
||||
-- No changes required
|
||||
--
|
|
@ -25,7 +25,7 @@
|
|||
%global _hardened_build 1
|
||||
|
||||
Name: zoneminder
|
||||
Version: 1.31.47
|
||||
Version: 1.32.0
|
||||
Release: 1%{?dist}
|
||||
Summary: A camera monitoring and analysis tool
|
||||
Group: System Environment/Daemons
|
||||
|
@ -320,11 +320,32 @@ EOF
|
|||
%dir %attr(755,%{zmuid_final},%{zmgid_final}) %{_localstatedir}/run/zoneminder
|
||||
|
||||
%changelog
|
||||
* Sun Apr 22 2018 Andrew Bauer <zonexpertconsulting@outlook.com> - 1.31.42-1
|
||||
- Remove support for sysvinit a.k.a. el6
|
||||
- use desktop-file-install for new zoneminder.desktop file
|
||||
- add new web cache folder
|
||||
- 1.31.42 development snapshot
|
||||
* Wed Sep 12 2018 Andrew Bauer <zonexpertconsulting@outlook.com> - 1.32.0-1
|
||||
- 1.32.0 release
|
||||
- remove el6 (sys v init) support
|
||||
- Make README name consistent across all supported distros
|
||||
- remove jscalendar
|
||||
- add requires php-json, zip
|
||||
- support zm/conf.d folder
|
||||
- support zm cache (busting) folder
|
||||
|
||||
* Sun Aug 19 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.30.4-9
|
||||
- Rebuilt for Fedora 29 Mass Rebuild binutils issue
|
||||
|
||||
* Fri Jul 27 2018 RPM Fusion Release Engineering <leigh123linux@gmail.com> - 1.30.4-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Thu Mar 08 2018 RPM Fusion Release Engineering <leigh123linux@googlemail.com> - 1.30.4-7
|
||||
- Rebuilt for new ffmpeg snapshot
|
||||
|
||||
* Thu Mar 01 2018 RPM Fusion Release Engineering <leigh123linux@googlemail.com> - 1.30.4-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Jan 18 2018 Leigh Scott <leigh123linux@googlemail.com> - 1.30.4-5
|
||||
- Rebuilt for ffmpeg-3.5 git
|
||||
|
||||
* Thu Aug 31 2017 RPM Fusion Release Engineering <kwizart@rpmfusion.org> - 1.30.4-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Tue May 09 2017 Andrew Bauer <zonexpertconsulting@outlook.com> - 1.30.4-1
|
||||
- modify autosetup macro parameters
|
||||
|
|
|
@ -232,11 +232,11 @@ sub start_transaction {
|
|||
|
||||
sub end_transaction {
|
||||
#my ( $caller, undef, $line ) = caller;
|
||||
#$openprint::log->debug("Called end_transaction from $caller : $line");
|
||||
my ( $d, $ac ) = @_;
|
||||
if ( ! defined $ac ) {
|
||||
Error("Undefined ac");
|
||||
}
|
||||
#$openprint::log->debug("Called end_transaction from $caller : $line");
|
||||
my ( $d, $ac ) = @_;
|
||||
if ( ! defined $ac ) {
|
||||
Error("Undefined ac");
|
||||
}
|
||||
$d = $dbh if ! $d;
|
||||
if ( $ac ) {
|
||||
#$log->debug("Committing");
|
||||
|
@ -244,55 +244,31 @@ if ( ! defined $ac ) {
|
|||
} # end if
|
||||
$d->{AutoCommit} = $ac;
|
||||
} # end sub end_transaction
|
||||
|
||||
1;
|
||||
__END__
|
||||
# Below is stub documentation for your module. You'd better edit it!
|
||||
|
||||
=head1 NAME
|
||||
|
||||
ZoneMinder::Database - Perl extension for blah blah blah
|
||||
ZoneMinder::Database - Perl module containing database functions used in ZM
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
use ZoneMinder::Database;
|
||||
blah blah blah
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
Stub documentation for ZoneMinder, created by h2xs. It looks like the
|
||||
author of the extension was negligent enough to leave the stub
|
||||
unedited.
|
||||
|
||||
Blah blah blah.
|
||||
|
||||
=head2 EXPORT
|
||||
|
||||
None by default.
|
||||
|
||||
|
||||
|
||||
=head1 SEE ALSO
|
||||
|
||||
Mention other useful documentation such as the documentation of
|
||||
related modules or operating system documentation (such as man pages
|
||||
in UNIX), or any relevant external documentation such as RFCs or
|
||||
standards.
|
||||
|
||||
If you have a mailing list set up for your module, mention it here.
|
||||
|
||||
If you have a web site set up for your module, mention it here.
|
||||
zmDbConnect
|
||||
zmDbDisconnect
|
||||
zmDbGetMonitors
|
||||
zmDbGetMonitor
|
||||
zmDbGetMonitorAndControl
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Philip Coombes, E<lt>philip.coombes@zoneminder.comE<gt>
|
||||
|
||||
=head1 COPYRIGHT AND LICENSE
|
||||
|
||||
Copyright (C) 2001-2008 Philip Coombes
|
||||
|
||||
This library is free software; you can redistribute it and/or modify
|
||||
it under the same terms as Perl itself, either Perl version 5.8.3 or,
|
||||
at your option, any later version of Perl 5 you may have available.
|
||||
|
||||
|
||||
=cut
|
||||
|
|
|
@ -67,6 +67,7 @@ my $level = 1;
|
|||
my $monitor_id = 0;
|
||||
my $version;
|
||||
my $force = 0;
|
||||
my $server_id = undef;
|
||||
my $storage_id = undef;
|
||||
|
||||
logInit();
|
||||
|
@ -78,6 +79,7 @@ GetOptions(
|
|||
level =>\$level,
|
||||
'monitor_id=i' =>\$monitor_id,
|
||||
report =>\$report,
|
||||
'server_id=i' =>\$server_id,
|
||||
'storage_id=i' =>\$storage_id,
|
||||
version =>\$version
|
||||
) or pod2usage(-exitstatus => -1);
|
||||
|
@ -181,13 +183,15 @@ MAIN: while( $loop ) {
|
|||
Term();
|
||||
}
|
||||
Info("Auditing Storage Area $Storage_Areas[0]{Id} $Storage_Areas[0]{Name} at $Storage_Areas[0]{Path}");
|
||||
} elsif ( $Config{ZM_SERVER_ID} ) {
|
||||
@Storage_Areas = ZoneMinder::Storage->find( ServerId => $Config{ZM_SERVER_ID} );
|
||||
} elsif ( $server_id ) {
|
||||
@Storage_Areas = ZoneMinder::Storage->find( ServerId => $server_id );
|
||||
if ( ! @Storage_Areas ) {
|
||||
Error("No Storage Area found with ServerId =" . $Config{ZM_SERVER_ID});
|
||||
Error("No Storage Area found with ServerId =" . $server_id);
|
||||
Term();
|
||||
}
|
||||
Info("Auditing All Storage Areas on Server " . $Storage_Areas[0]->Server()->Name());
|
||||
foreach my $Storage ( @Storage_Areas ) {
|
||||
Info('Auditing ' . $Storage->Name() . ' at ' . $Storage->Path() . ' on ' . $Storage->Server()->Name() );
|
||||
}
|
||||
} else {
|
||||
@Storage_Areas = ZoneMinder::Storage->find();
|
||||
Info("Auditing All Storage Areas");
|
||||
|
@ -382,7 +386,7 @@ MAIN: while( $loop ) {
|
|||
} # if USE_DEEP_STORAGE
|
||||
Debug( 'Got '.int(keys(%$fs_events))." filesystem events for monitor $monitor_dir\n" );
|
||||
|
||||
delete_empty_directories($monitor_dir);
|
||||
delete_empty_directories($$Storage{Path}.'/'.$monitor_dir);
|
||||
} # end foreach monitor
|
||||
|
||||
if ( $cleaned ) {
|
||||
|
|
|
@ -713,13 +713,17 @@ sub substituteTags {
|
|||
}
|
||||
} # end if $first_alarm_frame
|
||||
|
||||
if ( $attachments_ref && $Config{ZM_OPT_FFMPEG} ) {
|
||||
if ( $attachments_ref ) {
|
||||
if ( $text =~ s/%EV%//g ) {
|
||||
my ( $format, $path ) = generateVideo($filter, $Event);
|
||||
if ( !$format ) {
|
||||
return undef;
|
||||
if ( $$Event{DefaultVideo} ) {
|
||||
push @$attachments_ref, { type=>'video/mp4', path=>join('/',$Event->Path(), $Event->DefaultVideo()) };
|
||||
} elsif ( $Config{ZM_OPT_FFMPEG} ) {
|
||||
my ( $format, $path ) = generateVideo($filter, $Event);
|
||||
if ( !$format ) {
|
||||
return undef;
|
||||
}
|
||||
push( @$attachments_ref, { type=>"video/$format", path=>$path } );
|
||||
}
|
||||
push( @$attachments_ref, { type=>"video/$format", path=>$path } );
|
||||
}
|
||||
if ( $text =~ s/%EVM%//g ) {
|
||||
my ( $format, $path ) = generateVideo($filter, $Event, 1);
|
||||
|
|
|
@ -539,7 +539,7 @@ Debug(3, "Writing video");
|
|||
if ( score < 0 )
|
||||
score = 0;
|
||||
|
||||
bool db_frame = ( frame_type != BULK ) || ((frames%config.bulk_frame_interval)==0) || !frames;
|
||||
bool db_frame = ( frame_type != BULK ) || (!frames) || ((frames%config.bulk_frame_interval)==0) ;
|
||||
if ( db_frame ) {
|
||||
|
||||
Debug( 1, "Adding frame %d of type \"%s\" to DB", frames, Event::frame_type_names[frame_type] );
|
||||
|
|
|
@ -1731,6 +1731,7 @@ Error("Creating new event when one exists");
|
|||
}
|
||||
shared_data->state = state = IDLE;
|
||||
last_section_mod = 0;
|
||||
trigger_data->trigger_state = TRIGGER_CANCEL;
|
||||
} // end if ( trigger_data->trigger_state != TRIGGER_OFF )
|
||||
|
||||
if ( (!signal_change && signal) && (function == MODECT || function == MOCORD) ) {
|
||||
|
@ -2384,6 +2385,8 @@ int Monitor::Capture() {
|
|||
|
||||
if ( captureResult < 0 ) {
|
||||
Info("Return from Capture (%d), signal loss", captureResult);
|
||||
// Tell zma to end the event. zma will reset TRIGGER
|
||||
trigger_data->trigger_state = TRIGGER_OFF;
|
||||
// Unable to capture image for temporary reason
|
||||
// Fake a signal loss image
|
||||
Rgb signalcolor;
|
||||
|
|
|
@ -178,7 +178,6 @@ VideoStore::VideoStore(const char *filename_in, const char *format_in,
|
|||
}
|
||||
|
||||
Monitor::Orientation orientation = monitor->getOrientation();
|
||||
Debug(3, "Have orientation");
|
||||
if (orientation) {
|
||||
if (orientation == Monitor::ROTATE_0) {
|
||||
} else if (orientation == Monitor::ROTATE_90) {
|
||||
|
|
|
@ -82,6 +82,8 @@ $SLANG = array(
|
|||
'Actual' => 'Actual',
|
||||
'AddNewControl' => '新增控制',
|
||||
'AddNewMonitor' => '新增監視',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => '新增使用者',
|
||||
'AddNewZone' => '新增監視區',
|
||||
'Alarm' => '警報',
|
||||
|
@ -109,22 +111,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Archive Status',
|
||||
'AttrAvgScore' => 'Average Score',
|
||||
'AttrCause' => 'Cause',
|
||||
'AttrDate' => 'Date',
|
||||
'AttrDateTime' => 'Date/Time',
|
||||
'AttrDiskBlocks' => 'Disk Blocks',
|
||||
'AttrDiskPercent' => 'Disk Percent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Duration',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Frames',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Max. Score',
|
||||
'AttrMonitorId' => 'Monitor Id',
|
||||
'AttrMonitorName' => 'Monitor Name',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Name',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'Time',
|
||||
'AttrTotalScore' => 'Total Score',
|
||||
'AttrWeekday' => 'Weekday',
|
||||
'Auto' => '自動',
|
||||
'AutoStopTimeout' => '時間過自動停止',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -157,9 +169,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -223,10 +237,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => '關閉',
|
||||
'Colour' => 'Colour',
|
||||
'Command' => 'Command',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => '配置為',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -284,9 +300,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Not yet, remind again in 1 week',
|
||||
'DonateYes' => 'Yes, I\'d like to donate now',
|
||||
'Download' => '下載',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => '歷時',
|
||||
'Edit' => '編輯',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => '啟動警報',
|
||||
'Enabled' => '啟用',
|
||||
|
@ -303,6 +321,7 @@ $SLANG = array(
|
|||
'Events' => '事件',
|
||||
'Exclude' => '不包含',
|
||||
'Execute' => 'Execute',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => '輸出',
|
||||
'ExportDetails' => '輸出事件細項',
|
||||
'ExportFailed' => '輸出失敗',
|
||||
|
@ -332,8 +351,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => '自動執行符合指令',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => '自動發出符合訊息',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter Px',
|
||||
'FilterUnset' => '您必需設定濾鏡的寬度和高度',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => '自動上傳符合項目',
|
||||
'FilterVideoEvents' => '自動產生符合的影像檔',
|
||||
'Filters' => '濾鏡',
|
||||
|
@ -358,6 +379,7 @@ $SLANG = array(
|
|||
'Function' => '功能',
|
||||
'Gain' => 'Gain',
|
||||
'General' => '一般',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => '輸出影片',
|
||||
'GeneratingVideo' => '輸出影片中',
|
||||
'GoToZoneMinder' => 'Go to ZoneMinder.com',
|
||||
|
@ -378,6 +400,7 @@ $SLANG = array(
|
|||
'High' => '高',
|
||||
'HighBW' => 'High B/W',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => '時',
|
||||
'Hue' => 'Hue',
|
||||
'Id' => 'Id',
|
||||
|
@ -402,6 +425,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Linked Monitors',
|
||||
'List' => '列出',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => '載入',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -488,6 +512,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => '監視',
|
||||
'Montage' => '全部顯示',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => '月',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -514,6 +539,7 @@ $SLANG = array(
|
|||
'Next' => '下一步',
|
||||
'No' => 'No',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'There are no frames recorded for this event',
|
||||
'NoGroup' => 'No Group', // Added - 2009-02-08
|
||||
'NoSavedFilters' => 'NoSavedFilters',
|
||||
|
@ -532,6 +558,8 @@ $SLANG = array(
|
|||
'OpGt' => 'greater than',
|
||||
'OpGtEq' => 'greater than or equal to',
|
||||
'OpIn' => 'in set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'less than',
|
||||
'OpLtEq' => 'less than or equal to',
|
||||
'OpMatches' => 'matches',
|
||||
|
@ -541,6 +569,7 @@ $SLANG = array(
|
|||
'Open' => 'Open',
|
||||
'OptionHelp' => 'OptionHelp',
|
||||
'OptionRestartWarning' => '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.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => '銓垣專用',//進階選項
|
||||
'OrEnterNewName' => 'or enter new name',
|
||||
'Order' => '順序',
|
||||
|
@ -578,9 +607,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Rate',
|
||||
'Real' => 'Real',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => '錄影',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => '參考影像混合 %ge',
|
||||
'Refresh' => '更新',
|
||||
'Remote' => 'Remote',
|
||||
|
@ -596,6 +629,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Reset Event Counts',
|
||||
'Restart' => '重新啟動',
|
||||
|
@ -614,6 +648,7 @@ $SLANG = array(
|
|||
'Save' => '存檔',
|
||||
'SaveAs' => '儲存為',
|
||||
'SaveFilter' => 'Save Filter',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Scale',
|
||||
'Score' => '分數',
|
||||
'Secs' => 'Secs',
|
||||
|
@ -630,6 +665,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => '顯示過濾視窗',
|
||||
'ShowTimeline' => 'Show Timeline',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Size',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -649,6 +685,10 @@ $SLANG = array(
|
|||
'State' => 'State',
|
||||
'Stats' => 'Stats',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Step',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -659,6 +699,8 @@ $SLANG = array(
|
|||
'Stills' => '靜止',
|
||||
'Stop' => '停止',
|
||||
'Stopped' => '已停止',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => '串流',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Submit',
|
||||
|
@ -678,6 +720,7 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => '時間格式',
|
||||
'TimestampLabelFormat' => '時間標示格式',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => '時間標示 X',
|
||||
'TimestampLabelY' => '時間標示 Y',
|
||||
'Today' => 'Today',
|
||||
|
@ -724,6 +767,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => '輸出影片參數',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!', // Added - 2009-02-08
|
||||
'VideoSize' => '影片尺寸',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => '檢視',
|
||||
'ViewAll' => '全部檢視',
|
||||
'ViewEvent' => 'View Event', // Added - 2009-02-08
|
||||
|
@ -733,6 +777,7 @@ $SLANG = array(
|
|||
'Watch' => 'Watch',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Web Colour', // Added - 2009-02-08
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => '週',
|
||||
'White' => 'White',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
|
|
@ -78,6 +78,8 @@ $SLANG = array(
|
|||
'Actual' => '实际',
|
||||
'AddNewControl' => '新建控制',
|
||||
'AddNewMonitor' => '新建监视器',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => '新建用户',
|
||||
'AddNewZone' => '新建区域',
|
||||
'Alarm' => '报警',
|
||||
|
@ -105,22 +107,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => '存档状态',
|
||||
'AttrAvgScore' => '平均分数',
|
||||
'AttrCause' => '原因',
|
||||
'AttrDate' => '日期',
|
||||
'AttrDateTime' => '日期/时间',
|
||||
'AttrDiskBlocks' => '磁碟区块',
|
||||
'AttrDiskPercent' => '磁碟百分比',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => '过程',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => '帧',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => '最大分数',
|
||||
'AttrMonitorId' => '监视器 Id',
|
||||
'AttrMonitorName' => '监视器名称',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => '名称',
|
||||
'AttrNotes' => '备注',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => '系统负载',
|
||||
'AttrTime' => '时间',
|
||||
'AttrTotalScore' => '总分数',
|
||||
'AttrWeekday' => '星期',
|
||||
'Auto' => '自动',
|
||||
'AutoStopTimeout' => '超时自动停止',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -153,9 +165,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => '参考混合百分比必须设为一个正整数',
|
||||
'BadSectionLength' => '节长度必须设为30的整数倍',
|
||||
'BadSignalCheckColour' => '信号检查颜色必须设为有效的RGB颜色字符',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer' => '流重放缓冲必须为零或更多整数',
|
||||
'BadWarmupCount' => '预热帪必须设为零或更多整数',
|
||||
'BadWebColour' => 'Web颜色必须设为有效Web颜色字符',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -219,10 +233,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => '选择预置',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => '关闭',
|
||||
'Colour' => '彩色',
|
||||
'Command' => '命令',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => '配置',
|
||||
'ConfiguredFor' => '配置标的',
|
||||
'ConfirmDeleteEvents' => '确认希望删除所选事件?',
|
||||
|
@ -280,9 +296,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => '现在不,1星期内再次提醒我',
|
||||
'DonateYes' => '好,我现在就捐款',
|
||||
'Download' => '下载',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Duration',
|
||||
'Edit' => '编辑',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => '启动报警',
|
||||
'Enabled' => '已启动',
|
||||
|
@ -299,6 +317,7 @@ $SLANG = array(
|
|||
'Events' => '事件',
|
||||
'Exclude' => '排除',
|
||||
'Execute' => '执行',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => '导出',
|
||||
'ExportDetails' => '导出时间详情',
|
||||
'ExportFailed' => '导出失败',
|
||||
|
@ -328,8 +347,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => '执行全部匹配项命令',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => '全部匹配项的信息详情',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => '过滤器像素',
|
||||
'FilterUnset' => '您必须指定过滤器宽度和高度',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => '上传全部匹配项',
|
||||
'FilterVideoEvents' => '为全部匹配项创建视频',
|
||||
'Filters' => '过滤器',
|
||||
|
@ -354,6 +375,7 @@ $SLANG = array(
|
|||
'Function' => '功能',
|
||||
'Gain' => '增益',
|
||||
'General' => '一般',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => '创建视频',
|
||||
'GeneratingVideo' => '正在创建视频',
|
||||
'GoToZoneMinder' => '访问 ZoneMinder.com',
|
||||
|
@ -374,6 +396,7 @@ $SLANG = array(
|
|||
'High' => '高',
|
||||
'HighBW' => '高 B/W',
|
||||
'Home' => '主页',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => '小时',
|
||||
'Hue' => '色调',
|
||||
'Id' => 'Id',
|
||||
|
@ -398,6 +421,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => '管理监视器',
|
||||
'List' => '列表',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => '加载',
|
||||
'Local' => '本地',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -484,6 +508,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => '监视器',
|
||||
'Montage' => '镜头组接',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => '月',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -510,6 +535,7 @@ $SLANG = array(
|
|||
'Next' => '下一个',
|
||||
'No' => '不',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => '该事件没有相关帧的记录',
|
||||
'NoGroup' => '无组',
|
||||
'NoSavedFilters' => '没有保存过滤器',
|
||||
|
@ -528,6 +554,8 @@ $SLANG = array(
|
|||
'OpGt' => '大于',
|
||||
'OpGtEq' => '大于等于',
|
||||
'OpIn' => '在集',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => '小于',
|
||||
'OpLtEq' => '小于等于',
|
||||
'OpMatches' => '匹配',
|
||||
|
@ -537,6 +565,7 @@ $SLANG = array(
|
|||
'Open' => '打开',
|
||||
'OptionHelp' => '选项帮助',
|
||||
'OptionRestartWarning' => '这些改动在系统运行时可以不会完全生效.\n 当你设置完毕改动后\n请确认\n您重新启动 ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => '选项',
|
||||
'OrEnterNewName' => '或输入新名词',
|
||||
'Order' => '次序',
|
||||
|
@ -574,9 +603,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => '协议',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => '速率',
|
||||
'Real' => '实际',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => '记录',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => '参考影像混合 %ge',
|
||||
'Refresh' => '刷新',
|
||||
'Remote' => '远程',
|
||||
|
@ -592,6 +625,7 @@ $SLANG = array(
|
|||
'ReplayAll' => '全部事件',
|
||||
'ReplayGapless' => '无间隙事件',
|
||||
'ReplaySingle' => '单一事件',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => '重置',
|
||||
'ResetEventCounts' => '重置事件数',
|
||||
'Restart' => '重启动',
|
||||
|
@ -610,6 +644,7 @@ $SLANG = array(
|
|||
'Save' => '保存',
|
||||
'SaveAs' => '另存为',
|
||||
'SaveFilter' => '存储过滤器',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => '比例',
|
||||
'Score' => '分数',
|
||||
'Secs' => '秒',
|
||||
|
@ -626,6 +661,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => '显示过滤器视窗',
|
||||
'ShowTimeline' => '显示时间轴',
|
||||
'SignalCheckColour' => '型号检查颜色',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => '大小',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => '睡眠',
|
||||
|
@ -645,6 +681,10 @@ $SLANG = array(
|
|||
'State' => '状态',
|
||||
'Stats' => '统计',
|
||||
'Status' => '状况',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => '步进',
|
||||
'StepBack' => '单步后退',
|
||||
'StepForward' => '单步前进',
|
||||
|
@ -655,6 +695,8 @@ $SLANG = array(
|
|||
'Stills' => '静止',
|
||||
'Stop' => '停止',
|
||||
'Stopped' => '已停止',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => '流',
|
||||
'StreamReplayBuffer' => '流重放影像缓冲',
|
||||
'Submit' => '发送',
|
||||
|
@ -674,6 +716,7 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => '时间戳',
|
||||
'TimestampLabelFormat' => '时间戳标签格式',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => '时间戳标签 X',
|
||||
'TimestampLabelY' => '时间戳标签 Y',
|
||||
'Today' => '今天',
|
||||
|
@ -720,6 +763,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => '视频产生参数',
|
||||
'VideoGenSucceeded' => '视频产生成功!',
|
||||
'VideoSize' => '视频尺寸',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => '查看',
|
||||
'ViewAll' => '查看全部',
|
||||
'ViewEvent' => '查看事件',
|
||||
|
@ -729,6 +773,7 @@ $SLANG = array(
|
|||
'Watch' => '观察',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Web颜色',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => '周',
|
||||
'White' => '白',
|
||||
'WhiteBalance' => '白平衡',
|
||||
|
|
|
@ -78,6 +78,8 @@ $SLANG = array(
|
|||
'Actual' => 'Skutečná',
|
||||
'AddNewControl' => 'Přidat nové řízení',
|
||||
'AddNewMonitor' => 'Přidat kameru',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Přidat uživatele',
|
||||
'AddNewZone' => 'Přidat zónu',
|
||||
'Alarm' => 'Alarm',
|
||||
|
@ -105,22 +107,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Archiv status',
|
||||
'AttrAvgScore' => 'Prům. skóre',
|
||||
'AttrCause' => 'Příčina',
|
||||
'AttrDate' => 'Datum',
|
||||
'AttrDateTime' => 'Datum/Čas',
|
||||
'AttrDiskBlocks' => 'Bloky disku',
|
||||
'AttrDiskPercent' => 'Zaplnění disku',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Průběh',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Snímky',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Max. skóre',
|
||||
'AttrMonitorId' => 'Kamera Id',
|
||||
'AttrMonitorName' => 'Jméno kamery',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Jméno',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'Čas',
|
||||
'AttrTotalScore' => 'Celkové skóre',
|
||||
'AttrWeekday' => 'Den v týdnu',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Časový limit pro vypršení',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -153,9 +165,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -219,10 +233,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Zavřít',
|
||||
'Colour' => 'Barva',
|
||||
'Command' => 'Příkaz',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Nastavení',
|
||||
'ConfiguredFor' => 'Nastaveno pro',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -280,9 +296,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Nyní ne, připomenout za týden',
|
||||
'DonateYes' => 'Ano, chcit podpořit ZoneMinder nyní',
|
||||
'Download' => 'Stáhnout',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Průběh',
|
||||
'Edit' => 'Editovat',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Povolit alarmy',
|
||||
'Enabled' => 'Povoleno',
|
||||
|
@ -299,6 +317,7 @@ $SLANG = array(
|
|||
'Events' => 'Záznamy',
|
||||
'Exclude' => 'Vyjmout',
|
||||
'Execute' => 'Execute',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exportovat',
|
||||
'ExportDetails' => 'Exportovat detaily záznamu',
|
||||
'ExportFailed' => 'Chyba při exportu',
|
||||
|
@ -328,8 +347,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Spustit příkaz na všech nalezených',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Podat zprávu o všech nalezených',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filtr Px',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Uploadovat nalezené',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Filtry',
|
||||
|
@ -354,6 +375,7 @@ $SLANG = array(
|
|||
'Function' => 'Funkce',
|
||||
'Gain' => 'Zisk',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Generovat video',
|
||||
'GeneratingVideo' => 'Generuji video',
|
||||
'GoToZoneMinder' => 'Jít na ZoneMinder.com',
|
||||
|
@ -374,6 +396,7 @@ $SLANG = array(
|
|||
'High' => 'Rychlá',
|
||||
'HighBW' => 'Rychlá B/W',
|
||||
'Home' => 'Domů',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Hodina',
|
||||
'Hue' => 'Odstín',
|
||||
'Id' => 'Id',
|
||||
|
@ -398,6 +421,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Linked Monitors',
|
||||
'List' => 'Seznam',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Load',
|
||||
'Local' => 'Lokální',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -484,6 +508,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Kamery',
|
||||
'Montage' => 'Sestřih',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Měsíc',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -510,6 +535,7 @@ $SLANG = array(
|
|||
'Next' => 'Další',
|
||||
'No' => 'Ne',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Pro tento snímek nejsou žádné záznamy',
|
||||
'NoGroup' => 'No Group',
|
||||
'NoSavedFilters' => 'Žádné uložené filtry',
|
||||
|
@ -528,6 +554,8 @@ $SLANG = array(
|
|||
'OpGt' => 'větší',
|
||||
'OpGtEq' => 'větší nebo rovno',
|
||||
'OpIn' => 'nin set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'menší',
|
||||
'OpLtEq' => 'menší nebo rovno',
|
||||
'OpMatches' => 'obsahuje',
|
||||
|
@ -537,6 +565,7 @@ $SLANG = array(
|
|||
'Open' => 'Otevřít',
|
||||
'OptionHelp' => 'MožnostHelp',
|
||||
'OptionRestartWarning' => 'Tyto změny se neprojeví\ndokud systém běží. Jakmile\ndokončíte provádění změn prosím\nrestartujte ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Možnosti',
|
||||
'OrEnterNewName' => 'nebo vložte nové jméno',
|
||||
'Order' => 'Pořadí',
|
||||
|
@ -574,9 +603,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Rychlost',
|
||||
'Real' => 'Skutečná',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Nahrávat',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Reference Image Blend %ge',
|
||||
'Refresh' => 'Obnovit',
|
||||
'Remote' => 'Síťová',
|
||||
|
@ -592,6 +625,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Resetovat počty záznamů',
|
||||
'Restart' => 'Restartovat',
|
||||
|
@ -610,6 +644,7 @@ $SLANG = array(
|
|||
'Save' => 'Uložit',
|
||||
'SaveAs' => 'Uložit jako',
|
||||
'SaveFilter' => 'Uložit filtr',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Velikost',
|
||||
'Score' => 'Skóre',
|
||||
'Secs' => 'Délka(s)',
|
||||
|
@ -626,6 +661,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Zobrazit filtr',
|
||||
'ShowTimeline' => 'Zobrazit časovou linii ',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Velikost',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Spát',
|
||||
|
@ -645,6 +681,10 @@ $SLANG = array(
|
|||
'State' => 'Stav',
|
||||
'Stats' => 'Statistiky',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Krok',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -655,6 +695,8 @@ $SLANG = array(
|
|||
'Stills' => 'Snímky',
|
||||
'Stop' => 'Zastavit',
|
||||
'Stopped' => 'Zastaven',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Stream',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Potvrdit',
|
||||
|
@ -674,6 +716,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Časové razítko X',
|
||||
'TimestampLabelY' => 'Časové razítko Y',
|
||||
'Today' => 'Dnes',
|
||||
|
@ -720,6 +763,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parametry generování videa',
|
||||
'VideoGenSucceeded' => 'Video vygenerováno úspěšně!',
|
||||
'VideoSize' => 'Velikost videa',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Zobrazit',
|
||||
'ViewAll' => 'Zobrazit všechny',
|
||||
'ViewEvent' => 'Zobrazit záznam',
|
||||
|
@ -729,6 +773,7 @@ $SLANG = array(
|
|||
'Watch' => 'Sledovat',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Webová barva',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Týden',
|
||||
'White' => 'Bílá',
|
||||
'WhiteBalance' => 'Vyvážení bílé',
|
||||
|
|
|
@ -80,6 +80,8 @@ $SLANG = array(
|
|||
'Actual' => 'Original',
|
||||
'AddNewControl' => 'Neues Steuerelement hinzufügen',
|
||||
'AddNewMonitor' => 'Neuer Monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Neuer Benutzer',
|
||||
'AddNewZone' => 'Neue Zone',
|
||||
'Alarm' => 'Alarm',
|
||||
|
@ -107,22 +109,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Archivstatus',
|
||||
'AttrAvgScore' => 'Mittlere Wertung',
|
||||
'AttrCause' => 'Grund',
|
||||
'AttrDate' => 'Datum',
|
||||
'AttrDateTime' => 'Datum/Zeit',
|
||||
'AttrDiskBlocks' => 'Disk-Blöcke',
|
||||
'AttrDiskPercent' => 'Disk-Prozent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Dauer',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Bilder',
|
||||
'AttrId' => 'ID',
|
||||
'AttrMaxScore' => 'Maximale Wertung',
|
||||
'AttrMonitorId' => 'Monitor-ID',
|
||||
'AttrMonitorName' => 'Monitorname',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Name',
|
||||
'AttrNotes' => 'Bemerkungen',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Systemlast',
|
||||
'AttrTime' => 'Zeit',
|
||||
'AttrTotalScore' => 'Gesamtwertung',
|
||||
'AttrWeekday' => 'Wochentag',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto-Stopp-Zeitüberschreitung',
|
||||
'Available' => 'Verfügbar', // Added - 2009-03-31
|
||||
|
@ -155,9 +167,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Der Referenz-Blenden-Prozentwert muss ganzzahlig 0 oder größer sein',
|
||||
'BadSectionLength' => 'Die Bereichslänge muss ganzzahlig 0 oder größer sein',
|
||||
'BadSignalCheckColour' => 'Die Signalprüffarbe muss auf einen gültigen Farbwert eingestellt sein',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Der Wiedergabestrompuffer muss eine ganze Zahl von null oder mehr betragen',
|
||||
'BadWarmupCount' => 'Die Anzahl der Vorwärmbilder muss ganzzahlig 0 oder größer sein',
|
||||
'BadWebColour' => 'Die Webfarbe muss auf einen gültigen Farbwert eingestellt sein',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'Die Breite muss auf einen gültigen Wert eingestellt sein',
|
||||
'Bandwidth' => 'Bandbreite',
|
||||
'BandwidthHead' => 'Bandbreite', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
|
@ -221,10 +235,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Log-Auswahl', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Voreinstellung auswählen',
|
||||
'Clear' => 'Leeren', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Schließen',
|
||||
'Colour' => 'Farbe',
|
||||
'Command' => 'Kommando',
|
||||
'Component' => 'Komponente', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Konfig.',
|
||||
'ConfiguredFor' => 'Konfiguriert für',
|
||||
'ConfirmDeleteEvents' => 'Sind Sie sicher, dass Sie die ausgewählten Ereignisse löschen wollen?',
|
||||
|
@ -282,9 +298,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Noch nicht, erinnere mich in einer Woche noch mal.',
|
||||
'DonateYes' => 'Ja, ich möchte jetzt spenden.',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Monitornamen Duplizieren', // Added - 2009-03-31
|
||||
'Duration' => 'Dauer',
|
||||
'Edit' => 'Bearbeiten',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'E-Mail',
|
||||
'EnableAlarms' => 'Alarme aktivieren',
|
||||
'Enabled' => 'Aktiviert',
|
||||
|
@ -301,6 +319,7 @@ $SLANG = array(
|
|||
'Events' => 'Ereignisse',
|
||||
'Exclude' => 'Ausschluss;',
|
||||
'Execute' => 'Ausführen',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exportieren',
|
||||
'ExportDetails' => 'Exportiere Ereignis-Details',
|
||||
'ExportFailed' => 'Exportieren fehlgeschlagen',
|
||||
|
@ -330,8 +349,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Ausführen bei allen Treffern',
|
||||
'FilterLog' => 'Log filtern', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Detaillierte Nachricht zu allen Treffern',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter-Pixel',
|
||||
'FilterUnset' => 'Sie müssen eine Breite und Höhe für das Filter angeben',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Hochladen aller Treffer',
|
||||
'FilterVideoEvents' => 'Video für alle Treffer erstellen',
|
||||
'Filters' => 'Filter',
|
||||
|
@ -356,6 +377,7 @@ $SLANG = array(
|
|||
'Function' => 'Funktion',
|
||||
'Gain' => 'Verstärkung',
|
||||
'General' => 'Allgemeines',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Erzeuge Video',
|
||||
'GeneratingVideo' => 'Erzeuge Video...',
|
||||
'GoToZoneMinder' => 'Besuche ZoneMinder.com',
|
||||
|
@ -376,6 +398,7 @@ $SLANG = array(
|
|||
'High' => 'hohe',
|
||||
'HighBW' => 'Hohe B/W',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Stunde',
|
||||
'Hue' => 'Farbton',
|
||||
'Id' => 'ID',
|
||||
|
@ -400,6 +423,7 @@ $SLANG = array(
|
|||
'Line' => 'Zeile', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Verbundene Monitore',
|
||||
'List' => 'Liste',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Last',
|
||||
'Local' => 'Lokal',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -486,6 +510,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'Die nachfolgende Liste zeigt erkannte Analog- und Netzwerkkameras, ob sie bereits genutzt werden und ob sie zur Auswahl verfügbar sind.<br/><br/>Wähle den gewünschten Eintrag aus der folgenden Liste.<br/><br/>Bitte Beachten: Nicht alle Kameras können erkannt werden. Die Auswahl einer Kamera kann bereits eingetragene Werte im aktuellen Monitor überschreiben.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Monitore',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Monat',
|
||||
'More' => 'Mehr', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -512,6 +537,7 @@ $SLANG = array(
|
|||
'Next' => 'Nächstes',
|
||||
'No' => 'Nein',
|
||||
'NoDetectedCameras' => 'Keine Kameras erkannt', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Es gibt keine Aufnahmen von diesem Ereignis.',
|
||||
'NoGroup' => 'Keine Gruppe',
|
||||
'NoSavedFilters' => 'Keine gespeicherten Filter',
|
||||
|
@ -530,6 +556,8 @@ $SLANG = array(
|
|||
'OpGt' => 'groesser als',
|
||||
'OpGtEq' => 'groesser oder gleich wie',
|
||||
'OpIn' => 'in Satz',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'kleiner als',
|
||||
'OpLtEq' => 'kleiner oder gleich wie',
|
||||
'OpMatches' => 'zutreffend',
|
||||
|
@ -539,6 +567,7 @@ $SLANG = array(
|
|||
'Open' => 'öffnen',
|
||||
'OptionHelp' => 'Hilfe',
|
||||
'OptionRestartWarning' => 'Veränderungen werden erst nach einem Neustart des Programms aktiv.\nFür eine sofortige änderung starten Sie das Programm bitte neu.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Optionen',
|
||||
'OrEnterNewName' => 'oder neuen Namen eingeben',
|
||||
'Order' => 'Reihenfolge',
|
||||
|
@ -576,9 +605,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'Die folgende Liste zeigt die verfügbaren Streamingprofile der ausgewählten Kamera.<br/><br/>Wähle den gewünschten Eintrag aus der folgenden Liste.<br/><br/>Bitte Beachten: Zoneminder kann keine zusätzlichen Profile konfigurieren. Die Auswahl einer Kamera kann bereits eingetragene Werte im aktuellen Monitor überschreiben.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Fortschritt', // Added - 2015-04-18
|
||||
'Protocol' => 'Protokoll',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Abspielgeschwindigkeit',
|
||||
'Real' => 'Real',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Aufnahme',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Referenz-Bildblende',
|
||||
'Refresh' => 'Aktualisieren',
|
||||
'Remote' => 'Remote',
|
||||
|
@ -594,6 +627,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Alle Ereignisse',
|
||||
'ReplayGapless' => 'Lückenlose Ereignisse',
|
||||
'ReplaySingle' => 'Einzelereignis',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Zurücksetzen',
|
||||
'ResetEventCounts' => 'Lösche Ereignispunktzahl',
|
||||
'Restart' => 'Neustart',
|
||||
|
@ -612,6 +646,7 @@ $SLANG = array(
|
|||
'Save' => 'Speichern',
|
||||
'SaveAs' => 'Speichere als',
|
||||
'SaveFilter' => 'Speichere Filter',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Skalierung',
|
||||
'Score' => 'Wertung',
|
||||
'Secs' => 'Sekunden',
|
||||
|
@ -628,6 +663,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Zeige Filterfenster',
|
||||
'ShowTimeline' => 'Zeige Zeitstrahl',
|
||||
'SignalCheckColour' => 'Farbe des Signalchecks',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Größe',
|
||||
'SkinDescription' => 'Wähle den standard Skin für diesen Computer.', // Added - 2011-01-30
|
||||
'Sleep' => 'Schlaf',
|
||||
|
@ -647,6 +683,10 @@ $SLANG = array(
|
|||
'State' => 'Status',
|
||||
'Stats' => 'Statistik',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Stufe',
|
||||
'StepBack' => 'Einen Schritt rückwärts',
|
||||
'StepForward' => 'Einen Schritt vorwärts',
|
||||
|
@ -657,6 +697,8 @@ $SLANG = array(
|
|||
'Stills' => 'Standbilder',
|
||||
'Stop' => 'Stop',
|
||||
'Stopped' => 'Gestoppt',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Stream',
|
||||
'StreamReplayBuffer' => 'Stream-Wiedergabe-Bildpuffer',
|
||||
'Submit' => 'Absenden',
|
||||
|
@ -676,9 +718,9 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Verwenden Sie die Steuerelemente unten, um zu Zoomen oder navigieren Sie vorwärts und rückwärts durch die Zeit.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Zeitstempel',
|
||||
'TimestampLabelFormat' => 'Format des Zeitstempels',
|
||||
'TimestampLabelSize' => 'Schriftgröße',
|
||||
'TimestampLabelX' => 'Zeitstempel-X',
|
||||
'TimestampLabelY' => 'Zeitstempel-Y',
|
||||
'TimestampLabelSize' => 'Schriftgröße',
|
||||
'Today' => 'Heute',
|
||||
'Tools' => 'Werkzeuge',
|
||||
'Total' => 'Insgesamt', // Added - 2011-06-16
|
||||
|
@ -723,6 +765,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parameter der Videoerzeugung',
|
||||
'VideoGenSucceeded' => 'Videoerzeugung erfolgreich!',
|
||||
'VideoSize' => 'Videogröße',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Ansicht',
|
||||
'ViewAll' => 'Alles ansehen',
|
||||
'ViewEvent' => 'Zeige Ereignis',
|
||||
|
@ -732,6 +775,7 @@ $SLANG = array(
|
|||
'Watch' => 'Beobachte',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Webfarbe',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Woche',
|
||||
'White' => 'Weiß',
|
||||
'WhiteBalance' => 'Weiß-Abgleich',
|
||||
|
|
|
@ -72,15 +72,6 @@ header( "Content-Type: text/html; charset=utf-8" );
|
|||
|
||||
// Simple String Replacements
|
||||
$SLANG = array(
|
||||
'SystemLog' => 'System Log',
|
||||
'DateTime' => 'Dato/Tid',
|
||||
'Component' => 'Komponent',
|
||||
'Pid' => 'PID',
|
||||
'Level' => 'Niveau',
|
||||
'Message' => 'Meddelelse',
|
||||
'Line' => 'Linie',
|
||||
'More' => 'Mere',
|
||||
'Clear' => 'Slet',
|
||||
'24BitColour' => '24 bit farve',
|
||||
'32BitColour' => '32 bit farve',
|
||||
'8BitGrey' => '8 bit gråskala',
|
||||
|
@ -89,6 +80,7 @@ $SLANG = array(
|
|||
'AddNewControl' => 'Tilføj Ny Kontrol',
|
||||
'AddNewMonitor' => 'Tilføj Ny Monitor',
|
||||
'AddNewServer' => 'Tilføj Ny Server',
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Tilføj Ny Bruger',
|
||||
'AddNewZone' => 'Tilføj Ny Zone',
|
||||
'Alarm' => 'Alarm',
|
||||
|
@ -98,8 +90,8 @@ $SLANG = array(
|
|||
'AlarmLimits' => 'Alarm Grænser',
|
||||
'AlarmMaximumFPS' => 'Alarm Maksimum FPS',
|
||||
'AlarmPx' => 'Alarm Px',
|
||||
'AlarmRefImageBlendPct' => 'Alarm Reference Billede Blandings %',
|
||||
'AlarmRGBUnset' => 'Du skal vælge en alarm RGB farve',
|
||||
'AlarmRefImageBlendPct' => 'Alarm Reference Billede Blandings %',
|
||||
'Alert' => 'Advarsel',
|
||||
'All' => 'Alle',
|
||||
'AnalysisFPS' => 'Analyse FPS',
|
||||
|
@ -107,37 +99,45 @@ $SLANG = array(
|
|||
'Apply' => 'Udfør',
|
||||
'ApplyingStateChange' => 'Udfører tilstandsændring',
|
||||
'ArchArchived' => 'Kun arkiverede',
|
||||
'ArchUnarchived' => 'Kun ikke-arkiverede',
|
||||
'Archive' => 'Arkivér',
|
||||
'Archived' => 'Arkiverede',
|
||||
'ArchUnarchived' => 'Kun ikke-arkiverede',
|
||||
'Area' => 'Område',
|
||||
'AreaUnits' => 'Område (px/%)',
|
||||
'AttrAlarmFrames' => 'Alarm Rammer',
|
||||
'AttrArchiveStatus' => 'Arkiverings Status',
|
||||
'AttrAvgScore' => 'Middel Score',
|
||||
'AttrCause' => 'Årsag',
|
||||
'AttrDate' => 'Dato',
|
||||
'AttrDateTime' => 'Dato/Tid',
|
||||
'AttrDiskBlocks' => 'Disk Blokke',
|
||||
'AttrDiskPercent' => 'Disk Procent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Varighed',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Rammer',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Max. Score',
|
||||
'AttrMonitorId' => 'Monitor Id',
|
||||
'AttrMonitorName' => 'Monitor Navn',
|
||||
'AttrServer' => 'Server',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Navn',
|
||||
'AttrNotes' => 'Noter',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Belastning',
|
||||
'AttrTime' => 'Tid',
|
||||
'AttrTotalScore' => 'Total Score',
|
||||
'AttrWeekday' => 'Ugedag',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Tilgængelig',
|
||||
'AvgBrScore' => 'Middel<br/>Score',
|
||||
'Available' => 'Tilgængelig',
|
||||
'Background' => 'Baggrund',
|
||||
'BackgroundFilter' => 'Kør filteret i baggrunden',
|
||||
'BadAlarmFrameCount' => 'Antal alarm rammer skal være et positivt heltal',
|
||||
|
@ -145,20 +145,20 @@ $SLANG = array(
|
|||
'BadAnalysisFPS' => 'Analyse FPS skal være et positivt heltal eller flydende tal',
|
||||
'BadAnalysisUpdateDelay'=> 'Analyse opdaterings forsinkelse skal være et heltal på 0 eller mere',
|
||||
'BadChannel' => 'Kanal skal sættes til et heltal på 0 eller mere',
|
||||
'BadColours' => 'Målfarven skal sættes til en gyldig værdi',
|
||||
'BadDevice' => 'Enhed skal sættes til en gyldig værdi',
|
||||
'BadFormat' => 'Format skal sættes til en gyldig værdi',
|
||||
'BadFPSReportInterval' => 'Antal FPS report interval buffere skal være et heltal på 0 eller mere',
|
||||
'BadFormat' => 'Format skal sættes til en gyldig værdi',
|
||||
'BadFrameSkip' => 'Antal Frame skip skal være et heltal på 0 eller mere',
|
||||
'BadMotionFrameSkip' => 'Antal Motion Frame skip skal være et heltal på 0 eller mere',
|
||||
'BadHeight' => 'Højde skal sættes til en gyldig værdi',
|
||||
'BadHost' => 'Host skal vare en gyldig IP adresse eller hostname, inkludér ikke http://',
|
||||
'BadImageBufferCount' => 'Billed buffer størrelse skal være et heltal på 10 eller mere',
|
||||
'BadLabelX' => 'Mærkat X co-ordinaten skal sættes til et heltal på 0 eller mere',
|
||||
'BadLabelY' => 'Mærkat Y co-ordinaten skal sættes til et heltal på 0 eller mere',
|
||||
'BadMaxFPS' => 'Maximum FPS skal være et positivt heltal eller flydende tal',
|
||||
'BadMotionFrameSkip' => 'Antal Motion Frame skip skal være et heltal på 0 eller mere',
|
||||
'BadNameChars' => 'Navne kan kun indeholde alfanumeriske tegn samt mellemrum, bindestreg og understregning',
|
||||
'BadPalette' => 'Palette skal sættes til en gyldig værdi',
|
||||
'BadColours' => 'Målfarven skal sættes til en gyldig værdi',
|
||||
'BadPath' => 'Sti skal sættes til en gyldig værdi',
|
||||
'BadPort' => 'Port skal sættes til et gyldigt nummer',
|
||||
'BadPostEventCount' => 'Antal rammer efter hændelsen skal være et heltal på 0 eller mere',
|
||||
|
@ -166,39 +166,40 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blandings procentdelen skal være et positivt heltal',
|
||||
'BadSectionLength' => 'Sektionslængden skal være et heltal på 30 eller mere',
|
||||
'BadSignalCheckColour' => 'Signal check farve skal være en gyldig RGB farve streng',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer' => 'Videostrøm genspilsbufferen skal sættes til et heltal på 0 eller mere',
|
||||
'BadWarmupCount' => 'Opvarmnings rammer skal være et heltal på 0 eller mere',
|
||||
'BadWebColour' => 'Web farve skal være en gyldigt web farve streng',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'Bredde skal sættes til en gyldig værdi',
|
||||
'Bandwidth' => 'Båndbredde',
|
||||
'BandwidthHead' => 'Båndbredde', // 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 Størrelser',
|
||||
'Blobs' => 'Blobs',
|
||||
'Brightness' => 'Lysstyrke',
|
||||
'Buffer' => 'Buffer',
|
||||
'Buffers' => 'Buffere',
|
||||
'CSSDescription' => 'SKift standard css for denne computer',
|
||||
'CanAutoFocus' => 'Can Auto Focus',
|
||||
'CanAutoGain' => 'Can Auto Gain',
|
||||
'CanAutoIris' => 'Can Auto Iris',
|
||||
'CanAutoWhite' => 'Can Auto White Bal.',
|
||||
'CanAutoZoom' => 'Can Auto Zoom',
|
||||
'Cancel' => 'Fortryd',
|
||||
'CancelForcedAlarm' => 'Fortryd Tvungen Alarm',
|
||||
'CanFocusAbs' => 'Can Focus Absolute',
|
||||
'CanFocus' => 'Can Focus',
|
||||
'CanFocusAbs' => 'Can Focus Absolute',
|
||||
'CanFocusCon' => 'Can Focus Continuous',
|
||||
'CanFocusRel' => 'Can Focus Relative',
|
||||
'CanGainAbs' => 'Can Gain Absolute',
|
||||
'CanGain' => 'Can Gain ',
|
||||
'CanGainAbs' => 'Can Gain Absolute',
|
||||
'CanGainCon' => 'Can Gain Continuous',
|
||||
'CanGainRel' => 'Can Gain Relative',
|
||||
'CanIrisAbs' => 'Can Iris Absolute',
|
||||
'CanIris' => 'Can Iris',
|
||||
'CanIrisAbs' => 'Can Iris Absolute',
|
||||
'CanIrisCon' => 'Can Iris Continuous',
|
||||
'CanIrisRel' => 'Can Iris Relative',
|
||||
'CanMoveAbs' => 'Can Move Absolute',
|
||||
'CanMove' => 'Can Move',
|
||||
'CanMoveAbs' => 'Can Move Absolute',
|
||||
'CanMoveCon' => 'Can Move Continuous',
|
||||
'CanMoveDiag' => 'Can Move Diagonally',
|
||||
'CanMoveMap' => 'Can Move Mapped',
|
||||
|
@ -209,19 +210,21 @@ $SLANG = array(
|
|||
'CanSleep' => 'Can Sleep',
|
||||
'CanTilt' => 'Can Tilt',
|
||||
'CanWake' => 'Can Wake',
|
||||
'CanWhite' => 'Can White Balance',
|
||||
'CanWhiteAbs' => 'Can White Bal. Absolute',
|
||||
'CanWhiteBal' => 'Can White Bal.',
|
||||
'CanWhite' => 'Can White Balance',
|
||||
'CanWhiteCon' => 'Can White Bal. Continuous',
|
||||
'CanWhiteRel' => 'Can White Bal. Relative',
|
||||
'CanZoomAbs' => 'Can Zoom Absolute',
|
||||
'CanZoom' => 'Can Zoom',
|
||||
'CanZoomAbs' => 'Can Zoom Absolute',
|
||||
'CanZoomCon' => 'Can Zoom Continuous',
|
||||
'CanZoomRel' => 'Can Zoom Relative',
|
||||
'Cancel' => 'Fortryd',
|
||||
'CancelForcedAlarm' => 'Fortryd Tvungen Alarm',
|
||||
'CaptureHeight' => 'Capture Højde',
|
||||
'CaptureMethod' => 'Capture Metode',
|
||||
'CaptureResolution' => 'Capture Opløsning',
|
||||
'CapturePalette' => 'Capture Palette',
|
||||
'CaptureResolution' => 'Capture Opløsning',
|
||||
'CaptureWidth' => 'Capture Bredde',
|
||||
'Cause' => 'Årsag',
|
||||
'CheckMethod' => 'Alarm Check Metode',
|
||||
|
@ -230,10 +233,13 @@ $SLANG = array(
|
|||
'ChooseLogFormat' => 'Vælg et lognings format',
|
||||
'ChooseLogSelection' => 'Vælg et lognings udvælgelse',
|
||||
'ChoosePreset' => 'Vælg Forudindstilling',
|
||||
'Clear' => 'Slet',
|
||||
'CloneMonitor' => 'Klon Monitor',
|
||||
'Close' => 'Luk',
|
||||
'Colour' => 'Farve',
|
||||
'Command' => 'Kommando',
|
||||
'Component' => 'Komponent',
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Konfigurer',
|
||||
'ConfiguredFor' => 'Konfigureret for',
|
||||
'ConfirmDeleteEvents' => 'Er du sikker på, at du vil slette de markerede hændelser?',
|
||||
|
@ -244,62 +250,64 @@ $SLANG = array(
|
|||
'ContactAdmin' => 'Venligst kontakt din administrator for detaljer.',
|
||||
'Continue' => 'Fortsæt',
|
||||
'Contrast' => 'Kontrast',
|
||||
'Control' => 'Control',
|
||||
'ControlAddress' => 'Control Address',
|
||||
'ControlCap' => 'Control Capability',
|
||||
'ControlCaps' => 'Control Capabilities',
|
||||
'Control' => 'Control',
|
||||
'ControlDevice' => 'Control Device',
|
||||
'Controllable' => 'Controllable',
|
||||
'ControlType' => 'Control Type',
|
||||
'Controllable' => 'Controllable',
|
||||
'Current' => 'Nuværende',
|
||||
'Cycle' => 'Cyklisk',
|
||||
'CycleWatch' => 'Cyklisk Overvågning',
|
||||
'DateTime' => 'Dato/Tid',
|
||||
'Day' => 'Dag',
|
||||
'Debug' => 'Fejlfind',
|
||||
'DefaultRate' => 'Standard Rate',
|
||||
'DefaultScale' => 'Standard Skalering',
|
||||
'DefaultView' => 'Standard Visning',
|
||||
'Deinterlacing' => 'Deinterlacing',
|
||||
'RTSPDescribe' => 'Brug RTSP Response Media URL',
|
||||
'Delay' => 'Forsilkelse',
|
||||
'Delete' => 'Slet',
|
||||
'DeleteAndNext' => 'Slet & Næste',
|
||||
'DeleteAndPrev' => 'Slet & Forrige',
|
||||
'Delete' => 'Slet',
|
||||
'DeleteSavedFilter' => 'Slet gemt filter',
|
||||
'Description' => 'Beskrivelse',
|
||||
'DetectedCameras' => 'Fundne Kameraer',
|
||||
'DetectedProfiles' => 'Fundne Profiler',
|
||||
'Device' => 'Enheds',
|
||||
'DeviceChannel' => 'Enheds Kanal',
|
||||
'DeviceFormat' => 'Enheds Format',
|
||||
'DeviceNumber' => 'Enheds Number',
|
||||
'DevicePath' => 'Sti Til Enhed',
|
||||
'Device' => 'Enheds',
|
||||
'Devices' => 'Enheder',
|
||||
'Dimensions' => 'Dimensioner',
|
||||
'DisableAlarms' => 'Deaktiver Alarmer',
|
||||
'Disk' => 'Disk',
|
||||
'Display' => 'Display',
|
||||
'Displaying' => 'Displaying',
|
||||
'DoNativeMotionDetection'=> 'Do Native Motion Detection',
|
||||
'Donate' => 'Venligst Donér',
|
||||
'DonateAlready' => 'Nej, jeg har allerede doneret',
|
||||
'DonateEnticement' => '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.',
|
||||
'Donate' => 'Venligst Donér',
|
||||
'DonateRemindDay' => 'Ikke endnu, påmind igen on 1 dag',
|
||||
'DonateRemindHour' => 'Ikke endnu, påmind igen on 1 time',
|
||||
'DonateRemindMonth' => 'Ikke endnu, påmind igen on 1 måned',
|
||||
'DonateRemindNever' => 'Nej, jeg ønsker ikke at donere, påmind ikke igen',
|
||||
'DonateRemindWeek' => 'Ikke endnu, påmind igen on 1 uge',
|
||||
'DonateYes' => 'Ja, jeg vil gerne donere nu',
|
||||
'DoNativeMotionDetection'=> 'Do Native Motion Detection',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Dupliket Monitor Navn',
|
||||
'Duration' => 'Varighed',
|
||||
'Edit' => 'Ret',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Aktivér Alarmer',
|
||||
'Enabled' => 'Virksom',
|
||||
'EnterNewFilterName' => 'Indtast nyt filternavn',
|
||||
'ErrorBrackets' => 'Fejl, venligst check, at du har samme antal open og lukke klammer',
|
||||
'Error' => 'Fejl',
|
||||
'ErrorBrackets' => 'Fejl, venligst check, at du har samme antal open og lukke klammer',
|
||||
'ErrorValidValue' => 'Fejl, venligst check at alle parametre har en gyldig værdi',
|
||||
'Etc' => 'etc',
|
||||
'Event' => 'Hændelse',
|
||||
|
@ -310,9 +318,9 @@ $SLANG = array(
|
|||
'Events' => 'Hændelser',
|
||||
'Exclude' => 'Ekskluder',
|
||||
'Execute' => 'Udfør',
|
||||
'ExportDetails' => 'Exporter Hændelses Detaljer',
|
||||
'Exif' => 'Indlejre EXIF data i billede',
|
||||
'Export' => 'Exporter',
|
||||
'ExportDetails' => 'Exporter Hændelses Detaljer',
|
||||
'ExportFailed' => 'Export Mislykkedes',
|
||||
'ExportFormat' => 'Export Fil Format',
|
||||
'ExportFormatTar' => 'Tar',
|
||||
|
@ -320,53 +328,55 @@ $SLANG = array(
|
|||
'ExportFrames' => 'Exporter Ramme Detaljer',
|
||||
'ExportImageFiles' => 'Exporter billed filer',
|
||||
'ExportLog' => 'Export Log',
|
||||
'Exporting' => 'Exporterer',
|
||||
'ExportMiscFiles' => 'Exporter Andre Filer (hvis tilstede)',
|
||||
'ExportOptions' => 'Export Indstillinger',
|
||||
'ExportSucceeded' => 'Export Lykkedes',
|
||||
'ExportVideoFiles' => 'Exporter Video Filer (hvis tilstede)',
|
||||
'Exporting' => 'Exporterer',
|
||||
'FPS' => 'fps',
|
||||
'FPSReportInterval' => 'FPS Rapport Interval',
|
||||
'FTP' => 'FTP',
|
||||
'Far' => 'Fjern',
|
||||
'FastForward' => 'Hurtigt Frem',
|
||||
'Feed' => 'Feed',
|
||||
'Ffmpeg' => 'Ffmpeg',
|
||||
'File' => 'Fil',
|
||||
'Filter' => 'Filter',
|
||||
'FilterArchiveEvents' => 'Arkiver alle matchende',
|
||||
'FilterDeleteEvents' => 'Slet alle matchende',
|
||||
'FilterEmailEvents' => 'Email detaljer for alle matchende',
|
||||
'FilterExecuteEvents' => 'Udfør kommando for alle matchende',
|
||||
'FilterLog' => 'Filter log',
|
||||
'FilterMessageEvents' => 'Meddel detaljer for alle matchende',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter Px',
|
||||
'Filter' => 'Filter',
|
||||
'Filters' => 'Filtre',
|
||||
'FilterUnset' => 'Du skal angive filter bredde og højde',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Upload alle match',
|
||||
'FilterVideoEvents' => 'Opret video for alle match',
|
||||
'Filters' => 'Filtre',
|
||||
'First' => 'Første',
|
||||
'FlippedHori' => 'Spejlet Horizontalt',
|
||||
'FlippedVert' => 'Spejlet 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.
|
||||
'FnModect' => 'Modect', // Added 2013.08.16.
|
||||
'FnMonitor' => 'Monitor', // Added 2013.08.16.
|
||||
'FnNodect' => 'Nodect', // Added 2013.08.16.
|
||||
'FnNone' => 'None', // Added 2013.08.16.
|
||||
'FnRecord' => 'Record', // Added 2013.08.16.
|
||||
'Focus' => 'Focus',
|
||||
'ForceAlarm' => 'Force Alarm',
|
||||
'Format' => 'Format',
|
||||
'FPS' => 'fps',
|
||||
'FPSReportInterval' => 'FPS Rapport Interval',
|
||||
'Frame' => 'Ramme',
|
||||
'FrameId' => 'Ramme Id',
|
||||
'FrameRate' => 'Billedhastighed',
|
||||
'Frames' => 'Rammer',
|
||||
'FrameSkip' => 'Spring over antal rammer',
|
||||
'MotionFrameSkip' => 'Spring over antal bevægelsesrammer',
|
||||
'FTP' => 'FTP',
|
||||
'Frames' => 'Rammer',
|
||||
'Func' => 'Funk',
|
||||
'Function' => 'Funktion',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'Generelt',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Generer Video',
|
||||
'GeneratingVideo' => 'Genererer Video',
|
||||
'GoToZoneMinder' => 'Gå til ZoneMinder.com',
|
||||
|
@ -384,8 +394,8 @@ $SLANG = array(
|
|||
'HasTurboTilt' => 'Has Turbo Tilt',
|
||||
'HasWhiteSpeed' => 'Has White Bal. Speed',
|
||||
'HasZoomSpeed' => 'Has Zoom Speed',
|
||||
'HighBW' => 'High B/W',
|
||||
'High' => 'Høj',
|
||||
'HighBW' => 'High B/W',
|
||||
'Home' => 'Hjemme',
|
||||
'Hostname' => 'Hostname',
|
||||
'Hour' => 'Time',
|
||||
|
@ -393,11 +403,11 @@ $SLANG = array(
|
|||
'Id' => 'Id',
|
||||
'Idle' => 'Afventende',
|
||||
'Ignore' => 'Ignorer',
|
||||
'ImageBufferSize' => 'Billed Buffer Størrelse (rammer)',
|
||||
'Image' => 'Billede',
|
||||
'ImageBufferSize' => 'Billed Buffer Størrelse (rammer)',
|
||||
'Images' => 'Billeder',
|
||||
'Include' => 'Inkluder',
|
||||
'In' => 'I',
|
||||
'Include' => 'Inkluder',
|
||||
'Inverted' => 'Inverteret',
|
||||
'Iris' => 'Blænde',
|
||||
'KeyString' => 'Nøgle Streng',
|
||||
|
@ -405,26 +415,30 @@ $SLANG = array(
|
|||
'Language' => 'Sprog',
|
||||
'Last' => 'Sidste',
|
||||
'Layout' => 'Layout',
|
||||
'Level' => 'Niveau',
|
||||
'Libvlc' => 'Libvlc',
|
||||
'LimitResultsPost' => 'resultater', // This is used at the end of the phrase 'Limit to first N results only'
|
||||
'LimitResultsPre' => 'Begræns til kun de første', // This is used at the beginning of the phrase 'Limit to first N results only'
|
||||
'Line' => 'Linie',
|
||||
'LinkedMonitors' => 'Sammenkædede Monitorer',
|
||||
'List' => 'Liste',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Belastning',
|
||||
'Local' => 'Lokal',
|
||||
'Log' => 'Log',
|
||||
'Logs' => 'Logs',
|
||||
'Logging' => 'Logning',
|
||||
'LoggedInAs' => 'Logget ind som',
|
||||
'Logging' => 'Logning',
|
||||
'LoggingIn' => 'Logger ind',
|
||||
'Login' => 'Logind',
|
||||
'Logout' => 'Logud',
|
||||
'LowBW' => 'Lav B/W',
|
||||
'Logs' => 'Logs',
|
||||
'Low' => 'Lav',
|
||||
'LowBW' => 'Lav B/W',
|
||||
'Main' => 'Hoved',
|
||||
'Man' => 'Man',
|
||||
'Manual' => 'Manuel',
|
||||
'Mark' => 'Markér',
|
||||
'Max' => 'Max',
|
||||
'MaxBandwidth' => 'Max Båndbredde',
|
||||
'MaxBrScore' => 'Max.<br/>Score',
|
||||
'MaxFocusRange' => 'Max Focus Range',
|
||||
|
@ -433,11 +447,9 @@ $SLANG = array(
|
|||
'MaxGainRange' => 'Max Gain Range',
|
||||
'MaxGainSpeed' => 'Max Gain Speed',
|
||||
'MaxGainStep' => 'Max Gain Step',
|
||||
'MaximumFPS' => 'Maximum FPS',
|
||||
'MaxIrisRange' => 'Max Iris Range',
|
||||
'MaxIrisSpeed' => 'Max Iris Speed',
|
||||
'MaxIrisStep' => 'Max Iris Step',
|
||||
'Max' => 'Max',
|
||||
'MaxPanRange' => 'Max Pan Range',
|
||||
'MaxPanSpeed' => 'Max Pan Speed',
|
||||
'MaxPanStep' => 'Max Pan Step',
|
||||
|
@ -450,8 +462,10 @@ $SLANG = array(
|
|||
'MaxZoomRange' => 'Max Zoom Range',
|
||||
'MaxZoomSpeed' => 'Max Zoom Speed',
|
||||
'MaxZoomStep' => 'Max Zoom Step',
|
||||
'MediumBW' => 'Medium B/W',
|
||||
'MaximumFPS' => 'Maximum FPS',
|
||||
'Medium' => 'Medium',
|
||||
'MediumBW' => 'Medium B/W',
|
||||
'Message' => 'Meddelelse',
|
||||
'MinAlarmAreaLtMax' => 'Minimum alarm område skal være mindre end maksimum',
|
||||
'MinAlarmAreaUnset' => 'Du skal angive det minimale antal alarm pixels',
|
||||
'MinBlobAreaLtMax' => 'Minimum blob område skal være mindre end maksimum',
|
||||
|
@ -487,22 +501,24 @@ $SLANG = array(
|
|||
'MinZoomStep' => 'Min Zoom Step',
|
||||
'Misc' => 'Diverse',
|
||||
'Mode' => 'Mode',
|
||||
'MonitorIds' => 'Monitor Ids',
|
||||
'Monitor' => 'Monitor',
|
||||
'MonitorPresetIntro' => 'Vælg en passende forudindstilling fra listen herunder.<br/><br/>Vær opmærksom på, at dette kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
|
||||
'MonitorIds' => 'Monitor Ids',
|
||||
'MonitorPreset' => 'Monitor Forudindstillinger',
|
||||
'MonitorProbeIntro' => 'Listen herunder viser fundne analoge og nætværks kameraer samt hvorvidt de allerede er i brug eller tilgængelige for udvælgelse.<br/><br/>Vælg det ønskede fra listen herunder.<br/><br/>Vær opmærksom på, at muligvis ikke alle kameraer er fundet og at valg af et kamera kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
|
||||
'MonitorPresetIntro' => 'Vælg en passende forudindstilling fra listen herunder.<br/><br/>Vær opmærksom på, at dette kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
|
||||
'MonitorProbe' => 'Monitor Probe',
|
||||
'MonitorProbeIntro' => 'Listen herunder viser fundne analoge og nætværks kameraer samt hvorvidt de allerede er i brug eller tilgængelige for udvælgelse.<br/><br/>Vælg det ønskede fra listen herunder.<br/><br/>Vær opmærksom på, at muligvis ikke alle kameraer er fundet og at valg af et kamera kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
|
||||
'Monitors' => 'Monitorer',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review',
|
||||
'Month' => 'Måned',
|
||||
'More' => 'Mere',
|
||||
'MotionFrameSkip' => 'Spring over antal bevægelsesrammer',
|
||||
'Move' => 'Bevæg',
|
||||
'MtgDefault' => 'Standard', // Added 2013.08.15.
|
||||
'Mtg2widgrd' => '2-bred gitter', // Added 2013.08.15.
|
||||
'Mtg3widgrd' => '3-bred gitter', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-bred gitter', // Added 2013.08.15.
|
||||
'Mtg3widgrx' => '3-bred gitter, skaleret, forstørret ved alarm', // Added 2013.08.15.
|
||||
'Mtg4widgrd' => '4-bred gitter', // Added 2013.08.15.
|
||||
'MtgDefault' => 'Standard', // Added 2013.08.15.
|
||||
'MustBeGe' => 'Skal være større end eller lig med',
|
||||
'MustBeLe' => 'Skal være mindre end eller lig med',
|
||||
'MustConfirmPassword' => 'Du skal bekræfte adgangskoden',
|
||||
|
@ -511,53 +527,55 @@ $SLANG = array(
|
|||
'Name' => 'Navn',
|
||||
'Near' => 'Nær',
|
||||
'Network' => 'Netværk',
|
||||
'New' => 'Ny',
|
||||
'NewGroup' => 'Ny Gruppe',
|
||||
'NewLabel' => 'Ny Mærkat',
|
||||
'New' => 'Ny',
|
||||
'NewPassword' => 'Ny Adgangskode',
|
||||
'NewState' => 'Ny Tilstand',
|
||||
'NewUser' => 'Ny bruger',
|
||||
'Next' => 'Næste',
|
||||
'No' => 'Nej',
|
||||
'NoDetectedCameras' => 'Ingen Detected Cameras',
|
||||
'NoDetectedProfiles' => 'Ingen Fundne Profiler',
|
||||
'NoFramesRecorded' => 'Der er ingen billeder optaget for denne hændelse',
|
||||
'NoGroup' => 'Ingen gruppe',
|
||||
'NoneAvailable' => 'Ingen tilgængelig',
|
||||
'None' => 'Ingen',
|
||||
'No' => 'Nej',
|
||||
'Normal' => 'Normalt',
|
||||
'NoSavedFilters' => 'IngenGemteFiltre',
|
||||
'NoStatisticsRecorded' => 'Der er ingen statistik noteret for denne hændelse/ramme',
|
||||
'None' => 'Ingen',
|
||||
'NoneAvailable' => 'Ingen tilgængelig',
|
||||
'Normal' => 'Normalt',
|
||||
'Notes' => 'Noter',
|
||||
'NumPresets' => 'Num Forudinst.',
|
||||
'Off' => 'Fra',
|
||||
'On' => 'Til',
|
||||
'OnvifCredentialsIntro' => 'Venligst lever brugernavn og adgangskodefor de valgte kamera.<br/>Hvis der ikke er oprettet nogen bruger for kameraet, så vil brugeren givet her blive oprettet med den angivne adgangskode.<br/><br/>',
|
||||
'OnvifProbe' => 'ONVIF',
|
||||
'OnvifProbeIntro' => 'Listen nedenfor viser fundne ONVIF kameraer samt hvorvidt de allerede er i brug eller tilgængelige for udvælgelse.<br/><br/>Vælg det ønskede fra listen herunder.<br/><br/>Vær opmærksom på, at muligvis ikke alle kameraer er fundet og at valg af et kamera kan overskrive værdier, du allerede har angivet for den aktuelle monitor.<br/><br/>',
|
||||
'OnvifCredentialsIntro' => 'Venligst lever brugernavn og adgangskodefor de valgte kamera.<br/>Hvis der ikke er oprettet nogen bruger for kameraet, så vil brugeren givet her blive oprettet med den angivne adgangskode.<br/><br/>',
|
||||
'Open' => 'Åben',
|
||||
'OpEq' => 'lig med',
|
||||
'OpGtEq' => 'større end eller lig med',
|
||||
'OpGt' => 'større end',
|
||||
'OpGtEq' => 'større end eller lig med',
|
||||
'OpIn' => 'indeholdt i',
|
||||
'OpLtEq' => 'mindre end eller lig med',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'mindre end',
|
||||
'OpLtEq' => 'mindre end eller lig med',
|
||||
'OpMatches' => 'matcher',
|
||||
'OpNe' => 'ikke lig med',
|
||||
'OpNotIn' => 'ikke indeholdt i',
|
||||
'OpNotMatches' => 'matcher ikke',
|
||||
'OptionalEncoderParam' => 'Optionelle Encoder Parametre',
|
||||
'Open' => 'Åben',
|
||||
'OptionHelp' => 'Indstillinger hjælp',
|
||||
'OptionRestartWarning' => 'Disse ændringer har muligvis ikke fuld effekt\nmens systemet er kørende. Når du har\nafsluttet dine ændringer, skal du huske at\ngenstarte ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optionelle Encoder Parametre',
|
||||
'Options' => 'Indstillinger',
|
||||
'Order' => 'Rækkefølge',
|
||||
'OrEnterNewName' => 'eller indtast nyt navn',
|
||||
'Order' => 'Rækkefølge',
|
||||
'Orientation' => 'Orientering',
|
||||
'Out' => 'Ud',
|
||||
'OverwriteExisting' => 'Overskriv Eksisterende',
|
||||
'Paged' => 'Sidevis',
|
||||
'PanLeft' => 'Pan Left',
|
||||
'Pan' => 'Pan',
|
||||
'PanLeft' => 'Pan Left',
|
||||
'PanRight' => 'Pan Right',
|
||||
'PanTilt' => 'Pan/Tilt',
|
||||
'Parameter' => 'Parameter',
|
||||
|
@ -565,14 +583,15 @@ $SLANG = array(
|
|||
'PasswordsDifferent' => 'Den nye og den bekræftende adgangskode er forskellige',
|
||||
'Paths' => 'Stier',
|
||||
'Pause' => 'Pause',
|
||||
'PhoneBW' => 'Telefon B/W',
|
||||
'Phone' => 'Telefon',
|
||||
'PhoneBW' => 'Telefon B/W',
|
||||
'Pid' => 'PID',
|
||||
'PixelDiff' => 'Pixel Forskel',
|
||||
'Pixels' => 'pixels',
|
||||
'PlayAll' => 'Afspil Alle',
|
||||
'Play' => 'Afspil',
|
||||
'Plugins' => 'Plugins',
|
||||
'PlayAll' => 'Afspil Alle',
|
||||
'PleaseWait' => 'Vent venligst',
|
||||
'Plugins' => 'Plugins',
|
||||
'Point' => 'Point',
|
||||
'PostEventImageBuffer' => 'Antal Billeder Efter Hændelse',
|
||||
'PreEventImageBuffer' => 'Antal Billeder Før Hændelse',
|
||||
|
@ -585,30 +604,33 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>',
|
||||
'Progress' => 'Position',
|
||||
'Protocol' => 'Protokol',
|
||||
'RTSPDescribe' => 'Brug RTSP Response Media URL',
|
||||
'RTSPTransport' => 'RTSP Transport Protocol',
|
||||
'Rate' => 'Rate',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // added Sep 24 2015 - PP
|
||||
'RecordAudio' => 'Skal lydsporet gemmes sammen med en hændelse.',
|
||||
'Real' => 'Naturtro',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // added Sep 24 2015 - PP
|
||||
'Record' => 'Optag',
|
||||
'RecordAudio' => 'Skal lydsporet gemmes sammen med en hændelse.',
|
||||
'RefImageBlendPct' => 'Reference Billede Blandings %',
|
||||
'Refresh' => 'Genindlæs',
|
||||
'Remote' => 'Remote',
|
||||
'RemoteHostName' => 'Remote Host Name',
|
||||
'RemoteHostPath' => 'Remote Host Path',
|
||||
'RemoteHostSubPath' => 'Remote Host SubPath',
|
||||
'RemoteHostPort' => 'Remote Host Port',
|
||||
'RemoteHostSubPath' => 'Remote Host SubPath',
|
||||
'RemoteImageColours' => 'Remote Image Colours',
|
||||
'RemoteMethod' => 'Remote Method',
|
||||
'RemoteProtocol' => 'Remote Protocol',
|
||||
'Remote' => 'Remote',
|
||||
'Rename' => 'Omdøb',
|
||||
'Replay' => 'Genafspil',
|
||||
'ReplayAll' => 'Alle Hændelser',
|
||||
'ReplayGapless' => 'Hændelser uafbrudt',
|
||||
'Replay' => 'Genafspil',
|
||||
'ReplaySingle' => 'Enkelt Hændelse',
|
||||
'ResetEventCounts' => 'Nulstil Hændelses Tæller',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Nulstil',
|
||||
'Restarting' => 'Genstarter',
|
||||
'ResetEventCounts' => 'Nulstil Hændelses Tæller',
|
||||
'Restart' => 'Genstart',
|
||||
'Restarting' => 'Genstarter',
|
||||
'RestrictedCameraIds' => 'Restricted Camera Ids',
|
||||
'RestrictedMonitors' => 'Restricted Monitors',
|
||||
'ReturnDelay' => 'Return Delay',
|
||||
|
@ -616,34 +638,33 @@ $SLANG = array(
|
|||
'Rewind' => 'Hurtigt Tilbage',
|
||||
'RotateLeft' => 'Roter til venstrte',
|
||||
'RotateRight' => 'Roter til højre',
|
||||
'RTSPTransport' => 'RTSP Transport Protocol',
|
||||
'RunLocalUpdate' => 'Kør venligst zmupdate.pl for at opdatere',
|
||||
'RunMode' => 'Driftsmåde',
|
||||
'Running' => 'Kørende',
|
||||
'RunState' => 'Drift Tilstand',
|
||||
'Running' => 'Kørende',
|
||||
'Save' => 'Gem',
|
||||
'SaveAs' => 'Gem som',
|
||||
'SaveFilter' => 'Gem Filter',
|
||||
'SaveJPEGS' => 'Gem JPEGs',
|
||||
'Save' => 'Gem',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Skaler',
|
||||
'Score' => 'Score',
|
||||
'Secs' => 'Sek.',
|
||||
'Sectionlength' => 'Sektions længde',
|
||||
'SelectMonitors' => 'Vælg Monitorer',
|
||||
'Select' => 'Vælg',
|
||||
'SelectFormat' => 'Vælg Format',
|
||||
'SelectLog' => 'Vælg Log',
|
||||
'SelectMonitors' => 'Vælg Monitorer',
|
||||
'SelfIntersecting' => 'Polygonens kanter må ikke krydses',
|
||||
'Set' => 'Sæt',
|
||||
'SetNewBandwidth' => 'Vælg ny båndbredde',
|
||||
'SetPreset' => 'Set Preset',
|
||||
'Set' => 'Sæt',
|
||||
'Settings' => 'Indstillinger',
|
||||
'ShowFilterWindow' => 'Vis Filter Vindue',
|
||||
'ShowTimeline' => 'Vis Tidslinie',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Størrelse',
|
||||
'SkinDescription' => 'SKift standard skin for denne computer',
|
||||
'CSSDescription' => 'SKift standard css for denne computer',
|
||||
'Sleep' => 'Sover',
|
||||
'SortAsc' => 'Voksende',
|
||||
'SortBy' => 'Sortér efter',
|
||||
|
@ -652,46 +673,53 @@ $SLANG = array(
|
|||
'SourceColours' => 'Kilde Farver',
|
||||
'SourcePath' => 'Kilde Sti',
|
||||
'SourceType' => 'Kilde Type',
|
||||
'Speed' => 'Speed',
|
||||
'SpeedHigh' => 'High Speed',
|
||||
'SpeedLow' => 'Low Speed',
|
||||
'SpeedMedium' => 'Medium Speed',
|
||||
'Speed' => 'Speed',
|
||||
'SpeedTurbo' => 'Turbo Speed',
|
||||
'Start' => 'Start',
|
||||
'State' => 'Tilstand',
|
||||
'Stats' => 'Stats',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Skridt',
|
||||
'StepBack' => 'Skridt Tilbage',
|
||||
'StepForward' => 'Skridt Frem',
|
||||
'StepLarge' => 'Langt Skridt',
|
||||
'StepMedium' => 'Medium Skridt',
|
||||
'StepNone' => 'Ingen Skridt',
|
||||
'StepSmall' => 'Lille Skridt',
|
||||
'Step' => 'Skridt',
|
||||
'Stills' => 'Stilbilleder',
|
||||
'Stopped' => 'Stoppet',
|
||||
'Stop' => 'Stop',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Stopped' => 'Stoppet',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Stream',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Påtryk',
|
||||
'System' => 'System',
|
||||
'SystemLog' => 'System Log',
|
||||
'TargetColorspace' => 'Target colorspace',
|
||||
'Tele' => 'Tele',
|
||||
'Thumbnail' => 'Thumbnail',
|
||||
'Tilt' => 'Tilt',
|
||||
'Time' => 'Tidspunkt',
|
||||
'TimeDelta' => 'Tidsforskel',
|
||||
'TimeStamp' => 'Tids stempel',
|
||||
'Timeline' => 'Tidslinie',
|
||||
'TimelineTip1' => 'Før musen over grafen for at vise snapshot billede og detaljer om hændelsen.', // Added 2013.08.15.
|
||||
'TimelineTip2' => 'Klip på de farvede områder af grafen, eller billedet, for at se hændelsen.', // Added 2013.08.15.
|
||||
'TimelineTip3' => 'Klik på baggrunden for at zoome ind på en mindre tidsperiode omkring dit klik.', // Added 2013.08.15.
|
||||
'TimelineTip4' => 'Brug kontrollerne nedenfor for at zoome ud eller navigere frem eller tilbage i tiden.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Tidsstempel',
|
||||
'TimestampLabelFormat' => 'Tidsstempel Mærkat Format',
|
||||
'TimestampLabelSize' => 'Font Størrelse',
|
||||
'TimestampLabelX' => 'Tidsstempel Mærkat X',
|
||||
'TimestampLabelY' => 'Tidsstempel Mærkat Y',
|
||||
'TimestampLabelSize' => 'Font Størrelse',
|
||||
'Timestamp' => 'Tidsstempel',
|
||||
'TimeStamp' => 'Tids stempel',
|
||||
'Time' => 'Tidspunkt',
|
||||
'Today' => 'Idag',
|
||||
'Tools' => 'Værktøjer',
|
||||
'Total' => 'Total',
|
||||
|
@ -706,25 +734,29 @@ $SLANG = array(
|
|||
'Undefined' => 'Udefineret',
|
||||
'Units' => 'Enheder',
|
||||
'Unknown' => 'Ukendt',
|
||||
'Update' => 'Opdater',
|
||||
'UpdateAvailable' => 'En opdatering til ZoneMinder er tilgængelig.',
|
||||
'UpdateNotNecessary' => 'Ingen opdatering er nødvendig.',
|
||||
'Update' => 'Opdater',
|
||||
'Upload' => 'Upload',
|
||||
'Updated' => 'Opdateret',
|
||||
'UsedPlugins' => 'Anvendte Plugins',
|
||||
'Upload' => 'Upload',
|
||||
'UseFilter' => 'Anvend Filter',
|
||||
'UseFilterExprsPost' => ' filter udtryk', // This is used at the end of the phrase 'use N filter expressions'
|
||||
'UseFilterExprsPre' => 'Anvend ', // This is used at the beginning of the phrase 'use N filter expressions'
|
||||
'UseFilter' => 'Anvend Filter',
|
||||
'UsedPlugins' => 'Anvendte Plugins',
|
||||
'User' => 'Bruger',
|
||||
'Username' => 'Brugernavn',
|
||||
'Users' => 'Brugere',
|
||||
'User' => 'Bruger',
|
||||
'V4L' => 'V4L',
|
||||
'V4LCapturesPerFrame' => 'Captures Per Frame',
|
||||
'V4LMultiBuffer' => 'Multi Buffering',
|
||||
'Value' => 'Værdi',
|
||||
'Version' => 'Version',
|
||||
'VersionIgnore' => 'Ignorer denne værdi',
|
||||
'VersionRemindDay' => 'Påmind igen om 1 dag',
|
||||
'VersionRemindHour' => 'Påmind igen om 1 time',
|
||||
'VersionRemindNever' => 'Påmind ikke om nye versioner',
|
||||
'VersionRemindWeek' => 'Påmind igen om 1 uge',
|
||||
'Version' => 'Version',
|
||||
'Video' => 'Video',
|
||||
'VideoFormat' => 'Video Format',
|
||||
'VideoGenFailed' => 'Video Generering Fejlede!',
|
||||
'VideoGenFiles' => 'Existerende Video Filer',
|
||||
|
@ -733,47 +765,44 @@ $SLANG = array(
|
|||
'VideoGenSucceeded' => 'Video Generering Succeeded!',
|
||||
'VideoSize' => 'Video Størrelse',
|
||||
'VideoWriter' => 'Video Skriver',
|
||||
'Video' => 'Video',
|
||||
'View' => 'Vis',
|
||||
'ViewAll' => 'Vis Alle',
|
||||
'ViewEvent' => 'Vis Hændelse',
|
||||
'ViewPaged' => 'Vis Sidevis',
|
||||
'View' => 'Vis',
|
||||
'V4L' => 'V4L',
|
||||
'V4LCapturesPerFrame' => 'Captures Per Frame',
|
||||
'V4LMultiBuffer' => 'Multi Buffering',
|
||||
'Wake' => 'Vågen',
|
||||
'WarmupFrames' => 'Opvarmningsbilleder',
|
||||
'Watch' => 'Ur',
|
||||
'WebColour' => 'Web Farve',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Web Farve',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Uge',
|
||||
'WhiteBalance' => 'Hvidbalance',
|
||||
'White' => 'Hvid',
|
||||
'WhiteBalance' => 'Hvidbalance',
|
||||
'Wide' => 'Bred',
|
||||
'X' => 'X',
|
||||
'X10' => 'X10',
|
||||
'X10ActivationString' => 'X10 Activerings Streng',
|
||||
'X10InputAlarmString' => 'X10 Input Alarm Streng',
|
||||
'X10OutputAlarmString' => 'X10 Output Alarm Streng',
|
||||
'X10' => 'X10',
|
||||
'X' => 'X',
|
||||
'Y' => 'Y',
|
||||
'Yes' => 'Ja',
|
||||
'YouNoPerms' => 'Du har ikke tilladelse til at tilgå denne ressurse.',
|
||||
'Y' => 'Y',
|
||||
'Zone' => 'Zone',
|
||||
'ZoneAlarmColour' => 'Alarm Farve (Rød/Grøn/Blå)',
|
||||
'ZoneArea' => 'Zone Område',
|
||||
'ZoneExtendAlarmFrames' => 'Udvid Antal Alarm Rammer',
|
||||
'ZoneFilterSize' => 'Filter Bredde/Højde (pixels)',
|
||||
'ZoneMinderLog' => 'ZoneMinder Log',
|
||||
'ZoneMinMaxAlarmArea' => 'Min/Max Alarmeret Område',
|
||||
'ZoneMinMaxBlobArea' => 'Min/Max Blob Område',
|
||||
'ZoneMinMaxBlobs' => 'Min/Max Blobs',
|
||||
'ZoneMinMaxFiltArea' => 'Min/Max Filtreret Område',
|
||||
'ZoneMinMaxPixelThres' => 'Min/Max Pixel Grænseværdi (0-255)',
|
||||
'ZoneMinderLog' => 'ZoneMinder Log',
|
||||
'ZoneOverloadFrames' => 'Antal Rammer At Ignorere Efter Overload',
|
||||
'ZoneExtendAlarmFrames' => 'Udvid Antal Alarm Rammer',
|
||||
'Zones' => 'Zoner',
|
||||
'Zone' => 'Zone',
|
||||
'Zoom' => 'Zoom',
|
||||
'ZoomIn' => 'Zoom Ind',
|
||||
'ZoomOut' => 'Zoom Ud',
|
||||
'Zoom' => 'Zoom',
|
||||
);
|
||||
|
||||
// Complex replacements with formatting and/or placements, must be passed through sprintf
|
||||
|
|
|
@ -651,10 +651,13 @@ $SLANG = array(
|
|||
'RotateLeft' => 'Rotate Left',
|
||||
'RotateRight' => 'Rotate Right',
|
||||
'RTSPTransport' => 'RTSP Transport Protocol',
|
||||
'RunAudit' => 'Run Audit Process',
|
||||
'RunLocalUpdate' => 'Please run zmupdate.pl to update',
|
||||
'RunMode' => 'Run Mode',
|
||||
'Running' => 'Running',
|
||||
'RunState' => 'Run State',
|
||||
'RunStats' => 'Run Stats Process',
|
||||
'RunTrigger' => 'Run Trigger Process',
|
||||
'SaveAs' => 'Save as',
|
||||
'SaveFilter' => 'Save Filter',
|
||||
'SaveJPEGs' => 'Save JPEGs',
|
||||
|
@ -711,6 +714,7 @@ $SLANG = array(
|
|||
'Stopped' => 'Stopped',
|
||||
'Stop' => 'Stop',
|
||||
'StorageArea' => 'Storage Area',
|
||||
'StorageDoDelete' => 'Do Deletes',
|
||||
'StorageScheme' => 'Scheme',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Stream' => 'Stream',
|
||||
|
|
|
@ -29,6 +29,8 @@ $SLANG = array(
|
|||
'Actual' => 'Actual',
|
||||
'AddNewControl' => 'Add New Control',
|
||||
'AddNewMonitor' => 'Agregar Nuevo Monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Agregar Nuevo Usuario',
|
||||
'AddNewZone' => 'Agregar Nueva Zona',
|
||||
'Alarm' => 'Alarma',
|
||||
|
@ -56,22 +58,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Estado Archivo',
|
||||
'AttrAvgScore' => 'Puntaje Prom.',
|
||||
'AttrCause' => 'Cause',
|
||||
'AttrDate' => 'Fecha',
|
||||
'AttrDateTime' => 'Fecha/Hora',
|
||||
'AttrDiskBlocks' => 'Disk Blocks',
|
||||
'AttrDiskPercent' => 'Disk Percent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Duración',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Cuadros',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Puntaje Máximo',
|
||||
'AttrMonitorId' => 'Monitor Id',
|
||||
'AttrMonitorName' => 'Nombre Monitor',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Name',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'Hora',
|
||||
'AttrTotalScore' => 'Puntaje Total',
|
||||
'AttrWeekday' => 'Día Semana',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -104,9 +116,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -170,10 +184,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Cerrar',
|
||||
'Colour' => 'Color',
|
||||
'Command' => 'Command',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config.',
|
||||
'ConfiguredFor' => 'Configurado Para',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -231,9 +247,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Not yet, remind again in 1 week',
|
||||
'DonateYes' => 'Yes, I\'d like to donate now',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Duración',
|
||||
'Edit' => 'Editar',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Enable Alarms',
|
||||
'Enabled' => 'Habilitado',
|
||||
|
@ -250,6 +268,7 @@ $SLANG = array(
|
|||
'Events' => 'Eventos',
|
||||
'Exclude' => 'Excluir',
|
||||
'Execute' => 'Execute',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Export',
|
||||
'ExportDetails' => 'Export Event Details',
|
||||
'ExportFailed' => 'Export Failed',
|
||||
|
@ -279,8 +298,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Ejecutar un comando en las coincidencias',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Mandar un mensaje de los eventos',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filtro Px',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Subir los eventos que coincidan',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Filters',
|
||||
|
@ -305,6 +326,7 @@ $SLANG = array(
|
|||
'Function' => 'Función',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Crear Video',
|
||||
'GeneratingVideo' => 'Creando Video',
|
||||
'GoToZoneMinder' => 'Ir a Zoneminder.com',
|
||||
|
@ -325,6 +347,7 @@ $SLANG = array(
|
|||
'High' => 'Alta',
|
||||
'HighBW' => 'Alta B/W',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Hora',
|
||||
'Hue' => 'Saturación',
|
||||
'Id' => 'Id',
|
||||
|
@ -349,6 +372,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Linked Monitors',
|
||||
'List' => 'List',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Carga',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -435,6 +459,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Monitores',
|
||||
'Montage' => 'Cámara Múltiple',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Mes',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -461,6 +486,7 @@ $SLANG = array(
|
|||
'Next' => 'Siguiente',
|
||||
'No' => 'No',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'No hay movimientos grabados para este evento',
|
||||
'NoGroup' => 'No Group',
|
||||
'NoSavedFilters' => 'FiltrosNoGuardados',
|
||||
|
@ -479,6 +505,8 @@ $SLANG = array(
|
|||
'OpGt' => 'mayor que',
|
||||
'OpGtEq' => 'mayor o igual que',
|
||||
'OpIn' => 'En sistema',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'menor que',
|
||||
'OpLtEq' => 'menor o igual que',
|
||||
'OpMatches' => 'Coincide',
|
||||
|
@ -488,6 +516,7 @@ $SLANG = array(
|
|||
'Open' => 'Open',
|
||||
'OptionHelp' => 'Ayuda',
|
||||
'OptionRestartWarning' => 'Estos cambios no se guardaran completamente\nmientras el sistema se ejecute. Cuando termine\nde realizar los cambios asegurese de\nreiniciar Zoneminder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opciones',
|
||||
'OrEnterNewName' => 'o agregue nombre',
|
||||
'Order' => 'Order',
|
||||
|
@ -525,9 +554,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Ritmo',
|
||||
'Real' => 'Real',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Registro',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Reference Image Blend %ge',
|
||||
'Refresh' => 'Actualizar',
|
||||
'Remote' => 'Remote',
|
||||
|
@ -543,6 +576,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Borrar Contador Eventos',
|
||||
'Restart' => 'Reiniciar',
|
||||
|
@ -561,6 +595,7 @@ $SLANG = array(
|
|||
'Save' => 'Guardar',
|
||||
'SaveAs' => 'Guardar Como',
|
||||
'SaveFilter' => 'Guardar Filtro',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Escala',
|
||||
'Score' => 'Res.',
|
||||
'Secs' => 'Seg',
|
||||
|
@ -577,6 +612,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Abrir Filtro',
|
||||
'ShowTimeline' => 'Show Timeline',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Size',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -596,6 +632,10 @@ $SLANG = array(
|
|||
'State' => 'Estado',
|
||||
'Stats' => 'Est.',
|
||||
'Status' => 'Estado',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Step',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -606,6 +646,8 @@ $SLANG = array(
|
|||
'Stills' => 'Fotos',
|
||||
'Stop' => 'Desactivar',
|
||||
'Stopped' => 'Apagado',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Stream',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Submit',
|
||||
|
@ -625,6 +667,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Eje X Etiqueta Hora',
|
||||
'TimestampLabelY' => 'Eje Y Etiqueta Hora',
|
||||
'Today' => 'Today',
|
||||
|
@ -671,6 +714,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parametros Generacion Video',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!',
|
||||
'VideoSize' => 'Tamaño Video',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Ver',
|
||||
'ViewAll' => 'Ver Todo',
|
||||
'ViewEvent' => 'View Event',
|
||||
|
@ -680,6 +724,7 @@ $SLANG = array(
|
|||
'Watch' => 'Monitor',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Web Colour',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Semana',
|
||||
'White' => 'White',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
|
|
@ -78,6 +78,8 @@ $SLANG = array(
|
|||
'Actual' => 'Actual',
|
||||
'AddNewControl' => 'Añadir nuevo control',
|
||||
'AddNewMonitor' => 'Añadir nuevo monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Añadir nuevo usuario',
|
||||
'AddNewZone' => 'Añadir nueva zona',
|
||||
'Alarm' => 'Alarma',
|
||||
|
@ -105,22 +107,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Estado de archivo',
|
||||
'AttrAvgScore' => 'Promed. señal',
|
||||
'AttrCause' => 'Causa',
|
||||
'AttrDate' => 'Fecha',
|
||||
'AttrDateTime' => 'Fecha/Hora',
|
||||
'AttrDiskBlocks' => 'Bloques del disco',
|
||||
'AttrDiskPercent' => 'Porcentaje del disco',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Duración',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Marcos',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Señal máxima',
|
||||
'AttrMonitorId' => 'Id monitor',
|
||||
'AttrMonitorName' => 'Nombre del monitor',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nombre',
|
||||
'AttrNotes' => 'Notas',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Carga del sistema',
|
||||
'AttrTime' => 'Hora',
|
||||
'AttrTotalScore' => 'Señal total',
|
||||
'AttrWeekday' => 'Día de la semana',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Autodetener tiempo de espera',
|
||||
'Available' => 'Disponible',
|
||||
|
@ -153,9 +165,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'El porcentaje de la referencia de mezcla debe ser un entero positivo',
|
||||
'BadSectionLength' => 'La duración de la sección debe ser un entero de 30 o más',
|
||||
'BadSignalCheckColour' => 'El color de verificación de señal debe ser una cadena de color RGB válida',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer' => 'La secuencia de búfer de reproducción debe ser un entero de cero o más',
|
||||
'BadWarmupCount' => 'Los marcos de calentamiento deben ser un entero de cero o más',
|
||||
'BadWebColour' => 'El color web debe ser una cadena de color web válida',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -219,10 +233,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Elegir selección de registro',
|
||||
'ChoosePreset' => 'Elegir preprogramación',
|
||||
'Clear' => 'Limpiar',
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Cerrar',
|
||||
'Colour' => 'Color',
|
||||
'Command' => 'Comando',
|
||||
'Component' => 'Componente',
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => 'Configurado para',
|
||||
'ConfirmDeleteEvents' => '¿Seguro que desea borrar los eventos seleccionados?',
|
||||
|
@ -280,9 +296,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Aún no, recordarme de nuevo en 1 semana',
|
||||
'DonateYes' => 'Sí, me gustaría hacer una donación ahora',
|
||||
'Download' => 'Descargar',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicar nombre de monitor',
|
||||
'Duration' => 'Duración',
|
||||
'Edit' => 'Editar',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Habilitar alarmas',
|
||||
'Enabled' => 'Habilitado',
|
||||
|
@ -299,6 +317,7 @@ $SLANG = array(
|
|||
'Events' => 'Eventos',
|
||||
'Exclude' => 'Excluir',
|
||||
'Execute' => 'Ejecutar',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exportar',
|
||||
'ExportDetails' => 'Exportar detalles de evento',
|
||||
'ExportFailed' => 'Fallo al exportar',
|
||||
|
@ -328,8 +347,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Ejecutar comando para todas las coincidencias',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Detalles de mensaje de todas las coincidencias',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filtrar Px',
|
||||
'FilterUnset' => 'Debe especificar un ancho y un alto para el filtro',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Subir todas las coincidencias',
|
||||
'FilterVideoEvents' => 'Create video for all matches', // Added - 2011-08-23
|
||||
'Filters' => 'Filtros',
|
||||
|
@ -354,6 +375,7 @@ $SLANG = array(
|
|||
'Function' => 'Función',
|
||||
'Gain' => 'Ganancia',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Generate Video', // Added - 2011-08-23
|
||||
'GeneratingVideo' => 'Generating Video', // Added - 2011-08-23
|
||||
'GoToZoneMinder' => 'Ir a ZoneMinder.com',
|
||||
|
@ -374,6 +396,7 @@ $SLANG = array(
|
|||
'High' => 'Alto',
|
||||
'HighBW' => 'Alto B/B',
|
||||
'Home' => 'Inicio',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Hora',
|
||||
'Hue' => 'Matiz',
|
||||
'Id' => 'Id',
|
||||
|
@ -398,6 +421,7 @@ $SLANG = array(
|
|||
'Line' => 'Línea',
|
||||
'LinkedMonitors' => 'Monitores enlazados',
|
||||
'List' => 'Lista',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Carga',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Registro',
|
||||
|
@ -484,6 +508,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'La lista de debajo muestra las cámaras analógicas y en red detectadas y si ya están siendo usadas o están disponibles para seleccionar.<br/><br/>Seleccione la entrada deseada de la lista de debajo.<br/><br/>Por favor tenga en cuenta que podrían no detectarse todas las cámaras y que elegir una cámara aquí podría sobrescribir cualquier valor que ya hubiera configurado para el monitor actual.<br/><br/>',
|
||||
'Monitors' => 'Monitores',
|
||||
'Montage' => 'Montaje',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Mes',
|
||||
'More' => 'Más',
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -510,6 +535,7 @@ $SLANG = array(
|
|||
'Next' => 'Siguiente',
|
||||
'No' => 'No',
|
||||
'NoDetectedCameras' => 'No se detectaron cámaras',
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'No hay marcos grabados para este evento',
|
||||
'NoGroup' => 'Sin grupo',
|
||||
'NoSavedFilters' => 'No hay filtros guardados',
|
||||
|
@ -528,6 +554,8 @@ $SLANG = array(
|
|||
'OpGt' => 'mayor que',
|
||||
'OpGtEq' => 'mayor que o igual a',
|
||||
'OpIn' => 'en conjunto',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'menor que',
|
||||
'OpLtEq' => 'menor que o igual a',
|
||||
'OpMatches' => 'coincidencias',
|
||||
|
@ -537,6 +565,7 @@ $SLANG = array(
|
|||
'Open' => 'Abrir',
|
||||
'OptionHelp' => 'Ayuda de la opción',
|
||||
'OptionRestartWarning' => 'Estos cambios podrían no surtir un efecto completo mientras el sistema esté ejecutándose. Cuando haya terminado haciendo cambios por favor asegúrese de reiniciar ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opciones',
|
||||
'OrEnterNewName' => 'o introduzca un nuevo nombre',
|
||||
'Order' => 'Orden',
|
||||
|
@ -574,9 +603,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocolo',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Valorar',
|
||||
'Real' => 'Real',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Grabar',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Referencia de mezcla de imagen %ge',
|
||||
'Refresh' => 'Refrescar',
|
||||
'Remote' => 'Remoto',
|
||||
|
@ -592,6 +625,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Todos los eventos',
|
||||
'ReplayGapless' => 'Eventos sin espacios',
|
||||
'ReplaySingle' => 'Evento individual',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Restablecer',
|
||||
'ResetEventCounts' => 'Restablecer número de eventos',
|
||||
'Restart' => 'Reiniciar',
|
||||
|
@ -610,6 +644,7 @@ $SLANG = array(
|
|||
'Save' => 'Guardar',
|
||||
'SaveAs' => 'Guardar cómo',
|
||||
'SaveFilter' => 'Guardar filtro',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Escalar',
|
||||
'Score' => 'Cuenta',
|
||||
'Secs' => 'Segs',
|
||||
|
@ -626,6 +661,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Mostrar ventana de filtros',
|
||||
'ShowTimeline' => 'Mostrar línea de tiempo',
|
||||
'SignalCheckColour' => 'Color de comprobación de señal',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Tamaño',
|
||||
'SkinDescription' => 'Cambiar el tema por defecto para este ordenador',
|
||||
'Sleep' => 'Dormir',
|
||||
|
@ -645,6 +681,10 @@ $SLANG = array(
|
|||
'State' => 'Estado',
|
||||
'Stats' => 'Estadísticas',
|
||||
'Status' => 'Estado',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Salto',
|
||||
'StepBack' => 'Salto atrás',
|
||||
'StepForward' => 'Salto adelante',
|
||||
|
@ -655,6 +695,8 @@ $SLANG = array(
|
|||
'Stills' => 'Fijas',
|
||||
'Stop' => 'Detener',
|
||||
'Stopped' => 'Detenido',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Corriente',
|
||||
'StreamReplayBuffer' => 'Secuencia de búfer de reproducción',
|
||||
'Submit' => 'Enviar',
|
||||
|
@ -674,9 +716,9 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Tamaño de fuente',
|
||||
'TimestampLabelX' => 'Etiqueta de tiempo X',
|
||||
'TimestampLabelY' => 'Etiqueta de tiempo Y',
|
||||
'TimestampLabelSize' => 'Tamaño de fuente',
|
||||
'Today' => 'Hoy',
|
||||
'Tools' => 'Herramientas',
|
||||
'Total' => 'Total',
|
||||
|
@ -721,6 +763,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Video Generation Parameters', // Added - 2011-08-23
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!', // Added - 2011-08-23
|
||||
'VideoSize' => 'Video Size', // Added - 2011-08-23
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Ver',
|
||||
'ViewAll' => 'Ver todos',
|
||||
'ViewEvent' => 'Ver evento',
|
||||
|
@ -730,6 +773,7 @@ $SLANG = array(
|
|||
'Watch' => 'Observar',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Color web',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Semana',
|
||||
'White' => 'Blanco',
|
||||
'WhiteBalance' => 'Balance de blancos',
|
||||
|
|
|
@ -85,6 +85,8 @@ $SLANG = array(
|
|||
'Actual' => 'Aktuaalne',
|
||||
'AddNewControl' => 'Lisa uus Kontroll',
|
||||
'AddNewMonitor' => 'Lisa uus Monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Lisa uus Kasutaja',
|
||||
'AddNewZone' => 'Lisa uus Tsoon',
|
||||
'Alarm' => 'Alarm',
|
||||
|
@ -112,22 +114,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Arhiivi Staatus',
|
||||
'AttrAvgScore' => 'Keskm. Skoor',
|
||||
'AttrCause' => 'Põhjus',
|
||||
'AttrDate' => 'Kp.',
|
||||
'AttrDateTime' => 'Kp/Kellaaeg',
|
||||
'AttrDiskBlocks' => 'Ketta Blokk',
|
||||
'AttrDiskPercent' => 'Ketta Protsent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Kestvus',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Kaadrid',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Maks. Skoor',
|
||||
'AttrMonitorId' => 'Monitori Id',
|
||||
'AttrMonitorName' => 'Monitori Nimi',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nimi',
|
||||
'AttrNotes' => 'Märkmed',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Süsteemi Koormus',
|
||||
'AttrTime' => 'Kellaaeg',
|
||||
'AttrTotalScore' => 'Skoor Kokku',
|
||||
'AttrWeekday' => 'Tööpäevad',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Ajalimiit',
|
||||
'Available' => 'Saadaval',
|
||||
|
@ -160,9 +172,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer' => 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Ribalaius',
|
||||
'BandwidthHead' => 'Ribalaius', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
|
@ -226,10 +240,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Sule',
|
||||
'Colour' => 'Värv',
|
||||
'Command' => 'Käsk',
|
||||
'Component' => 'Komponent', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Seadistus',
|
||||
'ConfiguredFor' => 'Seadistatud',
|
||||
'ConfirmDeleteEvents' => 'Oled sa kindel kustamaks valitud sündmused?',
|
||||
|
@ -287,9 +303,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'EI veel, tuleta meelde nädala pärast',
|
||||
'DonateYes' => 'Jah, Ma soovin annetada',
|
||||
'Download' => 'Lae alla',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Dubleeri Monitori Nimi',
|
||||
'Duration' => 'Kestvus',
|
||||
'Edit' => 'Muuda',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Luba Alarmid',
|
||||
'Enabled' => 'Lubatud',
|
||||
|
@ -306,6 +324,7 @@ $SLANG = array(
|
|||
'Events' => 'Sündmuseid',
|
||||
'Exclude' => 'Jäta välja',
|
||||
'Execute' => 'Käivita',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Eksport',
|
||||
'ExportDetails' => 'Ekspordi Sündmuste Detailid',
|
||||
'ExportFailed' => 'Eksportimine Ebaõnnestus',
|
||||
|
@ -335,8 +354,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Execute command on all matches',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Message details of all matches',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter Px',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Upload all matches',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Filtrid',
|
||||
|
@ -361,6 +382,7 @@ $SLANG = array(
|
|||
'Function' => 'Funktsioon',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'Peamine',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Genereeri Video',
|
||||
'GeneratingVideo' => 'Genereerin Videot',
|
||||
'GoToZoneMinder' => 'Mine ZoneMinder.com',
|
||||
|
@ -381,6 +403,7 @@ $SLANG = array(
|
|||
'High' => 'Suurim',
|
||||
'HighBW' => 'High B/W',
|
||||
'Home' => 'Koju',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Tunnis',
|
||||
'Hue' => 'Hue',
|
||||
'Id' => 'Id',
|
||||
|
@ -405,6 +428,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Lingitud monitorid',
|
||||
'List' => 'List',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Koormus',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Logi', // Added - 2011-06-16
|
||||
|
@ -491,6 +515,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>',
|
||||
'Monitors' => 'Monitors',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Kuus',
|
||||
'More' => 'Veel', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -517,6 +542,7 @@ $SLANG = array(
|
|||
'Next' => 'Järgmine',
|
||||
'No' => 'Ei',
|
||||
'NoDetectedCameras' => 'Ei leidnud kaameraid',
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Ei ole kaadreid salvetatud selles sündmuses',
|
||||
'NoGroup' => 'Ei krupp',
|
||||
'NoSavedFilters' => 'EiSalvestatudFiltreid',
|
||||
|
@ -535,6 +561,8 @@ $SLANG = array(
|
|||
'OpGt' => 'Suurem kui',
|
||||
'OpGtEq' => 'suurem kui või võrdne',
|
||||
'OpIn' => 'in set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'vähem kui',
|
||||
'OpLtEq' => 'vähem kui või võrdne',
|
||||
'OpMatches' => 'klapib',
|
||||
|
@ -544,6 +572,7 @@ $SLANG = array(
|
|||
'Open' => 'Ava',
|
||||
'OptionHelp' => 'Valik Aita',
|
||||
'OptionRestartWarning' => '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.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Seaded',
|
||||
'OrEnterNewName' => 'või sisesta uus nimi',
|
||||
'Order' => 'Järjekord',
|
||||
|
@ -581,9 +610,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Rate',
|
||||
'Real' => 'Reaaalne',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Salvesta',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Reference Image Blend %ge',
|
||||
'Refresh' => 'Värskenda',
|
||||
'Remote' => 'Remote',
|
||||
|
@ -599,6 +632,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Kõik sündmused',
|
||||
'ReplayGapless' => 'Lünkadeta sündmused',
|
||||
'ReplaySingle' => 'Üksik sündmus',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Reset Event Counts',
|
||||
'Restart' => 'Taaskäivita',
|
||||
|
@ -617,6 +651,7 @@ $SLANG = array(
|
|||
'Save' => 'Salvesta',
|
||||
'SaveAs' => 'Salvesta kui',
|
||||
'SaveFilter' => 'Salvesta Filter',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Skaala',
|
||||
'Score' => 'Skoor',
|
||||
'Secs' => 'Secs',
|
||||
|
@ -633,6 +668,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Näita Filtri Akent',
|
||||
'ShowTimeline' => 'Näita Timeline',
|
||||
'SignalCheckColour' => 'Signaali Kontroll Värv',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Suurus',
|
||||
'SkinDescription' => 'Vaheta veebilehe välimus selles arvutis', // Added - 2011-03-02
|
||||
'Sleep' => 'Maga',
|
||||
|
@ -652,6 +688,10 @@ $SLANG = array(
|
|||
'State' => 'Olek',
|
||||
'Stats' => 'Statistika',
|
||||
'Status' => 'Staatus',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Samm',
|
||||
'StepBack' => 'Samm tagasi',
|
||||
'StepForward' => 'Samm edasi',
|
||||
|
@ -662,6 +702,8 @@ $SLANG = array(
|
|||
'Stills' => 'Stills',
|
||||
'Stop' => 'Stop',
|
||||
'Stopped' => 'Stopitud',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Striim',
|
||||
'StreamReplayBuffer' => 'Striimi Replay Pildi Puhver',
|
||||
'Submit' => 'Submit',
|
||||
|
@ -681,6 +723,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Timestamp Label X',
|
||||
'TimestampLabelY' => 'Timestamp Label Y',
|
||||
'Today' => 'Täna',
|
||||
|
@ -727,6 +770,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Video Genereerimise Parameetrid',
|
||||
'VideoGenSucceeded' => 'Video Genereerimine Õnnestus!!!',
|
||||
'VideoSize' => 'Video Suurus',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Vaata',
|
||||
'ViewAll' => 'View All',
|
||||
'ViewEvent' => 'Vaata Sündmust',
|
||||
|
@ -736,6 +780,7 @@ $SLANG = array(
|
|||
'Watch' => 'Vaata',
|
||||
'Web' => 'Veeb',
|
||||
'WebColour' => 'Veebi värv',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Nädalas',
|
||||
'White' => 'White',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
|
|
@ -84,6 +84,8 @@ $SLANG = array(
|
|||
'Actual' => 'Réel',
|
||||
'AddNewControl' => 'Ajouter contrôle',
|
||||
'AddNewMonitor' => 'Ajouter caméra',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Ajouter utilisateur',
|
||||
'AddNewZone' => 'Ajouter zone',
|
||||
'Alarm' => 'Alarme',
|
||||
|
@ -111,22 +113,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Etat Archive',
|
||||
'AttrAvgScore' => 'Score moy.',
|
||||
'AttrCause' => 'Cause',
|
||||
'AttrDate' => 'Date',
|
||||
'AttrDateTime' => 'Date/Heure',
|
||||
'AttrDiskBlocks' => 'Blocs disque',
|
||||
'AttrDiskPercent' => '% disque',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Durée',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Images',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Score max.',
|
||||
'AttrMonitorId' => 'N°',
|
||||
'AttrMonitorName' => 'Nom caméra',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nom',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Charge système',
|
||||
'AttrTime' => 'Heure',
|
||||
'AttrTotalScore' => 'Score total',
|
||||
'AttrWeekday' => 'Semaine',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Temporisation arrêt',
|
||||
'Available' => 'Disponibles', // Added - 2009-03-31
|
||||
|
@ -159,9 +171,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Le pourcentage de fusion de l\'image de référence doit être un entier supérieur à 0 et inférieur à 100',
|
||||
'BadSectionLength' => 'La longueur de la section doit être un entier supérieur ou égal à 30',
|
||||
'BadSignalCheckColour' => 'La chaîne de caractères pour la couleur d\'état du signal est invalide',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Le tampon d\'images pour la relecture doit être un entier supérieur ou égal à 0',
|
||||
'BadWarmupCount' => 'Le nombre d\'images tests doit être un entier supérieur ou égal à 0',
|
||||
'BadWebColour' => 'La chaîne de caractères pour la couleur web est invalide',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'La valeur de la largeur est invalide',
|
||||
'Bandwidth' => 'Débit',
|
||||
'BandwidthHead' => 'Débit', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
|
@ -225,10 +239,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choisir une sélection de journaux', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choisir préréglage',
|
||||
'Clear' => 'Effacer', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Fermer',
|
||||
'Colour' => 'Couleur',
|
||||
'Command' => 'Commande',
|
||||
'Component' => 'Composant', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => 'Configuré pour',
|
||||
'ConfirmDeleteEvents' => 'Etes-vous sûr de vouloir effacer le(s) événement(s) sélectionné(s)?',
|
||||
|
@ -286,9 +302,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Pas encore, me rappeler dans 1 semaine',
|
||||
'DonateYes' => 'Oui, je souhaiterais faire un don maintenant',
|
||||
'Download' => 'Télécharger',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Dupliquer le nom de la caméra', // Added - 2009-03-31
|
||||
'Duration' => 'Durée',
|
||||
'Edit' => 'Editer',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Activer les alarmes',
|
||||
'Enabled' => 'Activé',
|
||||
|
@ -305,6 +323,7 @@ $SLANG = array(
|
|||
'Events' => 'Evénements',
|
||||
'Exclude' => 'Exclure',
|
||||
'Execute' => 'Exécuter',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exporter',
|
||||
'ExportDetails' => 'Exporter détails événements',
|
||||
'ExportFailed' => 'Exportation échouée',
|
||||
|
@ -334,8 +353,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Exécuter une commande',
|
||||
'FilterLog' => 'Filtre', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Envoyer les détails par message',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filtre Px',
|
||||
'FilterUnset' => 'Vous devez spécifier une largeur et une hauteur de filtre',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Transférer',
|
||||
'FilterVideoEvents' => 'Créer vidéo',
|
||||
'Filters' => 'Filtres',
|
||||
|
@ -360,6 +381,7 @@ $SLANG = array(
|
|||
'Function' => 'Mode',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'Général',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Générer vidéo',
|
||||
'GeneratingVideo' => 'Génération vidéo',
|
||||
'GoToZoneMinder' => 'Aller sur ZoneMinder.com',
|
||||
|
@ -380,6 +402,7 @@ $SLANG = array(
|
|||
'High' => 'Haut',
|
||||
'HighBW' => 'Haut débit',
|
||||
'Home' => 'Maison',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Heure',
|
||||
'Hue' => 'Teinte',
|
||||
'Id' => 'N°',
|
||||
|
@ -404,6 +427,7 @@ $SLANG = array(
|
|||
'Line' => 'Ligne', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Caméra(s) liée(s)',
|
||||
'List' => 'Liste',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Charge',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Journal', // Added - 2011-06-16
|
||||
|
@ -490,6 +514,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'La liste ci-dessous montre les caméras détectées localement ou sur le réseau, qu\'elles soient déjà configurées ou non.<br/><br/>Sélectionnez la caméra désirée dans la liste.<br/><br/>Veuillez noter que toutes les caméras ne sont pas forcément détectées et que la sauvegarde entraînera l\'écrasement des paramètres déjà configurés pour la caméra en cours.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Caméras',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Mois',
|
||||
'More' => 'Plus', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Saut image en alarme',
|
||||
|
@ -516,6 +541,7 @@ $SLANG = array(
|
|||
'Next' => 'Suivant',
|
||||
'No' => 'Non',
|
||||
'NoDetectedCameras' => 'Pas de caméras détectées', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Pas d\'images enregistrées pour cet événement',
|
||||
'NoGroup' => 'Pas de groupe',
|
||||
'NoSavedFilters' => 'Pas de filtres sauvegardés',
|
||||
|
@ -534,6 +560,8 @@ $SLANG = array(
|
|||
'OpGt' => 'sup. à',
|
||||
'OpGtEq' => 'plus grand ou égal à',
|
||||
'OpIn' => 'en lot',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'inf. à',
|
||||
'OpLtEq' => 'inf. ou égal à',
|
||||
'OpMatches' => 'correspond',
|
||||
|
@ -543,6 +571,7 @@ $SLANG = array(
|
|||
'Open' => 'Ouvrir',
|
||||
'OptionHelp' => 'Aide',
|
||||
'OptionRestartWarning' => 'Ces changements peuvent nécessiter un redémarrage de ZoneMinder pour être pleinement opérationnels.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Options',
|
||||
'OrEnterNewName' => 'ou entrez nouv. nom',
|
||||
'Order' => 'Ordre',
|
||||
|
@ -580,9 +609,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'La liste ci-dessous montre les profils de flux existants pour la caméra sélectionnée.<br/><br/>Sélectionnez le profil désiré dans la liste ci-dessous.<br/><br/>Veuillez noter que ZoneMinder ne peut pas configurer de profils additionels et que la sauvegarde entraînera l\'écrasement des paramètres déjà configurés pour la caméra en cours.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progression', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocole',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Vitesse',
|
||||
'Real' => 'Réel',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Enregistrer',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => '% fusion image référence',
|
||||
'Refresh' => 'Rafraîchir',
|
||||
'Remote' => 'Distant',
|
||||
|
@ -598,6 +631,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Tous les événements',
|
||||
'ReplayGapless' => 'Rejouer sans blancs',
|
||||
'ReplaySingle' => 'Rejouer seul',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'RàZ',
|
||||
'ResetEventCounts' => 'RàZ compteur évts',
|
||||
'Restart' => 'Redémarrer',
|
||||
|
@ -616,6 +650,7 @@ $SLANG = array(
|
|||
'Save' => 'Sauvegarder',
|
||||
'SaveAs' => 'Sauvegarder sous',
|
||||
'SaveFilter' => 'Sauvegarder filtre',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Echelle',
|
||||
'Score' => 'Score',
|
||||
'Secs' => 'Secs',
|
||||
|
@ -632,6 +667,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Filtres',
|
||||
'ShowTimeline' => 'Afficher chronologie',
|
||||
'SignalCheckColour' => 'Couleur vérif. signal',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Taille',
|
||||
'SkinDescription' => 'Remplacer le skin par défaut', // Added - 2011-01-30
|
||||
'Sleep' => 'Veille',
|
||||
|
@ -651,6 +687,10 @@ $SLANG = array(
|
|||
'State' => 'Etat',
|
||||
'Stats' => 'Stats',
|
||||
'Status' => 'Statut',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Pas',
|
||||
'StepBack' => 'Reculer',
|
||||
'StepForward' => 'Avancer',
|
||||
|
@ -661,6 +701,8 @@ $SLANG = array(
|
|||
'Stills' => 'Photos',
|
||||
'Stop' => 'Arrêter',
|
||||
'Stopped' => 'Arrêté',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Flux',
|
||||
'StreamReplayBuffer' => 'Nb d\'image(s) pour relecture',
|
||||
'Submit' => 'Soumettre',
|
||||
|
@ -680,9 +722,9 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Utilisez les contrôles ci-dessous pour faire un zoom arrière ou naviguer en arrière et avancer sur l\'intervalle de temps.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Horodatage',
|
||||
'TimestampLabelFormat' => 'Format',
|
||||
'TimestampLabelSize' => 'Taille de police',
|
||||
'TimestampLabelX' => 'Coordonnée X',
|
||||
'TimestampLabelY' => 'Coordonnée Y',
|
||||
'TimestampLabelSize' => 'Taille de police',
|
||||
'Today' => 'Aujourd\'hui',
|
||||
'Tools' => 'Outils',
|
||||
'Total' => 'Total', // Added - 2011-06-16
|
||||
|
@ -727,6 +769,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Paramètres génération vidéo',
|
||||
'VideoGenSucceeded' => 'Vidéo générée avec succès !',
|
||||
'VideoSize' => 'Taille vidéo',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Voir',
|
||||
'ViewAll' => 'Tout voir',
|
||||
'ViewEvent' => 'Voir événement',
|
||||
|
@ -736,6 +779,7 @@ $SLANG = array(
|
|||
'Watch' => 'Regarder',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Couleur web',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Semaine',
|
||||
'White' => 'Blanc',
|
||||
'WhiteBalance' => 'Balance des blancs',
|
||||
|
|
|
@ -78,6 +78,8 @@ $SLANG = array(
|
|||
'Actual' => 'î÷åøé',
|
||||
'AddNewControl' => 'äåñó ÷åðèøåì çãù',
|
||||
'AddNewMonitor' => 'äåñó îåðéèåø çãù',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'äåñó îùúîù çãù',
|
||||
'AddNewZone' => 'äåñó àéæåø çãù',
|
||||
'Alarm' => 'àæò÷ä',
|
||||
|
@ -105,22 +107,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Archive Status',
|
||||
'AttrAvgScore' => 'ðé÷åã îîåöò',
|
||||
'AttrCause' => 'ñéáä',
|
||||
'AttrDate' => 'úàøéê',
|
||||
'AttrDateTime' => 'úàøéê/ùòä',
|
||||
'AttrDiskBlocks' => 'Disk Blocks',
|
||||
'AttrDiskPercent' => 'Disk Percent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'îùê æîï',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'ôøééîéí',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'ðé÷åã î÷ñéîìé',
|
||||
'AttrMonitorId' => 'Monitor Id',
|
||||
'AttrMonitorName' => 'ùí îåðéèåø',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'ùí',
|
||||
'AttrNotes' => 'äòøåú',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'ùòä',
|
||||
'AttrTotalScore' => 'ñê ñëåí',
|
||||
'AttrWeekday' => 'éåí áùáåò',
|
||||
'Auto' => 'àåèå',
|
||||
'AutoStopTimeout' => 'ôñ÷ æîï òöéøä àåèå',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -153,9 +165,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -219,10 +233,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'ñâåø',
|
||||
'Colour' => 'öáò',
|
||||
'Command' => 'ô÷åãä',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'úöåøä',
|
||||
'ConfiguredFor' => 'úöåøä òáåø',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -280,9 +296,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'òãééï ìà, äæëø ìé áòåã ùáåò àçã',
|
||||
'DonateYes' => 'ëï, àðé îòåðééï ìúøåí òëùéå',
|
||||
'Download' => 'äåøã',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'îùê æîï',
|
||||
'Edit' => 'òøåê',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'ãåà"ì',
|
||||
'EnableAlarms' => 'àôùø àæò÷åú',
|
||||
'Enabled' => 'àôùø',
|
||||
|
@ -299,6 +317,7 @@ $SLANG = array(
|
|||
'Events' => 'àéøåòéí',
|
||||
'Exclude' => 'ììà',
|
||||
'Execute' => 'áöò',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'éöà',
|
||||
'ExportDetails' => 'éöà ôøèé àéøåò',
|
||||
'ExportFailed' => 'éöåà ðëùì',
|
||||
|
@ -328,8 +347,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Execute command on all matches',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Message details of all matches',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter Px',
|
||||
'FilterUnset' => 'òìéê ìöééï øåçá åâåáä îñðï',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'òìä àú ëì äúåàîéí',
|
||||
'FilterVideoEvents' => 'öåø åéãàå ìëì äúåàîéí',
|
||||
'Filters' => 'îñððéí',
|
||||
|
@ -354,6 +375,7 @@ $SLANG = array(
|
|||
'Function' => 'ôåð÷öéä',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'ëììé',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'öåø åéãàå',
|
||||
'GeneratingVideo' => 'îééöø åéãàå',
|
||||
'GoToZoneMinder' => 'á÷ø ZoneMinder.com',
|
||||
|
@ -374,6 +396,7 @@ $SLANG = array(
|
|||
'High' => 'âáåä',
|
||||
'HighBW' => 'âáåä ø/ô',
|
||||
'Home' => 'áéú',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'ùòä',
|
||||
'Hue' => 'Hue',
|
||||
'Id' => 'æéäåé',
|
||||
|
@ -398,6 +421,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'îåðéèåøéí î÷åùøéí',
|
||||
'List' => 'øùéîä',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'èòï',
|
||||
'Local' => 'î÷åîé',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -484,6 +508,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'îåðéèåøéí',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'çåãù',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -510,6 +535,7 @@ $SLANG = array(
|
|||
'Next' => 'äáà',
|
||||
'No' => 'ìà',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'There are no frames recorded for this event',
|
||||
'NoGroup' => 'ììà ÷áåöä',
|
||||
'NoSavedFilters' => 'NoSavedFilters',
|
||||
|
@ -528,6 +554,8 @@ $SLANG = array(
|
|||
'OpGt' => 'âãåì î',
|
||||
'OpGtEq' => 'greater than or equal to',
|
||||
'OpIn' => 'in set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'ôçåú î',
|
||||
'OpLtEq' => 'less than or equal to',
|
||||
'OpMatches' => 'matches',
|
||||
|
@ -537,6 +565,7 @@ $SLANG = array(
|
|||
'Open' => 'ôúç',
|
||||
'OptionHelp' => 'OptionHelp',
|
||||
'OptionRestartWarning' => '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.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'àôùøåéåú',
|
||||
'OrEnterNewName' => 'or enter new name',
|
||||
'Order' => 'îéåï',
|
||||
|
@ -574,9 +603,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'ãéøåâ',
|
||||
'Real' => 'àîéúé',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'ä÷ìèä',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Reference Image Blend %ge',
|
||||
'Refresh' => 'øòðåï',
|
||||
'Remote' => 'îøåç÷',
|
||||
|
@ -592,6 +625,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'àôñ',
|
||||
'ResetEventCounts' => 'Reset Event Counts',
|
||||
'Restart' => 'àúçì',
|
||||
|
@ -610,6 +644,7 @@ $SLANG = array(
|
|||
'Save' => 'ùîåø',
|
||||
'SaveAs' => 'ùîåø áùí',
|
||||
'SaveFilter' => 'ùîåø îñðï',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'ñ÷àìä',
|
||||
'Score' => 'ðé÷åã',
|
||||
'Secs' => 'ùðéåú',
|
||||
|
@ -626,6 +661,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Show Filter Window',
|
||||
'ShowTimeline' => 'Show Timeline',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'âåãì',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'ùéðä',
|
||||
|
@ -645,6 +681,10 @@ $SLANG = array(
|
|||
'State' => 'îöá',
|
||||
'Stats' => 'îöáéí',
|
||||
'Status' => 'ñèèåñ',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'öòã',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -655,6 +695,8 @@ $SLANG = array(
|
|||
'Stills' => 'ñèéìñ',
|
||||
'Stop' => 'òöåø',
|
||||
'Stopped' => 'ðòöø',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'ñèøéí',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Submit',
|
||||
|
@ -674,6 +716,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Timestamp Label X',
|
||||
'TimestampLabelY' => 'Timestamp Label Y',
|
||||
'Today' => 'äéåí',
|
||||
|
@ -720,6 +763,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Video Generation Parameters',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!',
|
||||
'VideoSize' => 'âåãì åéãàå',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'äöâ',
|
||||
'ViewAll' => 'äöâ äëì',
|
||||
'ViewEvent' => 'äöâ àéøåò',
|
||||
|
@ -729,6 +773,7 @@ $SLANG = array(
|
|||
'Watch' => 'öôä',
|
||||
'Web' => 'àéðèøðè',
|
||||
'WebColour' => 'öáò àéðèøðè',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'ùáåò',
|
||||
'White' => 'ìáï',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
|
|
@ -121,6 +121,8 @@ $SLANG = array(
|
|||
'Actual' => 'Valós',
|
||||
'AddNewControl' => 'Új vezérlés',
|
||||
'AddNewMonitor' => 'Új kamera',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Új felhasználó',
|
||||
'AddNewZone' => 'Új zóna',
|
||||
'Alarm' => 'Riadó',
|
||||
|
@ -148,22 +150,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Archivált állapot',
|
||||
'AttrAvgScore' => 'Átlagérték',
|
||||
'AttrCause' => 'Okozó',
|
||||
'AttrDate' => 'Dátum',
|
||||
'AttrDateTime' => 'Dátum/Idő',
|
||||
'AttrDiskBlocks' => 'Tárhely blokk',
|
||||
'AttrDiskPercent' => 'Tárhely százalék',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Időtartam',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Képkocka',
|
||||
'AttrId' => 'Azonosító',
|
||||
'AttrMaxScore' => 'Max. érték',
|
||||
'AttrMonitorId' => 'Kamera azonosító',
|
||||
'AttrMonitorName' => 'Kamera név',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Név',
|
||||
'AttrNotes' => 'Megjegyzés',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Rendszerterhelés',
|
||||
'AttrTime' => 'Idő',
|
||||
'AttrTotalScore' => 'Összérték',
|
||||
'AttrWeekday' => 'Hétköznap',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto megállási idő túllépés',
|
||||
'Available' => 'Elérhető',
|
||||
|
@ -196,9 +208,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Változás a referenciaképtől legyen legalább 1',
|
||||
'BadSectionLength' => 'Fix időtartamú esemény hossza legyen legalább 30',
|
||||
'BadSignalCheckColour' => 'Szín a jel kimaradásakor legyen egy érvényes HTML szín-kód',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Folyam visszajátszó puffer legyen legalább 0',
|
||||
'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',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'A képszélesség legyen érvényes érték képpontban megadva',
|
||||
'Bandwidth' => 'Sávszélesség',
|
||||
'BandwidthHead' => 'sávszélességre',
|
||||
|
@ -262,10 +276,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Válasszon naplót',
|
||||
'ChoosePreset' => 'Válasszon profilt',
|
||||
'Clear' => 'Törlés',
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Bezárás',
|
||||
'Colour' => 'Szín',
|
||||
'Command' => 'Parancs',
|
||||
'Component' => 'Komponens',
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Beállítás',
|
||||
'ConfiguredFor' => 'Beállítva',
|
||||
'ConfirmDeleteEvents' => 'Biztos benne, hogy törli a kiválasztott eseményeket?',
|
||||
|
@ -323,9 +339,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Nem most, figyelmeztessen egy hét múlva',
|
||||
'DonateYes' => 'Igen, most szeretném támogatni',
|
||||
'Download' => 'Letöltés',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Kameranév duplikálás',
|
||||
'Duration' => 'Időtartam',
|
||||
'Edit' => 'Szerkesztés',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'E-mail',
|
||||
'EnableAlarms' => 'Riasztások engedélyezése',
|
||||
'Enabled' => 'Engedélyezve',
|
||||
|
@ -342,6 +360,7 @@ $SLANG = array(
|
|||
'Events' => 'Események',
|
||||
'Exclude' => 'Kizárás',
|
||||
'Execute' => 'Végrehajtás',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exportálás',
|
||||
'ExportDetails' => 'Esemény adatainak exportálása',
|
||||
'ExportFailed' => 'Az exportálás sikertelen',
|
||||
|
@ -371,8 +390,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Parancs futtatása minden találaton',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Minden találat adatainak üzenése',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Szűrt képkockák',
|
||||
'FilterUnset' => 'Meg kell adnod a szűrő szélességét és magasságát',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Minden találat feltöltése',
|
||||
'FilterVideoEvents' => 'Videó készítése minden találatról',
|
||||
'Filters' => 'Szűrők',
|
||||
|
@ -397,6 +418,7 @@ $SLANG = array(
|
|||
'Function' => 'Funkció',
|
||||
'Gain' => 'Erősítés',
|
||||
'General' => 'Általános',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Videó készítés',
|
||||
'GeneratingVideo' => 'Videó készítése folyamatban',
|
||||
'GoToZoneMinder' => 'Ellenőrzés a ZoneMinder.com-on',
|
||||
|
@ -417,6 +439,7 @@ $SLANG = array(
|
|||
'High' => 'Magas',
|
||||
'HighBW' => 'Magas<br>sávszél',
|
||||
'Home' => 'Alapba',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Órában',
|
||||
'Hue' => 'Színárnyalat',
|
||||
'Id' => 'Az.',
|
||||
|
@ -441,6 +464,7 @@ $SLANG = array(
|
|||
'Line' => 'Sor',
|
||||
'LinkedMonitors' => 'Összefüggés más kamerákkal<br>(jelölés Ctrl+kattintással)',
|
||||
'List' => 'Lista',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Terhelés',
|
||||
'Local' => 'Helyi',
|
||||
'Log' => 'Napló',
|
||||
|
@ -527,6 +551,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'Az alábbi listában találhatók az automatikusan érzékelt analóg és hálózati kamerákat, illetve azt, hogy közülük melyik van használatban, vagy kiválasztható.<br/><br/>Válasszon egyet az alábbi listából.<br/><br/>Figyelem: nem biztos, hogy minden kamerát lehet automatikusan érzékelni. Az itt kiválasztott kamara adatai felülírhatják azokat, amelyeket már ehhez a monitorhoz beállított.<br/><br/>',
|
||||
'Monitors' => 'Kamerák',
|
||||
'Montage' => 'Többkamerás nézet',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Hónapban',
|
||||
'More' => 'Több',
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -553,6 +578,7 @@ $SLANG = array(
|
|||
'Next' => 'Következő',
|
||||
'No' => 'Nem',
|
||||
'NoDetectedCameras' => 'Nem érzékelhetőek kamerák',
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Nincs rögzített képkocka ehhez az eseményhez',
|
||||
'NoGroup' => 'Nincs csoport',
|
||||
'NoSavedFilters' => 'Nincs mentett szűrő',
|
||||
|
@ -571,6 +597,8 @@ $SLANG = array(
|
|||
'OpGt' => 'nagyobb mint',
|
||||
'OpGtEq' => 'nagyobb van egyenlő',
|
||||
'OpIn' => 'beállítva',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'kisebb mint',
|
||||
'OpLtEq' => 'kisebb vagy egyenlő',
|
||||
'OpMatches' => 'találatok',
|
||||
|
@ -580,6 +608,7 @@ $SLANG = array(
|
|||
'Open' => 'Megnyitás',
|
||||
'OptionHelp' => 'Beállítási segítség',
|
||||
'OptionRestartWarning' => 'Ez a beállítás nem tud érvénybe lépni miközben az élő rendszer fut.\nHa végzett minden beállítással, kérem, indítsa újra a ZoneMinder szolgáltatást.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Beállítások',
|
||||
'OrEnterNewName' => 'vagy új néven:',
|
||||
'Order' => 'Sorrend',
|
||||
|
@ -617,9 +646,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'FPS',
|
||||
'Real' => 'Valós',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Felvétel',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Változás a referenciaképtől %-ban',
|
||||
'Refresh' => 'Frissítés',
|
||||
'Remote' => 'Hálózati',
|
||||
|
@ -635,6 +668,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Mindet',
|
||||
'ReplayGapless' => 'Szünet nélkülieket',
|
||||
'ReplaySingle' => 'Egyenként',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Alapértékre',
|
||||
'ResetEventCounts' => 'Eseményszámláló nullázása',
|
||||
'Restart' => 'A szolgáltatás újraindítása',
|
||||
|
@ -653,6 +687,7 @@ $SLANG = array(
|
|||
'Save' => 'Mentés',
|
||||
'SaveAs' => 'Mentés erre:',
|
||||
'SaveFilter' => 'Szűrő mentése',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Méret',
|
||||
'Score' => 'Pontszám',
|
||||
'Secs' => 'mp.',
|
||||
|
@ -669,6 +704,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Szűrőablak megjelenítése',
|
||||
'ShowTimeline' => 'Idővonal megjelenítése',
|
||||
'SignalCheckColour' => 'Szín a jel kimaradásakor',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Fájlméret',
|
||||
'SkinDescription' => 'Alapértelmezett felület ebben a böngészőben',
|
||||
'Sleep' => 'Alvás',
|
||||
|
@ -688,6 +724,10 @@ $SLANG = array(
|
|||
'State' => 'Állapot',
|
||||
'Stats' => 'Statisztikák',
|
||||
'Status' => 'Státusz',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Ugrás',
|
||||
'StepBack' => 'Visszalépés',
|
||||
'StepForward' => 'Előrelépés',
|
||||
|
@ -698,6 +738,8 @@ $SLANG = array(
|
|||
'Stills' => 'Állóképek',
|
||||
'Stop' => 'A szolgáltatás leállítása',
|
||||
'Stopped' => 'Leállítva',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Élő folyam',
|
||||
'StreamReplayBuffer' => 'Képkockák száma a pufferben visszajátszáskor',
|
||||
'Submit' => 'Küldés',
|
||||
|
@ -717,6 +759,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Elhelyezés X pozició',
|
||||
'TimestampLabelY' => 'Elhelyezés Y pozició',
|
||||
'Today' => 'Ma',
|
||||
|
@ -763,6 +806,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Videó készítési paraméterek',
|
||||
'VideoGenSucceeded' => 'A videó elkészült.',
|
||||
'VideoSize' => 'Képméret',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Megtekintés',
|
||||
'ViewAll' => 'Az összes listázása',
|
||||
'ViewEvent' => 'Események nézet',
|
||||
|
@ -772,6 +816,7 @@ $SLANG = array(
|
|||
'Watch' => 'Figyelés',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Szín az idővonal skálán',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Héten',
|
||||
'White' => 'Fehér',
|
||||
'WhiteBalance' => 'Fehér egyensúly',
|
||||
|
|
|
@ -83,6 +83,8 @@ $SLANG = array(
|
|||
'Actual' => 'Attuale',
|
||||
'AddNewControl' => 'Aggiungi nuovo Controllo',
|
||||
'AddNewMonitor' => 'Aggiungi nuovo Monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Aggiungi nuovo Utente',
|
||||
'AddNewZone' => 'Aggiungi nuova Zona',
|
||||
'Alarm' => 'Allarme',
|
||||
|
@ -110,22 +112,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Stato Archivio',
|
||||
'AttrAvgScore' => 'Punteggio medio',
|
||||
'AttrCause' => 'Causa',
|
||||
'AttrDate' => 'Data',
|
||||
'AttrDateTime' => 'Data/Ora',
|
||||
'AttrDiskBlocks' => 'Blocchi del Disco',
|
||||
'AttrDiskPercent' => 'Percentuale del Disco',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Durata',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Immagini',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Punteggio massimo',
|
||||
'AttrMonitorId' => 'Id Monitor',
|
||||
'AttrMonitorName' => 'Nome Monitor',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nome',
|
||||
'AttrNotes' => 'Note',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'Ora',
|
||||
'AttrTotalScore' => 'Punteggio totale',
|
||||
'AttrWeekday' => 'Giorno della settimana',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Disponibile', // Added - 2009-03-31
|
||||
|
@ -158,9 +170,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'La percentuale di miscela di riferimento deve essere un intero positivo',
|
||||
'BadSectionLength' => 'La lunghezza della sezione deve essere un numero intero pari a 30 o maggiore',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Il numero di frame di allarme deve essere un numero intero maggiore o uguale a zero',
|
||||
'BadWebColour' => 'L\'identificativo del colore deve essere una stringa valida',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -224,10 +238,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Scegli Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Chiudi',
|
||||
'Colour' => 'Colori',
|
||||
'Command' => 'Comando',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Configura',
|
||||
'ConfiguredFor' => 'Configurato per',
|
||||
'ConfirmDeleteEvents' => 'Sei sicuro di voler cancellare gli eventi selezionati',
|
||||
|
@ -285,9 +301,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Non ancora, ricordamelo ancora tra 1 settimana',
|
||||
'DonateYes' => 'Si,mi piacerebbe donare qualcosa ora',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Il nome del monitor e\' gia\' presente', // Added - 2009-03-31
|
||||
'Duration' => 'Durata',
|
||||
'Edit' => 'Modifica',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Abilita Allarmi',
|
||||
'Enabled' => 'Attivo',
|
||||
|
@ -304,6 +322,7 @@ $SLANG = array(
|
|||
'Events' => 'Eventi',
|
||||
'Exclude' => 'Escludi',
|
||||
'Execute' => 'Esegui',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Esporta',
|
||||
'ExportDetails' => 'Esp. dettagli eventi',
|
||||
'ExportFailed' => 'Esp. Fallita ',
|
||||
|
@ -333,8 +352,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Esegui un comando',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Invia dettagli tramite messaggio',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Px Filtro',
|
||||
'FilterUnset' => 'Devi specificare altezza e larghezza per il filtro',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Fai upload eventi (FTP)',
|
||||
'FilterVideoEvents' => 'Crea video per tutte le corrispondenze',
|
||||
'Filters' => 'Filtri',
|
||||
|
@ -359,6 +380,7 @@ $SLANG = array(
|
|||
'Function' => 'Funzione',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'Generale',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Genera Video',
|
||||
'GeneratingVideo' => 'Sto generando il Video',
|
||||
'GoToZoneMinder' => 'Vai su zoneminder.com',
|
||||
|
@ -379,6 +401,7 @@ $SLANG = array(
|
|||
'High' => 'Alta',
|
||||
'HighBW' => 'Banda Alta',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Ora',
|
||||
'Hue' => 'Tinta',
|
||||
'Id' => 'Id',
|
||||
|
@ -403,6 +426,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Monitor Collegati',
|
||||
'List' => 'Lista',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Carico Sistema',
|
||||
'Local' => 'Locale',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -489,6 +513,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Monitors',
|
||||
'Montage' => 'Montaggio',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Mese',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -515,6 +540,7 @@ $SLANG = array(
|
|||
'Next' => 'Prossimo',
|
||||
'No' => 'No',
|
||||
'NoDetectedCameras' => 'Nessuna telecamera rilevata', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Non ci sono immagini salvate per questo evento',
|
||||
'NoGroup' => 'Nessun gruppo', // Added - 2009-02-08
|
||||
'NoSavedFilters' => 'NessunFiltroSalvato',
|
||||
|
@ -533,6 +559,8 @@ $SLANG = array(
|
|||
'OpGt' => 'maggiore di',
|
||||
'OpGtEq' => 'maggiore o uguale a',
|
||||
'OpIn' => 'impostato',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'minore di',
|
||||
'OpLtEq' => 'minore o uguale a',
|
||||
'OpMatches' => 'corrisponde',
|
||||
|
@ -542,6 +570,7 @@ $SLANG = array(
|
|||
'Open' => 'Apri',
|
||||
'OptionHelp' => 'Opzioni di Aiuto',
|
||||
'OptionRestartWarning' => 'Queste modifiche potrebbero essere attive solo dopo un riavvio del sistema. Riavviare ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opzioni',
|
||||
'OrEnterNewName' => 'o inserisci un nuovo nome',
|
||||
'Order' => 'Ordine',
|
||||
|
@ -579,9 +608,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Velocita\'',
|
||||
'Real' => 'Reale',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Registra',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Riferimento Miscela Immagine percentuale',
|
||||
'Refresh' => 'Aggiorna',
|
||||
'Remote' => 'Remoto',
|
||||
|
@ -597,6 +630,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Resetta',
|
||||
'ResetEventCounts' => 'Resetta Contatore Eventi',
|
||||
'Restart' => 'Riavvia',
|
||||
|
@ -615,6 +649,7 @@ $SLANG = array(
|
|||
'Save' => 'Salva',
|
||||
'SaveAs' => 'Salva come',
|
||||
'SaveFilter' => 'salva Filtro',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Scala',
|
||||
'Score' => 'Punteggio',
|
||||
'Secs' => 'Secs',
|
||||
|
@ -631,6 +666,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'MostraFinestraFiltri',
|
||||
'ShowTimeline' => 'Mostra linea temporale',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'grandezza',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -650,6 +686,10 @@ $SLANG = array(
|
|||
'State' => 'Stato',
|
||||
'Stats' => 'Statistiche',
|
||||
'Status' => 'Stato',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Passo',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -660,6 +700,8 @@ $SLANG = array(
|
|||
'Stills' => 'Foto',
|
||||
'Stop' => 'Stop',
|
||||
'Stopped' => 'Inattivo',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Flusso',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Accetta',
|
||||
|
@ -679,6 +721,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'coordinata X etichetta',
|
||||
'TimestampLabelY' => 'coordinata Y etichetta',
|
||||
'Today' => 'Oggi ',
|
||||
|
@ -725,6 +768,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parametri Generazione Video',
|
||||
'VideoGenSucceeded' => 'Successo: Generato Video !',
|
||||
'VideoSize' => 'Dimensioni Video',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'vedi',
|
||||
'ViewAll' => 'Vedi Tutto',
|
||||
'ViewEvent' => 'Vedi Evento',
|
||||
|
@ -734,6 +778,7 @@ $SLANG = array(
|
|||
'Watch' => 'Guarda',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Colore Web',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Settimana',
|
||||
'White' => 'Bianco',
|
||||
'WhiteBalance' => 'Bil. Bianco ',
|
||||
|
|
|
@ -79,6 +79,8 @@ $SLANG = array(
|
|||
'Actual' => '生中継',
|
||||
'AddNewControl' => 'Add New Control',
|
||||
'AddNewMonitor' => 'モニター追加',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'ユーザ追加',
|
||||
'AddNewZone' => 'ゾーン追加',
|
||||
'Alarm' => 'アラーム',
|
||||
|
@ -106,22 +108,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => '保存状態',
|
||||
'AttrAvgScore' => '平均スコアー',
|
||||
'AttrCause' => 'Cause',
|
||||
'AttrDate' => '日付',
|
||||
'AttrDateTime' => '日時',
|
||||
'AttrDiskBlocks' => 'Disk Blocks',
|
||||
'AttrDiskPercent' => 'Disk Percent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => '継続時間',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'フレーム',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => '最高スコアー',
|
||||
'AttrMonitorId' => 'モニター Id',
|
||||
'AttrMonitorName' => 'モニター 名前',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Name',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => '時間',
|
||||
'AttrTotalScore' => '合計スコアー',
|
||||
'AttrWeekday' => '曜日',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -154,9 +166,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -220,10 +234,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => '閉じる',
|
||||
'Colour' => '色',
|
||||
'Command' => 'Command',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => '設定:',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -281,12 +297,14 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Not yet, remind again in 1 week',
|
||||
'DonateYes' => 'Yes, I\'d like to donate now',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => '継続時間',
|
||||
'Edit' => '編集',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'メール',
|
||||
'EnableAlarms' => 'Enable Alarms',
|
||||
'Enabled' => '使用可能\',
|
||||
'Enabled' => '使用可能',
|
||||
'EnterNewFilterName' => '新しいフィルター名の入力',
|
||||
'Error' => 'エラー',
|
||||
'ErrorBrackets' => 'エラー、開き括弧と閉じ括弧の数が合っているのかを確認してください',
|
||||
|
@ -300,6 +318,7 @@ $SLANG = array(
|
|||
'Events' => 'イベント',
|
||||
'Exclude' => '排除',
|
||||
'Execute' => 'Execute',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Export',
|
||||
'ExportDetails' => 'Export Event Details',
|
||||
'ExportFailed' => 'Export Failed',
|
||||
|
@ -329,8 +348,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Execute command on all matches',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Message details of all matches',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'フィルター Px',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Upload all matches',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Filters',
|
||||
|
@ -351,10 +372,11 @@ $SLANG = array(
|
|||
'FrameRate' => 'フレームレート',
|
||||
'FrameSkip' => 'フレームスキップ',
|
||||
'Frames' => 'フレーム',
|
||||
'Func' => '機能\',
|
||||
'Function' => '機能\',
|
||||
'Func' => '機能',
|
||||
'Function' => '機能',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'ビデオの生成',
|
||||
'GeneratingVideo' => 'ビデオ生成中',
|
||||
'GoToZoneMinder' => 'ZoneMinder.comに行く',
|
||||
|
@ -375,6 +397,7 @@ $SLANG = array(
|
|||
'High' => '高',
|
||||
'HighBW' => '高帯域',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => '時',
|
||||
'Hue' => '色相',
|
||||
'Id' => 'ID',
|
||||
|
@ -399,6 +422,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Linked Monitors',
|
||||
'List' => 'List',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Load',
|
||||
'Local' => 'ローカル',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -485,6 +509,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'モニター',
|
||||
'Montage' => 'モンタージュ',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => '月',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -511,6 +536,7 @@ $SLANG = array(
|
|||
'Next' => '次',
|
||||
'No' => 'いいえ',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'このイベントのフレームは登録されていません',
|
||||
'NoGroup' => 'No Group',
|
||||
'NoSavedFilters' => '保存されたフィルターはありません',
|
||||
|
@ -529,6 +555,8 @@ $SLANG = array(
|
|||
'OpGt' => '以下',
|
||||
'OpGtEq' => '同等か以上',
|
||||
'OpIn' => 'セットに入っている',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => '以下',
|
||||
'OpLtEq' => '同等か以下',
|
||||
'OpMatches' => '一致する',
|
||||
|
@ -538,6 +566,7 @@ $SLANG = array(
|
|||
'Open' => 'Open',
|
||||
'OptionHelp' => 'オプション ヘルプ',
|
||||
'OptionRestartWarning' => 'この変更は起動中反映されない場合があります。\n変更してからZoneMinderを再起動してください。',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'オプション',
|
||||
'OrEnterNewName' => '又は新しい名前を入力してください',
|
||||
'Order' => 'Order',
|
||||
|
@ -575,9 +604,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'レート',
|
||||
'Real' => '生中継',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => '録画',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'イメージ ブレンド 参照 %',
|
||||
'Refresh' => '最新の情報に更新',
|
||||
'Remote' => 'リモート',
|
||||
|
@ -593,6 +626,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'イベント カウント リセット',
|
||||
'Restart' => '再起動',
|
||||
|
@ -611,6 +645,7 @@ $SLANG = array(
|
|||
'Save' => '保存',
|
||||
'SaveAs' => '名前をつけて保存',
|
||||
'SaveFilter' => 'フィルターを保存',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'スケール',
|
||||
'Score' => 'スコアー',
|
||||
'Secs' => '秒',
|
||||
|
@ -627,6 +662,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'フィルター ウインドーの表示',
|
||||
'ShowTimeline' => 'Show Timeline',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Size',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -646,6 +682,10 @@ $SLANG = array(
|
|||
'State' => '状態',
|
||||
'Stats' => '統計',
|
||||
'Status' => '状態',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Step',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -656,6 +696,8 @@ $SLANG = array(
|
|||
'Stills' => 'スチール画像',
|
||||
'Stop' => '停止',
|
||||
'Stopped' => '停止状態',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'ストリーム',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Submit',
|
||||
|
@ -675,6 +717,7 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Use the controls below to zoom out or navigate back and forward through the time range.', // Added 2013.08.15.
|
||||
'Timestamp' => 'タイムスタンプ',
|
||||
'TimestampLabelFormat' => 'タイムスタンプ ラベル フォーマット',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'タイムスタンプ ラベル X',
|
||||
'TimestampLabelY' => 'タイムスタンプ ラベル Y',
|
||||
'Today' => 'Today',
|
||||
|
@ -721,6 +764,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'ビデオ生成 パラメータ',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!',
|
||||
'VideoSize' => 'ビデオ サイズ',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => '表示',
|
||||
'ViewAll' => '全部表示',
|
||||
'ViewEvent' => 'View Event',
|
||||
|
@ -730,6 +774,7 @@ $SLANG = array(
|
|||
'Watch' => '監視',
|
||||
'Web' => 'ウェブ',
|
||||
'WebColour' => 'Web Colour',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => '週',
|
||||
'White' => 'White',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
@ -767,7 +812,7 @@ $CLANG = array(
|
|||
'LastEvents' => '最終 %1$s %2$s',
|
||||
'LatestRelease' => '最新バージョンは v%1$s、ご利用バージョンはv%2$s.',
|
||||
'MonitorCount' => '%1$s %2$s',
|
||||
'MonitorFunction' => 'モニター%1$s 機能\',
|
||||
'MonitorFunction' => 'モニター%1$s 機能',
|
||||
'RunningRecentVer' => 'あなたはZoneMinderの最新バージョン v%s.を使っています',
|
||||
'VersionMismatch' => 'Version mismatch, system is version %1$s, database is %2$s.', // Added - 2011-05-25
|
||||
);
|
||||
|
|
|
@ -79,6 +79,8 @@ $SLANG = array(
|
|||
'Actual' => 'Origineel',
|
||||
'AddNewControl' => 'Nieuwe controle toevoegen',
|
||||
'AddNewMonitor' => 'Nieuwe monitor toevoegen',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Nieuwe gebruiker toevoegen',
|
||||
'AddNewZone' => 'Nieuw gebied toevoegen',
|
||||
'Alarm' => 'Alarm',
|
||||
|
@ -106,22 +108,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Archiefstatus',
|
||||
'AttrAvgScore' => 'Gem. score',
|
||||
'AttrCause' => 'Oorzaak',
|
||||
'AttrDate' => 'Datum',
|
||||
'AttrDateTime' => 'Datum/tijd',
|
||||
'AttrDiskBlocks' => 'Disk Blocks',
|
||||
'AttrDiskPercent' => 'Disk Percent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Duur',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Frames',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Max. Score',
|
||||
'AttrMonitorId' => 'Monitor Id',
|
||||
'AttrMonitorName' => 'Monitor Naam',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Naam',
|
||||
'AttrNotes' => 'Notities',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Systembelasting',
|
||||
'AttrTime' => 'Tijd',
|
||||
'AttrTotalScore' => 'Totale Score',
|
||||
'AttrWeekday' => 'Weekdag',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Beschikbaar',
|
||||
|
@ -154,9 +166,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage moet een geldige waarde van nul of groter zijn',
|
||||
'BadSectionLength' => 'Sectielengte moet een getal van 30 of groter zijn',
|
||||
'BadSignalCheckColour' => 'Signaalcontrolekleur moet een geldige RGB waarde zijn',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer moet een geldige waarde van nul of groter zijn',
|
||||
'BadWarmupCount' => 'Opwarm frames moet een geldig getal van nul of groter zijn',
|
||||
'BadWebColour' => 'Webkleur moet een geldige webkleurwaarde bevatten',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'Breedte moet een geldige waarde zijn',
|
||||
'Bandwidth' => 'Bandbreedte',
|
||||
'BandwidthHead' => 'bandbreedte', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
|
@ -220,10 +234,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Kies een logselectie',
|
||||
'ChoosePreset' => 'Kies voorkeur',
|
||||
'Clear' => 'Legen',
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Sluiten',
|
||||
'Colour' => 'Kleur',
|
||||
'Command' => 'Commando',
|
||||
'Component' => 'Component',
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Configuratie',
|
||||
'ConfiguredFor' => 'Geconfigureerd voor',
|
||||
'ConfirmDeleteEvents' => 'Weet u zeker dat u deze gebeurtenissen wilt verwijderen?',
|
||||
|
@ -281,9 +297,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Nu niet, herinner mij over een week hieraan',
|
||||
'DonateYes' => 'Ja, ik wil nu doneren',
|
||||
'Download' => 'Downloaden',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Kopieer monitornaam',
|
||||
'Duration' => 'Duur',
|
||||
'Edit' => 'Bewerken',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Alarmen inschakelen',
|
||||
'Enabled' => 'Ingeschakeld',
|
||||
|
@ -300,6 +318,7 @@ $SLANG = array(
|
|||
'Events' => 'Gebeurtenissen',
|
||||
'Exclude' => 'Uitsluiten',
|
||||
'Execute' => 'Uitvoeren',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exporteren',
|
||||
'ExportDetails' => 'Exporteer gebeurtenisdetails',
|
||||
'ExportFailed' => 'Exporteren mislukt',
|
||||
|
@ -329,8 +348,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Voer opdrachten uit op alle overeenkomsten',
|
||||
'FilterLog' => 'Filterlog',
|
||||
'FilterMessageEvents' => 'Bericht de details van alle overeenkomsten',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter px',
|
||||
'FilterUnset' => 'Je moet de filterhoogte en -breedte opgeven',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Verstuur alle overeenkomsten',
|
||||
'FilterVideoEvents' => 'Maak video voor alle overeenkomsten',
|
||||
'Filters' => 'Filters',
|
||||
|
@ -355,6 +376,7 @@ $SLANG = array(
|
|||
'Function' => 'Functie',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'Algemeen',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Genereer Video',
|
||||
'GeneratingVideo' => 'Video wordt gegenereerd',
|
||||
'GoToZoneMinder' => 'Ga naar ZoneMinder.com',
|
||||
|
@ -375,6 +397,7 @@ $SLANG = array(
|
|||
'High' => 'Hoog',
|
||||
'HighBW' => 'Hoog B/W',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Uur',
|
||||
'Hue' => 'Hue',
|
||||
'Id' => 'Id',
|
||||
|
@ -399,6 +422,7 @@ $SLANG = array(
|
|||
'Line' => 'Lijn',
|
||||
'LinkedMonitors' => 'Gekoppelde monitoren',
|
||||
'List' => 'Lijst',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Systeemlast',
|
||||
'Local' => 'Lokaal',
|
||||
'Log' => 'Log',
|
||||
|
@ -485,6 +509,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'Deze lijst toont gedeteerde analoge en netwerk cameras en of deze al in gebruik of beschikbaar zijn.<br/><br/>Selecteer de gewenste waarde uit de lijst hieronder.<br/><br/>Let op dat mogelijk niet alle cameras hier worden weergegeven en dat alle ingevoerde waarden voor de huidige monitor zullen worden overschreven.<br/><br/>',
|
||||
'Monitors' => 'Monitoren',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Maand',
|
||||
'More' => 'Meer',
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -511,6 +536,7 @@ $SLANG = array(
|
|||
'Next' => 'Volgende',
|
||||
'No' => 'Nee',
|
||||
'NoDetectedCameras' => 'Geen cameras gedetecteerd',
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Er zijn geen beelden opgenomen voor deze gebeurtenis',
|
||||
'NoGroup' => 'Geen Groep',
|
||||
'NoSavedFilters' => 'Geen Opgeslagen Filters',
|
||||
|
@ -529,6 +555,8 @@ $SLANG = array(
|
|||
'OpGt' => 'groter dan',
|
||||
'OpGtEq' => 'groter dan of gelijk aan',
|
||||
'OpIn' => 'in set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'kleiner dan',
|
||||
'OpLtEq' => 'kleiner dan of gelijk aan',
|
||||
'OpMatches' => 'Komt overeen met',
|
||||
|
@ -538,6 +566,7 @@ $SLANG = array(
|
|||
'Open' => 'Open',
|
||||
'OptionHelp' => 'OptieHelp',
|
||||
'OptionRestartWarning' => 'Deze veranderingen worden niet\ndoorgevoerd als het systeem loopt.\nVergeet niet ZoneMinder te herstarten\nwanneer u klaar bent.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opties',
|
||||
'OrEnterNewName' => 'of voer een nieuwe naam in',
|
||||
'Order' => 'Sorteren',
|
||||
|
@ -575,9 +604,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Voortgang',
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Snelheid',
|
||||
'Real' => 'Echte',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Record',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Referentie beeld blend percentage',
|
||||
'Refresh' => 'Verversen',
|
||||
'Remote' => 'Remote',
|
||||
|
@ -593,6 +626,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Alle Gebeurtenissen',
|
||||
'ReplayGapless' => 'Opvolgende Gebeurtenissen',
|
||||
'ReplaySingle' => 'Enkele Gebeurtenis',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Resetten',
|
||||
'ResetEventCounts' => 'Gebeurtenisteller resetten',
|
||||
'Restart' => 'Herstart',
|
||||
|
@ -611,6 +645,7 @@ $SLANG = array(
|
|||
'Save' => 'Opslaan',
|
||||
'SaveAs' => 'Opslaan als',
|
||||
'SaveFilter' => 'Filter opslaan',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Schaal',
|
||||
'Score' => 'Score',
|
||||
'Secs' => 'Sec.',
|
||||
|
@ -627,6 +662,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Toon Filtervenster',
|
||||
'ShowTimeline' => 'Toon Tijdlijn',
|
||||
'SignalCheckColour' => 'Signaalcontrolekleur',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Groote',
|
||||
'SkinDescription' => 'Wijzig standaarduiterlijk voor deze computer',
|
||||
'Sleep' => 'Slaap',
|
||||
|
@ -646,6 +682,10 @@ $SLANG = array(
|
|||
'State' => 'Status',
|
||||
'Stats' => 'Stats',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Stap',
|
||||
'StepBack' => 'Stap Terug',
|
||||
'StepForward' => 'Stap Vooruit',
|
||||
|
@ -656,6 +696,8 @@ $SLANG = array(
|
|||
'Stills' => 'Beelden',
|
||||
'Stop' => 'Stoppen',
|
||||
'Stopped' => 'Gestopt',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Stream',
|
||||
'StreamReplayBuffer' => 'Stream Replay beeldbuffer',
|
||||
'Submit' => 'Verzenden',
|
||||
|
@ -675,6 +717,7 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Gebruik de knoppen hieronder om uit te zoomen of voor- en achteruit te navigeren.',
|
||||
'Timestamp' => 'Tijdstempel',
|
||||
'TimestampLabelFormat' => 'Formaat tijdstempel',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Tijdstempel X-positie',
|
||||
'TimestampLabelY' => 'Tijdstempel Y-positie',
|
||||
'Today' => 'Vandaag',
|
||||
|
@ -721,6 +764,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Videogeneratie Parameters',
|
||||
'VideoGenSucceeded' => 'Videogeneratie voltooid!',
|
||||
'VideoSize' => 'Videogrootte',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Bekijk',
|
||||
'ViewAll' => 'Bekijk Alles',
|
||||
'ViewEvent' => 'Bekijk Gebeurtenis',
|
||||
|
@ -730,6 +774,7 @@ $SLANG = array(
|
|||
'Watch' => 'Observeer',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Webkleur',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Week',
|
||||
'White' => 'Wit',
|
||||
'WhiteBalance' => 'Witbalans',
|
||||
|
|
|
@ -93,6 +93,8 @@ $SLANG = array(
|
|||
'Actual' => 'Domyślna',
|
||||
'AddNewControl' => 'Add New Control',
|
||||
'AddNewMonitor' => 'Dodaj nowy monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Dodaj użytkownika',
|
||||
'AddNewZone' => 'Dodaj nową strefę',
|
||||
'Alarm' => 'Alarm',
|
||||
|
@ -120,22 +122,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Status archiwum',
|
||||
'AttrAvgScore' => 'Śred. wynik',
|
||||
'AttrCause' => 'Powód',
|
||||
'AttrDate' => 'Data',
|
||||
'AttrDateTime' => 'Data/Czas',
|
||||
'AttrDiskBlocks' => 'Dysk Bloki',
|
||||
'AttrDiskPercent' => 'Procent zajętości',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Czas trwania',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Klatki',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Maks. wynik',
|
||||
'AttrMonitorId' => 'Nr monitora',
|
||||
'AttrMonitorName' => 'Nazwa monitora',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nazwa',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Obiążenie systemu',
|
||||
'AttrTime' => 'Czas',
|
||||
'AttrTotalScore' => 'Całkowity wynik',
|
||||
'AttrWeekday' => 'Dzień roboczy',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Dostępne', // Added - 2009-03-31
|
||||
|
@ -168,9 +180,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'Width must be set to a valid value',
|
||||
'Bandwidth' => 'Przepustowość',
|
||||
'BandwidthHead' => 'Przepustowość', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing
|
||||
|
@ -234,10 +248,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Wyczyść', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Zamknij',
|
||||
'Colour' => 'Nasycenie',
|
||||
'Command' => 'Polecenie',
|
||||
'Component' => 'Komponent', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Konfiguracja',
|
||||
'ConfiguredFor' => 'Ustawiona',
|
||||
'ConfirmDeleteEvents' => 'Jesteś pewien, że chcesz usunąć zaznaczone zdarzenia?',
|
||||
|
@ -295,9 +311,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Not yet, remind again in 1 week',
|
||||
'DonateYes' => 'Yes, I\'d like to donate now',
|
||||
'Download' => 'Pobierz',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Czas trwania',
|
||||
'Edit' => 'Edycja',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Enable Alarms',
|
||||
'Enabled' => 'Aktywny',
|
||||
|
@ -314,6 +332,7 @@ $SLANG = array(
|
|||
'Events' => 'Zdarzenia',
|
||||
'Exclude' => 'Wyklucz',
|
||||
'Execute' => 'Wykonaj',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Eksport',
|
||||
'ExportDetails' => 'Eksport szczegółów zdarzenia',
|
||||
'ExportFailed' => 'Eksport nie powiódł się',
|
||||
|
@ -343,8 +362,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Wywołuj komendę dla wszystkich pasujących',
|
||||
'FilterLog' => 'Filtr logów', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Wyświetlaj komunikat na wszystkie pasujące',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filtr Px',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Wysyłaj wszystkie pasujące',
|
||||
'FilterVideoEvents' => 'Utwórz nagranie dla zaznaczonych',
|
||||
'Filters' => 'Filtry',
|
||||
|
@ -369,6 +390,7 @@ $SLANG = array(
|
|||
'Function' => 'Funkcja',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Generowanie Video',
|
||||
'GeneratingVideo' => 'Generuję Video',
|
||||
'GoToZoneMinder' => 'PrzejdŹ na ZoneMinder.com',
|
||||
|
@ -389,6 +411,7 @@ $SLANG = array(
|
|||
'High' => 'wysoka',
|
||||
'HighBW' => 'Wys. prz.',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Godzina',
|
||||
'Hue' => 'Odcień',
|
||||
'Id' => 'Nr',
|
||||
|
@ -413,6 +436,7 @@ $SLANG = array(
|
|||
'Line' => 'Linia', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Połączone monitory',
|
||||
'List' => 'Lista',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Obc.',
|
||||
'Local' => 'Lokalny',
|
||||
'Log' => 'Logi', // Added - 2011-06-16
|
||||
|
@ -499,6 +523,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Monitory',
|
||||
'Montage' => 'Montaż',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Miesiąc',
|
||||
'More' => 'Pokaż więcej', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -525,6 +550,7 @@ $SLANG = array(
|
|||
'Next' => 'Następny',
|
||||
'No' => 'Nie',
|
||||
'NoDetectedCameras' => 'Nie wykryto kamer', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Brak zapisanych ramek dla tego zdarzenia',
|
||||
'NoGroup' => 'Brak grupy',
|
||||
'NoSavedFilters' => 'BrakZapisanychFiltrów',
|
||||
|
@ -543,6 +569,8 @@ $SLANG = array(
|
|||
'OpGt' => 'większe od',
|
||||
'OpGtEq' => 'większe lub równe od',
|
||||
'OpIn' => 'w zestawie',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'mniejsze od',
|
||||
'OpLtEq' => 'mniejsze lub równe od',
|
||||
'OpMatches' => 'pasujące',
|
||||
|
@ -552,6 +580,7 @@ $SLANG = array(
|
|||
'Open' => 'Otwórz',
|
||||
'OptionHelp' => 'OpcjePomoc',
|
||||
'OptionRestartWarning' => 'Te zmiany nie przyniosą natychmiastowego efektu\ndopóki system pracuje. Kiedy zakończysz robić zmiany\nproszę koniecznie zrestartować ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opcje',
|
||||
'OrEnterNewName' => 'lub wpisz nową nazwę',
|
||||
'Order' => 'Kolejność',
|
||||
|
@ -589,9 +618,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Postęp', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Tempo',
|
||||
'Real' => 'Rzeczywiste',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Zapis',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Miks z obrazem odniesienia',
|
||||
'Refresh' => 'Odśwież',
|
||||
'Remote' => 'Zdalny',
|
||||
|
@ -607,6 +640,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Wszystko',
|
||||
'ReplayGapless' => 'Wszystko i powtarzaj',
|
||||
'ReplaySingle' => 'Bieżące zdarzenie',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Kasuj licznik zdarzeń',
|
||||
'Restart' => 'Restart',
|
||||
|
@ -625,6 +659,7 @@ $SLANG = array(
|
|||
'Save' => 'Zapisz',
|
||||
'SaveAs' => 'Zapisz jako',
|
||||
'SaveFilter' => 'Zapisz filtr',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Skala',
|
||||
'Score' => 'Wynik',
|
||||
'Secs' => 'Sekund',
|
||||
|
@ -641,6 +676,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'PokażOknoFiltru',
|
||||
'ShowTimeline' => 'Pokaż oś czasu',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Rozmiar',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -660,6 +696,10 @@ $SLANG = array(
|
|||
'State' => 'Stan',
|
||||
'Stats' => 'Statystyki',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Krok',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -670,6 +710,8 @@ $SLANG = array(
|
|||
'Stills' => 'Podgląd klatek',
|
||||
'Stop' => 'Stop',
|
||||
'Stopped' => 'Zatrzymany',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Odtwarzacz',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Zatwierdź',
|
||||
|
@ -689,6 +731,7 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Użyj opcji poniżej, w celu nawigacji.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Czas',
|
||||
'TimestampLabelFormat' => 'Format etykiety czasu',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Wsp. X etykiety czasu',
|
||||
'TimestampLabelY' => 'Wsp. Y etykiety czasu',
|
||||
'Today' => 'Dziś',
|
||||
|
@ -735,6 +778,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parametery generowania filmu Video',
|
||||
'VideoGenSucceeded' => 'Wygenerowano pomyślnie!',
|
||||
'VideoSize' => 'Rozmiar filmu Video',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Podgląd',
|
||||
'ViewAll' => 'Pokaż wszystko',
|
||||
'ViewEvent' => 'Pokaż zdarzenie',
|
||||
|
@ -744,6 +788,7 @@ $SLANG = array(
|
|||
'Watch' => 'podgląd',
|
||||
'Web' => 'Sieć',
|
||||
'WebColour' => 'Web Colour',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Tydzień',
|
||||
'White' => 'Biel',
|
||||
'WhiteBalance' => 'Balans bieli',
|
||||
|
|
|
@ -18,6 +18,8 @@ $SLANG = array(
|
|||
'Actual' => 'Atual',
|
||||
'AddNewControl' => 'Add New Control',
|
||||
'AddNewMonitor' => 'Adicionar Monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Adicionar Usuário',
|
||||
'AddNewZone' => 'Adicionar Zona',
|
||||
'Alarm' => 'Alarme',
|
||||
|
@ -45,22 +47,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Status/Arquivamento',
|
||||
'AttrAvgScore' => 'Maior Score',
|
||||
'AttrCause' => 'Cause',
|
||||
'AttrDate' => 'Data',
|
||||
'AttrDateTime' => 'Data/Horario',
|
||||
'AttrDiskBlocks' => 'Blocos de Disco',
|
||||
'AttrDiskPercent' => 'Porcentagem de Disco',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Duração',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Imagens',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Max. Score',
|
||||
'AttrMonitorId' => 'Id do Monitor',
|
||||
'AttrMonitorName' => 'Nome do Monitor',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nome',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'Horário',
|
||||
'AttrTotalScore' => 'Score Total',
|
||||
'AttrWeekday' => 'Dia/Semana',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -93,9 +105,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -159,10 +173,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Fechar',
|
||||
'Colour' => 'Cor',
|
||||
'Command' => 'Command',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => 'Configurado para',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -220,9 +236,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Not yet, remind again in 1 week',
|
||||
'DonateYes' => 'Yes, I\'d like to donate now',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Duração',
|
||||
'Edit' => 'Editar',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Enable Alarms',
|
||||
'Enabled' => 'Habilitado',
|
||||
|
@ -239,6 +257,7 @@ $SLANG = array(
|
|||
'Events' => 'Eventos',
|
||||
'Exclude' => 'Excluir',
|
||||
'Execute' => 'Execute',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Export',
|
||||
'ExportDetails' => 'Export Event Details',
|
||||
'ExportFailed' => 'Export Failed',
|
||||
|
@ -268,8 +287,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Executar comando p/ resultados',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Enviar Mensagem dos resultados',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Px de Filtro',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Fazer upload dos resultados',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Filters',
|
||||
|
@ -294,6 +315,7 @@ $SLANG = array(
|
|||
'Function' => 'Função',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Gerar Video',
|
||||
'GeneratingVideo' => 'Gerando Video',
|
||||
'GoToZoneMinder' => 'Ir Para ZoneMinder.com',
|
||||
|
@ -314,6 +336,7 @@ $SLANG = array(
|
|||
'High' => 'Alto',
|
||||
'HighBW' => 'Alta L/B',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Hora',
|
||||
'Hue' => 'Saturação',
|
||||
'Id' => 'Id',
|
||||
|
@ -338,6 +361,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Linked Monitors',
|
||||
'List' => 'List',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Carga',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -424,6 +448,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Monitores',
|
||||
'Montage' => 'Montagem',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Mês',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -450,6 +475,7 @@ $SLANG = array(
|
|||
'Next' => 'Próx',
|
||||
'No' => 'Não',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Não há imagens gravadas neste evento',
|
||||
'NoGroup' => 'No Group',
|
||||
'NoSavedFilters' => 'SemFiltrosSalvos',
|
||||
|
@ -468,6 +494,8 @@ $SLANG = array(
|
|||
'OpGt' => 'maior que',
|
||||
'OpGtEq' => 'maior que ou igual a',
|
||||
'OpIn' => 'no set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'menor que',
|
||||
'OpLtEq' => 'menor que ou igual a',
|
||||
'OpMatches' => 'combina',
|
||||
|
@ -477,6 +505,7 @@ $SLANG = array(
|
|||
'Open' => 'Open',
|
||||
'OptionHelp' => 'OpçãoAjuda',
|
||||
'OptionRestartWarning' => 'Reinicie o Zoneminder para que as mudanças tenham efeito',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opções',
|
||||
'OrEnterNewName' => 'ou defina novo nome',
|
||||
'Order' => 'Order',
|
||||
|
@ -514,9 +543,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Vel.',
|
||||
'Real' => 'Real',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Gravar',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Referência de imagem Blend %ge',
|
||||
'Refresh' => 'Atualizar',
|
||||
'Remote' => 'Remoto',
|
||||
|
@ -532,6 +565,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Resetar contagem de eventos',
|
||||
'Restart' => 'Reiniciar',
|
||||
|
@ -550,6 +584,7 @@ $SLANG = array(
|
|||
'Save' => 'Salvar',
|
||||
'SaveAs' => 'Salvar Como',
|
||||
'SaveFilter' => 'Salvar Filtro',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Tamanho',
|
||||
'Score' => 'Score',
|
||||
'Secs' => 'Segs',
|
||||
|
@ -566,6 +601,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'MostrarJanelaDeFiltros',
|
||||
'ShowTimeline' => 'Show Timeline',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Size',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -585,6 +621,10 @@ $SLANG = array(
|
|||
'State' => 'Estado',
|
||||
'Stats' => 'Status',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Step',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -595,6 +635,8 @@ $SLANG = array(
|
|||
'Stills' => 'Imagens',
|
||||
'Stop' => 'Parar',
|
||||
'Stopped' => 'Parado',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Contínuo',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Submit',
|
||||
|
@ -614,6 +656,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'posição de etiqueta X',
|
||||
'TimestampLabelY' => 'posição de etiqueta Y',
|
||||
'Today' => 'Today',
|
||||
|
@ -660,6 +703,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parametros de geração de vídeo',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!',
|
||||
'VideoSize' => 'Tamanho do vídeo',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Ver',
|
||||
'ViewAll' => 'Ver Tudo',
|
||||
'ViewEvent' => 'View Event',
|
||||
|
@ -669,6 +713,7 @@ $SLANG = array(
|
|||
'Watch' => 'Assistir',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Web Colour',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Semana',
|
||||
'White' => 'White',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
|
|
@ -49,6 +49,8 @@ $SLANG = array(
|
|||
'Actual' => 'Real',
|
||||
'AddNewControl' => 'Adaugă control nou',
|
||||
'AddNewMonitor' => 'Adaugă monitor',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Adaugă utilizator',
|
||||
'AddNewZone' => 'Adaugă zonă',
|
||||
'Alarm' => 'Alarma',
|
||||
|
@ -76,22 +78,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Stare arhiva',
|
||||
'AttrAvgScore' => 'Cota medie',
|
||||
'AttrCause' => 'Cauza',
|
||||
'AttrDate' => 'Data',
|
||||
'AttrDateTime' => 'Data/Timp',
|
||||
'AttrDiskBlocks' => 'Disk Blocks',
|
||||
'AttrDiskPercent' => 'Procentaj disc',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Durata',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Cadre',
|
||||
'AttrId' => 'Nr.',
|
||||
'AttrMaxScore' => 'Cota max',
|
||||
'AttrMonitorId' => 'Monitor nr.',
|
||||
'AttrMonitorName' => 'Nume monitor',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Nume',
|
||||
'AttrNotes' => 'Notes',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'System Load',
|
||||
'AttrTime' => 'Time',
|
||||
'AttrTotalScore' => 'Cota total',
|
||||
'AttrWeekday' => 'Zi săpt.',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Auto Stop Timeout',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -124,9 +136,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Reference blend percentage must be a positive integer',
|
||||
'BadSectionLength' => 'Section length must be an integer of 30 or more',
|
||||
'BadSignalCheckColour' => 'Signal check colour must be a valid RGB colour string',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Stream replay buffer must be an integer of zero or more',
|
||||
'BadWarmupCount' => 'Warmup frames must be an integer of zero or more',
|
||||
'BadWebColour' => 'Web colour must be a valid web colour string',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -190,10 +204,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Choose Preset',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Închide',
|
||||
'Colour' => 'Culoare',
|
||||
'Command' => 'Comanda',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => 'Configurat pentru',
|
||||
'ConfirmDeleteEvents' => 'Are you sure you wish to delete the selected events?',
|
||||
|
@ -251,9 +267,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Not yet, remind again in 1 week',
|
||||
'DonateYes' => 'Yes, I\'d like to donate now',
|
||||
'Download' => 'Download',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Durata',
|
||||
'Edit' => 'Modific',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Enable Alarms',
|
||||
'Enabled' => 'Activ',
|
||||
|
@ -270,6 +288,7 @@ $SLANG = array(
|
|||
'Events' => 'Evenim.',
|
||||
'Exclude' => 'Exclude',
|
||||
'Execute' => 'Execute',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Export',
|
||||
'ExportDetails' => 'Export Event Details',
|
||||
'ExportFailed' => 'Export Failed',
|
||||
|
@ -299,8 +318,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Execută comanda pentru toate rezultatele',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Trimite mesaj pentru toate rezultatele',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter Px',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Încarcă toate rezultatele',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Filters',
|
||||
|
@ -325,6 +346,7 @@ $SLANG = array(
|
|||
'Function' => 'Funcţie',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'General',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Generează video',
|
||||
'GeneratingVideo' => 'Generez video',
|
||||
'GoToZoneMinder' => 'Du-te la ZoneMinder.com',
|
||||
|
@ -345,6 +367,7 @@ $SLANG = array(
|
|||
'High' => 'Mare',
|
||||
'HighBW' => 'B/W mare',
|
||||
'Home' => 'Home',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Ora',
|
||||
'Hue' => 'Nuanţă',
|
||||
'Id' => 'Nr.',
|
||||
|
@ -369,6 +392,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Linked Monitors',
|
||||
'List' => 'List',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Load',
|
||||
'Local' => 'Local',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -455,6 +479,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Monitoare',
|
||||
'Montage' => 'Montage',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Luna',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -481,6 +506,7 @@ $SLANG = array(
|
|||
'Next' => 'Urmator',
|
||||
'No' => 'Nu',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Nu exista cadre inregistrate pentru acest eveniment.',
|
||||
'NoGroup' => 'No Group',
|
||||
'NoSavedFilters' => 'LipsaFiltruSalvat',
|
||||
|
@ -499,6 +525,8 @@ $SLANG = array(
|
|||
'OpGt' => 'mai mare ca',
|
||||
'OpGtEq' => 'mai mare sau egal cu',
|
||||
'OpIn' => 'in set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'mai mic decât',
|
||||
'OpLtEq' => 'mai mic sau egal cu',
|
||||
'OpMatches' => 'matches',
|
||||
|
@ -508,6 +536,7 @@ $SLANG = array(
|
|||
'Open' => 'Deschide',
|
||||
'OptionHelp' => 'OptionHelp',
|
||||
'OptionRestartWarning' => 'Aceste schimbari nu se aplica in timpul rularii.\n Dupa ce ati terminat setarile va rugam reporniti ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Opţiuni',
|
||||
'OrEnterNewName' => 'sau denumire nouă',
|
||||
'Order' => 'Order',
|
||||
|
@ -545,9 +574,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protocol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Rate',
|
||||
'Real' => 'Real',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Înregistrare',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Combinare imagine referinta(%)',
|
||||
'Refresh' => 'Actualizează',
|
||||
'Remote' => 'Remote',
|
||||
|
@ -563,6 +596,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'All Events',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Single Event',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Reset',
|
||||
'ResetEventCounts' => 'Reset Event Counts',
|
||||
'Restart' => 'Reporneşte',
|
||||
|
@ -581,6 +615,7 @@ $SLANG = array(
|
|||
'Save' => 'Salvez',
|
||||
'SaveAs' => 'Salvează ca',
|
||||
'SaveFilter' => 'Salvează filtru',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Scara',
|
||||
'Score' => 'Cota',
|
||||
'Secs' => 'Sec',
|
||||
|
@ -597,6 +632,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Fereastra filtre',
|
||||
'ShowTimeline' => 'Show Timeline',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Size',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -616,6 +652,10 @@ $SLANG = array(
|
|||
'State' => 'Stare',
|
||||
'Stats' => 'Statistici',
|
||||
'Status' => 'Stare',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Step',
|
||||
'StepBack' => 'Step Back',
|
||||
'StepForward' => 'Step Forward',
|
||||
|
@ -626,6 +666,8 @@ $SLANG = array(
|
|||
'Stills' => 'Statice',
|
||||
'Stop' => 'Opreşte',
|
||||
'Stopped' => 'Oprit',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Flux',
|
||||
'StreamReplayBuffer' => 'Stream Replay Image Buffer',
|
||||
'Submit' => 'Trimite',
|
||||
|
@ -645,6 +687,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Format timp eticheta X',
|
||||
'TimestampLabelY' => 'Format timp eticheta Y',
|
||||
'Today' => 'Azi',
|
||||
|
@ -691,6 +734,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Parametrii generare video',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!',
|
||||
'VideoSize' => 'Mărime video',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Vizual',
|
||||
'ViewAll' => 'Vizual. tot',
|
||||
'ViewEvent' => 'View Event',
|
||||
|
@ -700,6 +744,7 @@ $SLANG = array(
|
|||
'Watch' => 'Watch',
|
||||
'Web' => 'Web',
|
||||
'WebColour' => 'Web Colour',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Săpt.',
|
||||
'White' => 'Alb',
|
||||
'WhiteBalance' => 'Balans alb',
|
||||
|
|
|
@ -76,8 +76,11 @@ $SLANG = array(
|
|||
'32BitColour' => '32 битный цвет', // Added - 2011-06-15
|
||||
'8BitGrey' => '256 оттенков серого',
|
||||
'Action' => 'Действие',
|
||||
'Actual' => 'Actual', // Added - 2018-08-30
|
||||
'AddNewControl' => 'Добавить новый',
|
||||
'AddNewMonitor' => 'Добавить монитор',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Добавить пользователя',
|
||||
'AddNewZone' => 'Добавить зону',
|
||||
'Alarm' => 'Тревога',
|
||||
|
@ -89,7 +92,6 @@ $SLANG = array(
|
|||
'AlarmPx' => 'Пкс трев.',
|
||||
'AlarmRGBUnset' => 'You must set an alarm RGB colour',
|
||||
'AlarmRefImageBlendPct'=> 'Смешение опорного кадра тревоги, %', // Added - 2015-04-18
|
||||
'AlmRefImageBlendPct' => 'Смешение опорного кадра тревоги, %',
|
||||
'Alert' => 'Настороже',
|
||||
'All' => 'Все',
|
||||
'AnalysisFPS' => 'Частота анализа (к/с)', // Added - 2015-07-22
|
||||
|
@ -106,24 +108,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Статус архивации',
|
||||
'AttrAvgScore' => 'Сред. оценка',
|
||||
'AttrCause' => 'Причина',
|
||||
'AttrDate' => 'Дата',
|
||||
'AttrDateTime' => 'Дата/Время',
|
||||
'AttrDiskBlocks' => 'Диск, блоки',
|
||||
'AttrDiskPercent' => 'Диск, проценты',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Длительность',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Кол-во кадров',
|
||||
'AttrId' => 'ИД',
|
||||
'AttrMaxScore' => 'Макс. оценка',
|
||||
'AttrMonitorId' => 'ИД Монитора',
|
||||
'AttrMonitorName' => 'Название Монитора',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Имя',
|
||||
'AttrNotes' => 'Примечание',
|
||||
'AttrServerId' => 'ИД сервера',
|
||||
'AttrServerName' => 'Имя сервера',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Нагрузка проц.',
|
||||
'AttrTime' => 'Время',
|
||||
'AttrTotalScore' => 'Сумм. оценка',
|
||||
'AttrWeekday' => 'День недели',
|
||||
'Auto' => 'Auto',
|
||||
'AutoStopTimeout' => 'Тайм-аут автоостановки',
|
||||
'Available' => 'Доступно', // Added - 2009-03-31
|
||||
|
@ -156,9 +166,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Смешение опорного кадра должно быть положительным и целочисленным',
|
||||
'BadSectionLength' => 'Длина секции должна быть целочисленной и большей либо равной тридцати',
|
||||
'BadSignalCheckColour' => 'Цвет проверки сигнала должен быть правильной строкой формата RGB',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Буфер потока повторного воспроизведения должен быть целочисленным и большим либо равным нулю',
|
||||
'BadWarmupCount' => 'Кол-во кадров разогрева должно быть целочисленным и большим либо равным нулю',
|
||||
'BadWebColour' => 'Цвет отметки должен быть правильным Web-цветом',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'BadWidth' => 'Неправильная ширина',
|
||||
'Bandwidth' => 'канал',
|
||||
'BandwidthHead' => 'канал', // This is the end of the bandwidth status on the top of the console, different in many language due to phrasing;
|
||||
|
@ -222,10 +234,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Выберите предустановку',
|
||||
'Clear' => 'Очистить', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Закрыть',
|
||||
'Colour' => 'Цвет',
|
||||
'Command' => 'Command',
|
||||
'Component' => 'Компонент', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Config',
|
||||
'ConfiguredFor' => 'настроен на',
|
||||
'ConfirmDeleteEvents' => 'Вы действительно хотите удалить выбранные события?',
|
||||
|
@ -283,9 +297,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Нет, не сейчас, напомнить через неделю',
|
||||
'DonateYes' => 'Да, я хотел бы сделать пожертвование',
|
||||
'Download' => 'Скачать',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Длительность',
|
||||
'Edit' => 'Редактирование',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'Email',
|
||||
'EnableAlarms' => 'Разрешить тревогу',
|
||||
'Enabled' => 'Включен',
|
||||
|
@ -302,6 +318,7 @@ $SLANG = array(
|
|||
'Events' => 'События',
|
||||
'Exclude' => 'Исключить',
|
||||
'Execute' => 'Выполнить',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Экспорт',
|
||||
'ExportDetails' => 'Экспортировать описание события',
|
||||
'ExportFailed' => 'Ошибка экспорта',
|
||||
|
@ -331,8 +348,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Выполнить команду над выбранным',
|
||||
'FilterLog' => 'Фильтр лога', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Message details of all matches',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Пкс фильтра',
|
||||
'FilterUnset' => 'You must specify a filter width and height',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Upload all matches',
|
||||
'FilterVideoEvents' => 'Create video for all matches',
|
||||
'Filters' => 'Фильтры',
|
||||
|
@ -357,6 +376,7 @@ $SLANG = array(
|
|||
'Function' => 'Функция',
|
||||
'Gain' => 'Gain',
|
||||
'General' => 'Основные',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Генерировать видео',
|
||||
'GeneratingVideo' => 'Генерируется видео',
|
||||
'GoToZoneMinder' => 'Перейти на ZoneMinder.com',
|
||||
|
@ -377,6 +397,7 @@ $SLANG = array(
|
|||
'High' => 'широкий',
|
||||
'HighBW' => 'Широкий канал',
|
||||
'Home' => 'Домой',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Час',
|
||||
'Hue' => 'Оттенок',
|
||||
'Id' => 'ИД',
|
||||
|
@ -401,6 +422,7 @@ $SLANG = array(
|
|||
'Line' => 'Строка', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Привязанные мониторы',
|
||||
'List' => 'Список',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Нагрузка',
|
||||
'Local' => 'Локальный',
|
||||
'Log' => 'Лог', // Added - 2011-06-16;
|
||||
|
@ -487,6 +509,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'В этом списке показаны найденные аналоговые и сетевые камеры, как уже заведенные, так и доступные для выбора.<br/><br/>Выберите нужную из списка ниже.<br/><br/>Обратите внимание, что не все камеры могут быть найдены, и что выбор камеры может переписать настройки определенные для этого монитора.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Мониторы',
|
||||
'Montage' => 'Монтаж',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Месяц',
|
||||
'More' => 'Еще', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Кол-во пропуск. кадров движения',
|
||||
|
@ -513,6 +536,7 @@ $SLANG = array(
|
|||
'Next' => 'След.',
|
||||
'No' => 'Нет',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Это событие не содержит кадров',
|
||||
'NoGroup' => 'No Group',
|
||||
'NoSavedFilters' => 'нет сохраненных фильтров',
|
||||
|
@ -531,6 +555,8 @@ $SLANG = array(
|
|||
'OpGt' => 'больше',
|
||||
'OpGtEq' => 'больше либо равно',
|
||||
'OpIn' => 'в списке',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'меньше',
|
||||
'OpLtEq' => 'меньше или равно',
|
||||
'OpMatches' => 'совпадает',
|
||||
|
@ -540,6 +566,7 @@ $SLANG = array(
|
|||
'Open' => 'Открыть',
|
||||
'OptionHelp' => 'Справка',
|
||||
'OptionRestartWarning' => 'Эти изменения подействуют только после перезапуска программы.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Опции',
|
||||
'OrEnterNewName' => 'или введите новое имя',
|
||||
'Order' => 'Сортировка',
|
||||
|
@ -556,7 +583,6 @@ $SLANG = array(
|
|||
'PasswordsDifferent' => 'Пароли не совпадают',
|
||||
'Paths' => 'Пути',
|
||||
'Pause' => 'Пауза',
|
||||
'Paused' => 'Пауза',
|
||||
'Phone' => 'Phone',
|
||||
'PhoneBW' => 'Телефонная линия',
|
||||
'Pid' => 'PID', // Added - 2011-06-16
|
||||
|
@ -578,9 +604,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'В этом списке показаны существующие профили потока выбранной камеры.<br/><br/>Выберите нужный из списка ниже.<br/><br/>Обратите внимание, что ZoneMinder не может добавить дополнительный профиль, и что выбор профиля может переписать настройки определенные для этого монитора.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Прогресс', // Added - 2015-04-18
|
||||
'Protocol' => 'Протокол',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Скорость',
|
||||
'Real' => 'Реальная',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Record',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Смешение опорного кадра, %',
|
||||
'Refresh' => 'Обновить',
|
||||
'Remote' => 'Удаленный',
|
||||
|
@ -596,6 +626,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Все события',
|
||||
'ReplayGapless' => 'События подряд',
|
||||
'ReplaySingle' => 'Одно событие',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Сбросить',
|
||||
'ResetEventCounts' => 'Обнулить счетчик событий',
|
||||
'Restart' => 'Перезапустить',
|
||||
|
@ -614,6 +645,7 @@ $SLANG = array(
|
|||
'Save' => 'Сохранить',
|
||||
'SaveAs' => 'Сохранить как',
|
||||
'SaveFilter' => 'Сохранить фильтр',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Масштаб',
|
||||
'Score' => 'Оценка',
|
||||
'Secs' => 'Сек.',
|
||||
|
@ -623,7 +655,6 @@ $SLANG = array(
|
|||
'SelectLog' => 'Выберите лог', // Added - 2011-06-17
|
||||
'SelectMonitors' => 'Select Monitors',
|
||||
'SelfIntersecting' => 'Polygon edges must not intersect',
|
||||
'Server' => 'Сервер',
|
||||
'Set' => 'Set',
|
||||
'SetNewBandwidth' => 'Установка новой ширина канала',
|
||||
'SetPreset' => 'Set Preset',
|
||||
|
@ -631,6 +662,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Показать окно фильтра',
|
||||
'ShowTimeline' => 'Показать график',
|
||||
'SignalCheckColour' => 'Цвет проверки сигнала',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Size',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Sleep',
|
||||
|
@ -650,6 +682,10 @@ $SLANG = array(
|
|||
'State' => 'Состояние',
|
||||
'Stats' => 'Статистика',
|
||||
'Status' => 'Статус',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Шаг',
|
||||
'StepBack' => 'Кадр назад',
|
||||
'StepForward' => 'Кадр вперед',
|
||||
|
@ -660,6 +696,8 @@ $SLANG = array(
|
|||
'Stills' => 'Стоп-кадры',
|
||||
'Stop' => 'Остановить',
|
||||
'Stopped' => 'Остановлен',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Поток',
|
||||
'StreamReplayBuffer' => 'Буфер потока повторного воспр.',
|
||||
'Submit' => 'Применить',
|
||||
|
@ -679,9 +717,9 @@ $SLANG = array(
|
|||
'TimelineTip4' => 'Используйте кнопки снизу для отдаления и перемещения по временной шкале.', // Added 2013.08.15.
|
||||
'Timestamp' => 'Метка времени',
|
||||
'TimestampLabelFormat' => 'Формат метки',
|
||||
'TimestampLabelSize' => 'Размер метки',
|
||||
'TimestampLabelX' => 'X-координата метки',
|
||||
'TimestampLabelY' => 'Y-координата метки',
|
||||
'TimestampLabelSize' => 'Размер метки',
|
||||
'Today' => 'Сегодня',
|
||||
'Tools' => 'Инструменты',
|
||||
'Total' => 'Всего', // Added - 2011-06-16
|
||||
|
@ -726,6 +764,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Параметры генерации видео',
|
||||
'VideoGenSucceeded' => 'Video Generation Succeeded!',
|
||||
'VideoSize' => 'Размер изображения',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Просмотр',
|
||||
'ViewAll' => 'Просм. все',
|
||||
'ViewEvent' => 'View Event',
|
||||
|
@ -735,6 +774,7 @@ $SLANG = array(
|
|||
'Watch' => 'Watch',
|
||||
'Web' => 'Интерфейс',
|
||||
'WebColour' => 'Цвет отметки',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Неделя',
|
||||
'White' => 'Бал. белого',
|
||||
'WhiteBalance' => 'White Balance',
|
||||
|
|
|
@ -79,6 +79,8 @@ $SLANG = array(
|
|||
'Actual' => 'Verklig',
|
||||
'AddNewControl' => 'Ny kontroll',
|
||||
'AddNewMonitor' => 'Ny bevakare',
|
||||
'AddNewServer' => 'Add New Server', // Added - 2018-08-30
|
||||
'AddNewStorage' => 'Add New Storage', // Added - 2018-08-30
|
||||
'AddNewUser' => 'Ny användare',
|
||||
'AddNewZone' => 'Ny zon',
|
||||
'Alarm' => 'Larm',
|
||||
|
@ -106,22 +108,32 @@ $SLANG = array(
|
|||
'AttrArchiveStatus' => 'Arkivstatus',
|
||||
'AttrAvgScore' => 'Ung. värde',
|
||||
'AttrCause' => 'Orsak',
|
||||
'AttrDate' => 'Datum',
|
||||
'AttrDateTime' => 'Datum/Tid',
|
||||
'AttrDiskBlocks' => 'Diskblock',
|
||||
'AttrDiskPercent' => 'Diskprocent',
|
||||
'AttrDiskSpace' => 'Disk Space', // Added - 2018-08-30
|
||||
'AttrDuration' => 'Längd',
|
||||
'AttrEndDate' => 'End Date', // Added - 2018-08-30
|
||||
'AttrEndDateTime' => 'End Date/Time', // Added - 2018-08-30
|
||||
'AttrEndTime' => 'End Time', // Added - 2018-08-30
|
||||
'AttrEndWeekday' => 'End Weekday', // Added - 2018-08-30
|
||||
'AttrFilterServer' => 'Server Filter is Running On', // Added - 2018-08-30
|
||||
'AttrFrames' => 'Ramar',
|
||||
'AttrId' => 'Id',
|
||||
'AttrMaxScore' => 'Max. värde',
|
||||
'AttrMonitorId' => 'Bevakningsid',
|
||||
'AttrMonitorName' => 'Bevakningsnamn',
|
||||
'AttrMonitorServer' => 'Server Monitor is Running On', // Added - 2018-08-30
|
||||
'AttrName' => 'Namn',
|
||||
'AttrNotes' => 'Notering',
|
||||
'AttrStartDate' => 'Start Date', // Added - 2018-08-30
|
||||
'AttrStartDateTime' => 'Start Date/Time', // Added - 2018-08-30
|
||||
'AttrStartTime' => 'Start Time', // Added - 2018-08-30
|
||||
'AttrStartWeekday' => 'Start Weekday', // Added - 2018-08-30
|
||||
'AttrStateId' => 'Run State', // Added - 2018-08-30
|
||||
'AttrStorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'AttrStorageServer' => 'Server Hosting Storage', // Added - 2018-08-30
|
||||
'AttrSystemLoad' => 'Systemlast',
|
||||
'AttrTime' => 'Tid',
|
||||
'AttrTotalScore' => 'Totalvärde',
|
||||
'AttrWeekday' => 'Veckodag',
|
||||
'Auto' => 'Automatik',
|
||||
'AutoStopTimeout' => 'Tidsutlösning för automatstop',
|
||||
'Available' => 'Available', // Added - 2009-03-31
|
||||
|
@ -154,9 +166,11 @@ $SLANG = array(
|
|||
'BadRefBlendPerc' => 'Mixprocenten för referensen måste hara ett positivt heltal',
|
||||
'BadSectionLength' => 'Sektionslängden måste vara ett heltal på minst 30 eller högre',
|
||||
'BadSignalCheckColour' => 'Kontrollfärgen på signalen måste vara en giltig RGB färgsträng',
|
||||
'BadSourceType' => 'Source Type \"Web Site\" requires the Function to be set to \"Monitor\"', // Added - 2018-08-30
|
||||
'BadStreamReplayBuffer'=> 'Buffern för strömmande uppspelning måste vara ett heltal på 0 eller högre',
|
||||
'BadWarmupCount' => 'Uppvärmingsramen måste vara ett heltal på 0 eller högre',
|
||||
'BadWebColour' => 'Webbfärgen måste vara en giltig sträng för webbfärg',
|
||||
'BadWebSitePath' => 'Please enter a complete website url, including the http:// or https:// prefix.', // Added - 2018-08-30
|
||||
'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
|
||||
|
@ -220,10 +234,12 @@ $SLANG = array(
|
|||
'ChooseLogSelection' => 'Choose a log selection', // Added - 2011-06-17
|
||||
'ChoosePreset' => 'Välj standard',
|
||||
'Clear' => 'Clear', // Added - 2011-06-16
|
||||
'CloneMonitor' => 'Clone', // Added - 2018-08-30
|
||||
'Close' => 'Stäng',
|
||||
'Colour' => 'Färg',
|
||||
'Command' => 'Kommando',
|
||||
'Component' => 'Component', // Added - 2011-06-16
|
||||
'ConcurrentFilter' => 'Run filter concurrently', // Added - 2018-08-30
|
||||
'Config' => 'Konfigurera',
|
||||
'ConfiguredFor' => 'Konfigurerad för',
|
||||
'ConfirmDeleteEvents' => 'Är du säker på att du vill ta bort dom valda händelserna?',
|
||||
|
@ -281,9 +297,11 @@ $SLANG = array(
|
|||
'DonateRemindWeek' => 'Inte än, påminn om 1 vecka',
|
||||
'DonateYes' => 'Ja, jag vill gärna donera nu',
|
||||
'Download' => 'Ladda ner',
|
||||
'DownloadVideo' => 'Download Video', // Added - 2018-08-30
|
||||
'DuplicateMonitorName' => 'Duplicate Monitor Name', // Added - 2009-03-31
|
||||
'Duration' => 'Längd',
|
||||
'Edit' => 'Redigera',
|
||||
'EditLayout' => 'Edit Layout', // Added - 2018-08-30
|
||||
'Email' => 'E-post',
|
||||
'EnableAlarms' => 'Aktivera larm',
|
||||
'Enabled' => 'Aktiverad',
|
||||
|
@ -300,6 +318,7 @@ $SLANG = array(
|
|||
'Events' => 'Händelser',
|
||||
'Exclude' => 'Exkludera',
|
||||
'Execute' => 'Utför',
|
||||
'Exif' => 'Embed EXIF data into image', // Added - 2018-08-30
|
||||
'Export' => 'Exportera',
|
||||
'ExportDetails' => 'Exportera händelsedetaljer',
|
||||
'ExportFailed' => 'Exporten misslyckades',
|
||||
|
@ -329,8 +348,10 @@ $SLANG = array(
|
|||
'FilterExecuteEvents' => 'Utför kommando på alla träffar',
|
||||
'FilterLog' => 'Filter log', // Added - 2015-04-18
|
||||
'FilterMessageEvents' => 'Meddela detaljer om alla träffar',
|
||||
'FilterMoveEvents' => 'Move all matches', // Added - 2018-08-30
|
||||
'FilterPx' => 'Filter Px',
|
||||
'FilterUnset' => 'Du måste specificera filtrets bredd och höjd',
|
||||
'FilterUpdateDiskSpace'=> 'Update used disk space', // Added - 2018-08-30
|
||||
'FilterUploadEvents' => 'Ladda upp alla träffar',
|
||||
'FilterVideoEvents' => 'Skapa video för alla träffar',
|
||||
'Filters' => 'Filter',
|
||||
|
@ -355,6 +376,7 @@ $SLANG = array(
|
|||
'Function' => 'Funktion',
|
||||
'Gain' => 'Nivå',
|
||||
'General' => 'Generell',
|
||||
'GenerateDownload' => 'Generate Download', // Added - 2018-08-30
|
||||
'GenerateVideo' => 'Skapa video',
|
||||
'GeneratingVideo' => 'Skapar video',
|
||||
'GoToZoneMinder' => 'Gå till ZoneMinder.com',
|
||||
|
@ -375,6 +397,7 @@ $SLANG = array(
|
|||
'High' => 'Hög',
|
||||
'HighBW' => 'Hög bandbredd',
|
||||
'Home' => 'Hem',
|
||||
'Hostname' => 'Hostname', // Added - 2018-08-30
|
||||
'Hour' => 'Timme',
|
||||
'Hue' => 'Hue',
|
||||
'Id' => 'nr',
|
||||
|
@ -399,6 +422,7 @@ $SLANG = array(
|
|||
'Line' => 'Line', // Added - 2011-06-16
|
||||
'LinkedMonitors' => 'Länkade övervakare',
|
||||
'List' => 'Lista',
|
||||
'ListMatches' => 'List Matches', // Added - 2018-08-30
|
||||
'Load' => 'Belastning',
|
||||
'Local' => 'Lokal',
|
||||
'Log' => 'Log', // Added - 2011-06-16
|
||||
|
@ -485,6 +509,7 @@ $SLANG = array(
|
|||
'MonitorProbeIntro' => 'The list below shows detected analog and network cameras and whether they are already being used or available for selection.<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that not all cameras may be detected and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2009-03-31
|
||||
'Monitors' => 'Bevakare',
|
||||
'Montage' => 'Montera',
|
||||
'MontageReview' => 'Montage Review', // Added - 2018-08-30
|
||||
'Month' => 'Månad',
|
||||
'More' => 'More', // Added - 2011-06-16
|
||||
'MotionFrameSkip' => 'Motion Frame Skip',
|
||||
|
@ -511,6 +536,7 @@ $SLANG = array(
|
|||
'Next' => 'Nästa',
|
||||
'No' => 'Nej',
|
||||
'NoDetectedCameras' => 'No Detected Cameras', // Added - 2009-03-31
|
||||
'NoDetectedProfiles' => 'No Detected Profiles', // Added - 2018-08-30
|
||||
'NoFramesRecorded' => 'Det finns inga ramar inspelade för denna händelse',
|
||||
'NoGroup' => 'Ingen grupp',
|
||||
'NoSavedFilters' => 'Inga sparade filter',
|
||||
|
@ -529,6 +555,8 @@ $SLANG = array(
|
|||
'OpGt' => 'större än',
|
||||
'OpGtEq' => 'större än eller lika med',
|
||||
'OpIn' => 'in set',
|
||||
'OpIs' => 'is', // Added - 2018-08-30
|
||||
'OpIsNot' => 'is not', // Added - 2018-08-30
|
||||
'OpLt' => 'mindre än',
|
||||
'OpLtEq' => 'mindre än eller lika med',
|
||||
'OpMatches' => 'matchar',
|
||||
|
@ -538,6 +566,7 @@ $SLANG = array(
|
|||
'Open' => 'Öppna',
|
||||
'OptionHelp' => 'Optionhjälp',
|
||||
'OptionRestartWarning' => 'Dessa ändringar kommer inte att vara implementerade\nnär systemet körs. När du är klar starta om\n ZoneMinder.',
|
||||
'OptionalEncoderParam' => 'Optional Encoder Parameters', // Added - 2018-08-30
|
||||
'Options' => 'Alternativ',
|
||||
'OrEnterNewName' => 'eller skriv in nytt namn',
|
||||
'Order' => 'Sortera',
|
||||
|
@ -575,9 +604,13 @@ $SLANG = array(
|
|||
'ProfileProbeIntro' => 'The list below shows the existing stream profiles of the selected camera .<br/><br/>Select the desired entry from the list below.<br/><br/>Please note that ZoneMinder cannot configure additional profiles and that choosing a camera here may overwrite any values you already have configured for the current monitor.<br/><br/>', // Added - 2015-04-18
|
||||
'Progress' => 'Progress', // Added - 2015-04-18
|
||||
'Protocol' => 'Protokol',
|
||||
'RTSPDescribe' => 'Use RTSP Response Media URL', // Added - 2018-08-30
|
||||
'RTSPTransport' => 'RTSP Transport Protocol', // Added - 2018-08-30
|
||||
'Rate' => 'Hastighet',
|
||||
'Real' => 'Verklig',
|
||||
'RecaptchaWarning' => 'Your reCaptcha secret key is invalid. Please correct it, or reCaptcha will not work', // Added - 2018-08-30
|
||||
'Record' => 'Spela in',
|
||||
'RecordAudio' => 'Whether to store the audio stream when saving an event.', // Added - 2018-08-30
|
||||
'RefImageBlendPct' => 'Reference Image Blend %ge',
|
||||
'Refresh' => 'Uppdatera',
|
||||
'Remote' => 'Fjärr',
|
||||
|
@ -593,6 +626,7 @@ $SLANG = array(
|
|||
'ReplayAll' => 'Alla händelser',
|
||||
'ReplayGapless' => 'Gapless Events',
|
||||
'ReplaySingle' => 'Ensam händelse',
|
||||
'ReportEventAudit' => 'Audit Events Report', // Added - 2018-08-30
|
||||
'Reset' => 'Återställ',
|
||||
'ResetEventCounts' => 'Återställ händelseräknare',
|
||||
'Restart' => 'Återstart',
|
||||
|
@ -611,6 +645,7 @@ $SLANG = array(
|
|||
'Save' => 'Spara',
|
||||
'SaveAs' => 'Spara som',
|
||||
'SaveFilter' => 'Spara filter',
|
||||
'SaveJPEGs' => 'Save JPEGs', // Added - 2018-08-30
|
||||
'Scale' => 'Skala',
|
||||
'Score' => 'Resultat',
|
||||
'Secs' => 'Sek',
|
||||
|
@ -627,6 +662,7 @@ $SLANG = array(
|
|||
'ShowFilterWindow' => 'Visa fönsterfilter',
|
||||
'ShowTimeline' => 'Visa tidslinje',
|
||||
'SignalCheckColour' => 'Signal Check Colour',
|
||||
'SignalCheckPoints' => 'Signal Check Points', // Added - 2018-08-30
|
||||
'Size' => 'Storlek',
|
||||
'SkinDescription' => 'Change the default skin for this computer', // Added - 2011-01-30
|
||||
'Sleep' => 'Vila',
|
||||
|
@ -646,6 +682,10 @@ $SLANG = array(
|
|||
'State' => 'Läge',
|
||||
'Stats' => 'Statistik',
|
||||
'Status' => 'Status',
|
||||
'StatusConnected' => 'Capturing', // Added - 2018-08-30
|
||||
'StatusNotRunning' => 'Not Running', // Added - 2018-08-30
|
||||
'StatusRunning' => 'Not Capturing', // Added - 2018-08-30
|
||||
'StatusUnknown' => 'Unknown', // Added - 2018-08-30
|
||||
'Step' => 'Steg',
|
||||
'StepBack' => 'Stepga bakåt',
|
||||
'StepForward' => 'Stega framåt',
|
||||
|
@ -656,6 +696,8 @@ $SLANG = array(
|
|||
'Stills' => 'Stillbilder',
|
||||
'Stop' => 'Stopp',
|
||||
'Stopped' => 'Stoppad',
|
||||
'StorageArea' => 'Storage Area', // Added - 2018-08-30
|
||||
'StorageScheme' => 'Scheme', // Added - 2018-08-30
|
||||
'Stream' => 'Strömmande',
|
||||
'StreamReplayBuffer' => 'Buffert för strömmande uppspelning',
|
||||
'Submit' => 'Skicka',
|
||||
|
@ -675,6 +717,7 @@ $SLANG = array(
|
|||
'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',
|
||||
'TimestampLabelSize' => 'Font Size', // Added - 2018-08-30
|
||||
'TimestampLabelX' => 'Värde på tidsstämpel X',
|
||||
'TimestampLabelY' => 'Värde på tidsstämpel Y',
|
||||
'Today' => 'Idag',
|
||||
|
@ -721,6 +764,7 @@ $SLANG = array(
|
|||
'VideoGenParms' => 'Inställningar för videogenerering',
|
||||
'VideoGenSucceeded' => 'Videogenereringen lyckades!',
|
||||
'VideoSize' => 'Videostorlek',
|
||||
'VideoWriter' => 'Video Writer', // Added - 2018-08-30
|
||||
'View' => 'Visa',
|
||||
'ViewAll' => 'Visa alla',
|
||||
'ViewEvent' => 'Visa händelse',
|
||||
|
@ -730,6 +774,7 @@ $SLANG = array(
|
|||
'Watch' => 'Se',
|
||||
'Web' => 'Webb',
|
||||
'WebColour' => 'Webbfärg',
|
||||
'WebSiteUrl' => 'Website URL', // Added - 2018-08-30
|
||||
'Week' => 'Vecka',
|
||||
'White' => 'Vit',
|
||||
'WhiteBalance' => 'Vitbalans',
|
||||
|
|
|
@ -119,6 +119,15 @@ echo output_link_if_exists( array(
|
|||
<script src="skins/<?php echo $skin; ?>/js/chosen/chosen.jquery.min.js"></script>
|
||||
<script src="skins/<?php echo $skin; ?>/js/dateTimePicker/jquery-ui-timepicker-addon.js"></script>
|
||||
|
||||
<script>
|
||||
jQuery(document).ready(function(){
|
||||
jQuery("#flip").click(function(){
|
||||
jQuery("#panel").slideToggle("slow");
|
||||
jQuery("#flip").toggleClass('glyphicon-menu-down').toggleClass('glyphicon-menu-up');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<script>
|
||||
//<![CDATA[
|
||||
<!--
|
||||
|
@ -288,6 +297,7 @@ if (isset($_REQUEST['filter']['Query']['terms']['attr'])) {
|
|||
}
|
||||
?>
|
||||
<li><a href="?view=report_event_audit"<?php echo $view=='report_event_audit'?' class="selected"':''?>><?php echo translate('ReportEventAudit') ?></a></li>
|
||||
<li><a href="#"><span id="flip" class="glyphicon glyphicon-menu-up pull-right"></span></a></li>
|
||||
</ul>
|
||||
<?php } // end if canView('Monitors') ?>
|
||||
|
||||
|
@ -305,6 +315,7 @@ if (isset($_REQUEST['filter']['Query']['terms']['attr'])) {
|
|||
</div>
|
||||
</div><!-- End .navbar-collapse -->
|
||||
</div> <!-- End .container-fluid -->
|
||||
<div id="panel">
|
||||
<?php
|
||||
}//end reload null. Runs on full page load
|
||||
|
||||
|
@ -364,6 +375,7 @@ if ($reload == 'reload') ob_start();
|
|||
if ($reload == 'reload') return( ob_get_clean() );
|
||||
} // end if (!ZM_OPT_USE_AUTH) or $user )
|
||||
?>
|
||||
</div>
|
||||
</div><!-- End .navbar .navbar-default -->
|
||||
<?php
|
||||
return( ob_get_clean() );
|
||||
|
|
|
@ -1001,9 +1001,6 @@ function initPage() {
|
|||
nearEventsQuery(eventData.Id);
|
||||
initialAlarmCues(eventData.Id); //call ajax+renderAlarmCues
|
||||
if (scale == "auto") changeScale();
|
||||
if (window.history.length == 1) {
|
||||
$j('#closeWindow').html('');
|
||||
}
|
||||
}
|
||||
|
||||
// Kick everything off
|
||||
|
|
|
@ -395,6 +395,14 @@ function reloadWebSite(ndx) {
|
|||
|
||||
var monitors = new Array();
|
||||
function initPage() {
|
||||
|
||||
jQuery(document).ready(function(){
|
||||
jQuery("#hdrbutton").click(function(){
|
||||
jQuery("#flipMontageHeader").slideToggle("slow");
|
||||
jQuery("#hdrbutton").toggleClass('glyphicon-menu-down').toggleClass('glyphicon-menu-up');
|
||||
});
|
||||
});
|
||||
|
||||
for ( var i = 0; i < monitorData.length; i++ ) {
|
||||
monitors[i] = new Monitor(monitorData[i]);
|
||||
var delay = Math.round( (Math.random()+0.5)*statusRefreshTimeout );
|
||||
|
|
|
@ -869,6 +869,14 @@ function changeDateTime(e) {
|
|||
// >>>>>>>>> Initialization that runs on window load by being at the bottom
|
||||
|
||||
function initPage() {
|
||||
|
||||
jQuery(document).ready(function(){
|
||||
jQuery("#hdrbutton").click(function(){
|
||||
jQuery("#flipMontageHeader").slideToggle("slow");
|
||||
jQuery("#hdrbutton").toggleClass('glyphicon-menu-down').toggleClass('glyphicon-menu-up');
|
||||
});
|
||||
});
|
||||
|
||||
for ( var i = 0, len = monitorPtr.length; i < len; i += 1 ) {
|
||||
var monId = monitorPtr[i];
|
||||
if ( ! monId ) continue;
|
||||
|
|
|
@ -119,11 +119,11 @@ echo " };\n";
|
|||
} // end if initialmodeislive
|
||||
|
||||
echo "var Storage = [];\n";
|
||||
foreach ( Storage::find_all() as $Storage ) {
|
||||
foreach ( Storage::find() as $Storage ) {
|
||||
echo 'Storage[' . $Storage->Id() . '] = ' . json_encode($Storage). ";\n";
|
||||
}
|
||||
echo "\nvar Servers = [];\n";
|
||||
foreach ( Server::find_all() as $Server ) {
|
||||
foreach ( Server::find() as $Server ) {
|
||||
echo 'Servers[' . $Server->Id() . '] = ' . json_encode($Server). ";\n";
|
||||
}
|
||||
echo '
|
||||
|
|
|
@ -493,11 +493,11 @@ function getEventCmdResponse( respObj, respText ) {
|
|||
|
||||
var cells = row.getElements( 'td' );
|
||||
|
||||
var link = new Element( 'a', { 'href': '#', 'events': { 'click': createEventPopup.pass( [ event.Id, '&trms=1&attr1=MonitorId&op1=%3d&val1='+monitorId+'&page=1&popup=1', event.Width, event.Height ] ) } });
|
||||
var link = new Element( 'a', { 'href': '#', 'events': { 'click': createEventPopup.pass( [ event.Id, '&terms=1&attr1=MonitorId&op1=%3d&val1='+monitorId+'&page=1&popup=1', event.Width, event.Height ] ) } });
|
||||
link.set( 'text', event.Id );
|
||||
link.inject( row.getElement( 'td.colId' ) );
|
||||
|
||||
link = new Element( 'a', { 'href': '#', 'events': { 'click': createEventPopup.pass( [ event.Id, '&trms=1&attr1=MonitorId&op1=%3d&val1='+monitorId+'&page=1&popup=1', event.Width, event.Height ] ) } });
|
||||
link = new Element( 'a', { 'href': '#', 'events': { 'click': createEventPopup.pass( [ event.Id, '&terms=1&attr1=MonitorId&op1=%3d&val1='+monitorId+'&page=1&popup=1', event.Width, event.Height ] ) } });
|
||||
link.set( 'text', event.Name );
|
||||
link.inject( row.getElement( 'td.colName' ) );
|
||||
|
||||
|
|
|
@ -134,8 +134,10 @@ xhtmlHeaders(__FILE__, translate('Montage'));
|
|||
<body>
|
||||
<div id="page">
|
||||
<?php echo getNavBarHTML() ?>
|
||||
<div id="header">
|
||||
<div id="headerButtons">
|
||||
<div id="header">  
|
||||
<a href="#"><span id="hdrbutton" class="glyphicon glyphicon-menu-up pull-right"></span></a>
|
||||
<div id="flipMontageHeader">
|
||||
<div id="headerButtons">
|
||||
<?php
|
||||
if ( $showControl ) {
|
||||
?>
|
||||
|
@ -188,8 +190,9 @@ if ( $showZones ) {
|
|||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<div id="content">
|
||||
<div id="monitors">
|
||||
</div>
|
||||
<div id="content">
|
||||
<div id="monitors">
|
||||
<?php
|
||||
foreach ( $monitors as $monitor ) {
|
||||
$connkey = $monitor->connKey(); // Minor hack
|
||||
|
|
|
@ -225,7 +225,9 @@ xhtmlHeaders(__FILE__, translate('MontageReview') );
|
|||
<?php echo getNavBarHTML() ?>
|
||||
<form id="montagereview_form" action="<?php echo $_SERVER['PHP_SELF'] ?>" method="get">
|
||||
<input type="hidden" name="view" value="montagereview"/>
|
||||
<div id="header">
|
||||
<div id="header">  
|
||||
<a href="#"><span id="hdrbutton" class="glyphicon glyphicon-menu-up pull-right"></span></a>
|
||||
<div id="flipMontageHeader">
|
||||
<?php echo $filter_bar ?>
|
||||
<div id="DateTimeDiv">
|
||||
<input type="text" name="minTime" id="minTime" value="<?php echo preg_replace('/T/', ' ', $minTime ) ?>"/> to
|
||||
|
@ -269,6 +271,7 @@ if ( (!$liveMode) and (count($displayMonitors) != 0) ) {
|
|||
</div>
|
||||
<input type="hidden" name="fit" value="<?php echo $fitMode ?>"/>
|
||||
<input type="hidden" name="live" value="<?php echo $liveMode ?>"/>
|
||||
</div>
|
||||
</form>
|
||||
<div id="monitors">
|
||||
<?php
|
||||
|
|
|
@ -18,13 +18,13 @@
|
|||
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
//
|
||||
|
||||
if ( !canEdit( 'System' ) ) {
|
||||
if ( !canEdit('System') ) {
|
||||
$view = 'error';
|
||||
return;
|
||||
}
|
||||
|
||||
if ( $_REQUEST['id'] ) {
|
||||
if ( !($newServer = dbFetchOne( 'SELECT * FROM Servers WHERE Id = ?', NULL, ARRAY($_REQUEST['id'])) ) ) {
|
||||
if ( !($newServer = dbFetchOne('SELECT * FROM Servers WHERE Id = ?', NULL, ARRAY($_REQUEST['id'])) ) ) {
|
||||
$view = 'error';
|
||||
return;
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ if ( $_REQUEST['id'] ) {
|
|||
|
||||
$focusWindow = true;
|
||||
|
||||
xhtmlHeaders(__FILE__, translate('Server').' - '.$newServer['Name'] );
|
||||
xhtmlHeaders(__FILE__, translate('Server').' - '.$newServer['Name']);
|
||||
?>
|
||||
<body>
|
||||
<div id="page">
|
||||
|
@ -47,7 +47,7 @@ xhtmlHeaders(__FILE__, translate('Server').' - '.$newServer['Name'] );
|
|||
<h2><?php echo translate('Server').' - '.$newServer['Name'] ?></h2>
|
||||
</div>
|
||||
<div id="content">
|
||||
<form name="contentForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>" onsubmit="return validateForm( this, <?php echo empty($newServer['Name'])?'true':'false' ?> )">
|
||||
<form name="contentForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>" onsubmit="return validateForm(this, <?php echo empty($newServer['Name'])?'true':'false' ?>)">
|
||||
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
||||
<input type="hidden" name="object" value="server"/>
|
||||
<input type="hidden" name="id" value="<?php echo validHtmlStr($_REQUEST['id']) ?>"/>
|
||||
|
|
Loading…
Reference in New Issue